/* OG Saigon Stories */
.story-index-hero .lead,
.story-article-hero .lead {
  max-width: 820px;
}

.story-index-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.story-index-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--paper);
  box-shadow: 0 12px 36px rgba(24, 48, 42, 0.07);
}

.story-index-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.story-index-card-body {
  padding: 26px;
}

.story-index-card-body p {
  color: var(--muted);
}

.story-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 70px;
  align-items: start;
}

.story-article {
  max-width: 760px;
}

.story-article > p,
.story-article li {
  font-size: 1.04rem;
}

.story-article h2 {
  margin-top: 56px;
  font-size: clamp(1.8rem, 3vw, 2.65rem);
}

.story-article h3 {
  margin-top: 30px;
}

.story-article .article-summary {
  padding: 24px 26px;
  border-left: 4px solid var(--rust);
  border-radius: 0 16px 16px 0;
  background: #f6efe6;
}

.story-article .article-summary p {
  margin: 0;
  font-size: 1.05rem;
}

.story-article figure {
  margin: 42px 0;
}

.story-article figure img {
  width: 100%;
  max-height: 650px;
  object-fit: cover;
  border-radius: 22px;
}

.story-article figcaption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.86rem;
}

.story-table-wrap {
  overflow-x: auto;
  margin: 30px 0;
}

.story-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--paper);
}

.story-table th,
.story-table td {
  padding: 14px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.story-table th {
  background: #efe8dc;
}

.story-side-card {
  position: sticky;
  top: 100px;
}

.story-side-card .btn {
  width: 100%;
  margin-top: 10px;
}

.story-related {
  margin-top: 70px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.story-related-links {
  display: grid;
  gap: 12px;
}

@media (max-width: 920px) {
  .story-index-grid {
    grid-template-columns: 1fr 1fr;
  }

  .story-index-grid > :last-child {
    grid-column: 1 / -1;
  }

  .story-article-layout {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .story-side-card {
    position: static;
  }
}

@media (max-width: 650px) {
  .story-index-grid {
    grid-template-columns: 1fr;
  }

  .story-index-grid > :last-child {
    grid-column: auto;
  }

  .story-index-card img {
    height: 220px;
  }

  .story-article h2 {
    margin-top: 42px;
  }

  .story-article figure {
    margin: 32px 0;
  }
}
