.articles-page .story-shell {
  padding: 26px 24px 56px;
  background: #f4f5f7;
  min-height: 100vh;
}

.story-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 20px;
}

.story-hero__inner {
  width: min(100%, var(--content-container));
  margin: 0 auto;
  padding: 24px 26px;
  border: 1px solid #e1e4e8;
  border-radius: 6px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(44, 52, 60, 0.05);
  display: grid;
  justify-items: start;
  text-align: left;
  gap: 8px;
}

.story-hero .hero__eyebrow {
  margin-top: 6px;
}

.story-hero .hero__title {
  margin: 0;
  color: #2f343a;
  background: none;
  font-size: 28px;
  font-weight: 800;
  line-height: 1.32;
  letter-spacing: 0;
  padding-top: 0.08em;
}

.story-section__eyebrow {
  margin: 0;
  color: var(--muted);
}

.story-hero__description {
  margin: 0;
  max-width: 720px;
  color: #68717a;
  font-size: 13px;
  line-height: 1.7;
}

.story-section {
  max-width: var(--content-container);
  margin: 0 auto;
}

.story-section__title,
.story-card__title {
  margin: 0;
  font-weight: 500;
  letter-spacing: -0.05em;
}

.story-section__heading {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
  justify-items: center;
  text-align: center;
}

.story-section__title {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.94;
}

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

.articles-page:not(.tools-page) .story-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.story-card {
  border: 1px solid #e1e4e8;
  border-radius: 6px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(44, 52, 60, 0.05);
}

.story-card__link {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.story-card__media {
  aspect-ratio: 16 / 9;
  background: #f7f8fa;
  display: grid;
  place-items: center;
}

.story-card__image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #fff;
  border-radius: 0;
}

.story-card__body {
  padding: 14px 16px 16px;
}

.story-card__title {
  font-size: 17px;
  line-height: 1.45;
  letter-spacing: 0;
  color: #2f343a;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.story-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 28px;
  border: 1px dashed rgba(17, 17, 17, 0.24);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--muted);
}

@media (max-width: 980px) {
  .story-grid,
  .articles-page:not(.tools-page) .story-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .story-shell {
    padding-inline: 18px;
    padding-top: 18px;
  }

  .story-hero {
    padding-bottom: 14px;
  }

  .story-hero__inner {
    padding-top: 10px;
  }

  .story-grid,
  .articles-page:not(.tools-page) .story-grid {
    grid-template-columns: 1fr;
  }

  .story-card__title {
    font-size: 16px;
  }
}
