.stories-hero {
  padding: 70px 6vw 30px;
  background: #f3efe6;
}

.stories-hero-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.stories-eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.2px;
  color: rgba(0,0,0,0.58);
}

.stories-title {
  margin: 0 0 14px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1;
  font-weight: 950;
  color: rgba(0,0,0,0.9);
}

.stories-subtitle {
  margin: 0;
  max-width: 60ch;
  line-height: 1.65;
  font-size: 17px;
  color: rgba(0,0,0,0.68);
  font-weight: 600;
}

.stories-section {
  padding: 34px 6vw 70px;
  background: #f8f6f1;
}

.stories-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.story-card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.10);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.story-image {
  height: 260px;
  background: rgba(0,0,0,0.04);
}

.story-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.story-content {
  padding: 20px 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  flex-grow: 1;
}

.story-type {
  margin: 0;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1px;
  color: #d63a34;
}

.story-title {
  margin: 0;
  font-size: 26px;
  line-height: 1.15;
  font-weight: 900;
  color: rgba(0,0,0,0.9);
}

.story-description {
  margin: 0;
  line-height: 1.65;
  color: rgba(0,0,0,0.7);
  font-weight: 600;
}

.story-link {
  margin-top: auto;
  display: inline-flex;
  width: fit-content;
  text-decoration: none;
  font-weight: 900;
  color: rgba(0,0,0,0.86);
}

.story-link:hover {
  text-decoration: underline;
}