.stories {
  background: #fff;
}

.stories__heading {
  font-size: clamp(1.7rem, 2.7vw, 2.4rem);
  font-weight: 300;
  margin: 0 0 1.5rem;
}

.stories__layout {
  display: grid;
  grid-template-columns: minmax(0, 2.1fr) minmax(16rem, 0.9fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.stories__main {
  border-right: 1px solid var(--line);
  min-width: 0;
}

.stories__aside {
  min-width: 0;
}

/* Topics */
.topics {
  padding: 1.5rem 1.5rem 1.75rem 0;
  border-bottom: 1px solid var(--line);
}

.topics__title {
  font-size: 1.15rem;
  font-weight: 400;
  margin: 0 0 1rem;
}

.topics__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.topic-tag {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.75rem;
  border: 1px solid #000;
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.2;
  white-space: nowrap;
  background: #fff;
  color: #000;
}

.topic-tag:hover {
  background: #000;
  color: #fff;
}

/* Story cards — text left, image right */
.story-card {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(10rem, 0.75fr);
  gap: 1.25rem;
  padding: 1.5rem 1.25rem 1.5rem 0;
  border-bottom: 1px solid var(--line);
  color: inherit;
}

.story-card__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  margin-bottom: 0.85rem;
}

.story-card__tracks {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
}

.story-card__date {
  font-size: 0.75rem;
  color: var(--muted);
  white-space: nowrap;
  font-weight: 300;
}

.story-card__title {
  font-size: clamp(1.15rem, 1.6vw, 1.45rem);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin: 0 0 0.75rem;
}

.story-card__excerpt {
  font-size: 0.95rem;
  line-height: 1.4;
  color: #333;
  font-weight: 300;
  margin: 0 0 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.story-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.story-card__media {
  position: relative;
  align-self: stretch;
  min-height: 11rem;
  background: var(--mist);
}

.story-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.story-card__go {
  position: absolute;
  right: 0.65rem;
  bottom: 0.65rem;
  width: 1.85rem;
  height: 1.85rem;
  border-radius: 50%;
  background: #fff;
  color: #000;
  display: grid;
  place-items: center;
  font-size: 0.95rem;
  line-height: 1;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.15);
}

.story-card:hover .story-card__title {
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* Sidebar */
.stories__aside-inner {
  padding: 1.5rem 0 1.5rem 1.5rem;
  display: grid;
  gap: 1.5rem;
  height: 100%;
}

.ticket-promo {
  display: grid;
  gap: 0.75rem;
}

.ticket-promo__img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: #0000ff;
}

.ticket-promo__link {
  font-size: 0.95rem;
  font-weight: 400;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.ticket-promo__link:hover {
  text-decoration: underline;
}

.podcasts {
  background: #f2f2f2;
  border-radius: 4px;
  padding: 1.35rem 1.1rem 1.25rem;
  display: grid;
  gap: 1rem;
  align-content: start;
}

.podcasts__title {
  font-size: 1.15rem;
  font-weight: 400;
  margin: 0;
}

.podcasts__cover {
  width: 100%;
  height: clamp(9rem, 17vw, 12.5rem);
  object-fit: cover;
  object-position: center 42%;
  display: block;
}

.podcasts__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.podcasts__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
  align-items: start;
  font-size: 0.9rem;
  line-height: 1.3;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.75rem;
}

.podcasts__item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.podcasts__item svg {
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.podcasts__item:hover {
  transform: translateX(3px);
  transition: transform 0.2s ease;
}

.podcasts__date {
  display: block;
  margin-top: 0.15rem;
  color: var(--muted);
  font-size: 0.85rem;
}

.podcasts__all {
  margin-top: 0.25rem;
  font-size: 0.9rem;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.25rem;
  justify-self: start;
}

.podcasts__all:hover {
  border-bottom-color: transparent;
}

@media (max-width: 980px) {
  .stories__layout {
    grid-template-columns: 1fr;
  }

  .stories__main {
    border-right: 0;
  }

  .stories__aside-inner {
    padding: 1.5rem 0;
    border-top: 1px solid var(--line);
  }

  .topics {
    padding-right: 0;
  }
}

@media (max-width: 720px) {
  .story-card {
    grid-template-columns: 1fr;
    padding-right: 0;
  }

  .story-card__media {
    min-height: 14rem;
    order: -1;
  }

  .story-card__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }
}

.date-strip {
  border-top: 1px solid #000;
  border-bottom: 1px solid #000;
  padding: clamp(1.25rem, 2.5vw, 2rem) var(--pad-x);
  font-size: clamp(1.25rem, 2.2vw, 1.9rem);
  font-weight: 300;
  line-height: 1.25;
  background: #fff;
}
