body {
  background: #f8f7f5;
  color: #232323;
}

.page-hero {
  min-height: 320px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.14), rgba(0, 0, 0, 0.58)), url('Kirsten4.jpg') center/cover no-repeat;
  display: flex;
  align-items: center;
  padding: 48px 20px;
}

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

.hero-tag {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
}

.page-hero h1 {
  color: #fff;
  font-size: 42px;
  line-height: 1.05;
  margin: 0 0 18px;
}

.page-hero p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  max-width: 700px;
}

.container {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.story-overview {
  padding: 60px 20px;
}

.story-overview h2 {
  font-size: 32px;
  margin-bottom: 18px;
}

.story-overview p {
  font-size: 16px;
  line-height: 1.85;
  color: #4b4b4b;
  margin-bottom: 18px;
  max-width: 800px;
}

.story-cards {
  padding: 40px 20px 80px;
}

.story-cards h2 {
  font-size: 32px;
  margin-bottom: 24px;
}

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

.story-card {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid #e5e0db;
  box-shadow: 0 18px 40px rgba(49, 38, 34, 0.08);
}

.story-card h3 {
  font-size: 20px;
  margin: 18px 0 12px;
}

.story-card p {
  color: #5c5c5c;
  line-height: 1.8;
}

.story-card .status {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 8px 12px;
  border-radius: 999px;
}

.story-card.success .status {
  background: #e8f7ed;
  color: #1f7a44;
}

.story-card.progress .status {
  background: #fff4e6;
  color: #b56408;
}

@media (max-width: 880px) {
  .card-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .page-hero {
    padding: 32px 18px;
  }

  .page-hero h1 {
    font-size: 32px;
  }
}
