/* California Target Book About page — scoped page styles */
body.landing-body {
  background: #f6f7f9;
  color: #46505d;
}

.navbar-ctb {
  background: #101c33;
  box-shadow: 0 3px 16px rgba(16, 28, 51, .14);
}

.section-about-page {
  padding: 132px 0 88px;
  background: linear-gradient(180deg, #f7f8fa 0%, #ffffff 28%, #f7f8fa 100%);
}

.about-hero {
  max-width: 920px;
  margin: 0 auto 58px;
  text-align: center;
}

.about-eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: #c52026;
  font: 700 12px/1 'Inter', sans-serif;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.about-title {
  margin: 0 0 24px;
  color: #101c33;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(44px, 5.5vw, 68px);
  font-weight: 700;
  line-height: 1.02;
  letter-spacing: -.025em;
}

.about-intro-text {
  max-width: 860px;
  margin: 0 auto;
  color: #566170;
  font: 400 17px/1.8 'Inter', sans-serif;
}

.about-intro-text p + p {
  margin-top: 18px;
}

.section-divider-container {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0 0 30px;
}

.staff-section-title {
  flex: 0 0 auto;
  color: #101c33;
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(28px, 3.3vw, 40px);
  font-weight: 700;
  line-height: 1.15;
}

.divider-line {
  height: 1px;
  flex: 1;
  background: #d9dee6;
}

/* Approved desktop layout: two staff cards per row. */
.staff-long-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.staff-long-card {
  height: 100%;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e3e7ed;
  border-radius: 14px;
  box-shadow: 0 8px 28px rgba(20, 31, 52, .07);
}

.staff-long-card.featured-publisher {
  grid-column: 1 / -1;
  border-top: 4px solid #c52026;
}

.card-header-row {
  display: grid;
  grid-template-columns: 142px minmax(0, 1fr);
  min-height: 142px;
  background: #f8f9fb;
  border-bottom: 1px solid #e8ebef;
}

.staff-long-photo {
  width: 142px;
  height: 142px;
  overflow: hidden;
  background: #e8ebef;
}

.staff-long-photo img {
  display: block;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
}

.staff-header-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 24px 26px;
}

.staff-name {
  margin: 0 0 12px;
  color: #101c33;
  font-family: 'Fraunces', Georgia, serif;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.12;
}

.badge-container {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.badge-role {
  display: inline-flex;
  align-items: center;
  min-height: 27px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #eef1f6;
  color: #34445d;
  font: 700 11px/1.2 'Inter', sans-serif;
  letter-spacing: .055em;
  text-transform: uppercase;
}

.featured-publisher .badge-role {
  background: #fbeaec;
  color: #a91b21;
}

.staff-long-info {
  padding: 25px 28px 30px;
  color: #596473;
  font: 400 15px/1.72 'Inter', sans-serif;
}

.staff-long-info p {
  margin: 0;
}

.staff-long-info p + p {
  margin-top: 15px;
}

.featured-publisher .card-header-row {
  grid-template-columns: 180px minmax(0, 1fr);
  min-height: 180px;
}

.featured-publisher .staff-long-photo {
  width: 180px;
  height: 180px;
}

.featured-publisher .staff-name {
  font-size: 34px;
}

.section-newsletter {
  background: #fff;
}

@media (max-width: 900px) {
  .staff-long-list {
    grid-template-columns: 1fr;
  }

  .staff-long-card.featured-publisher {
    grid-column: auto;
  }

  .featured-publisher .card-header-row {
    grid-template-columns: 142px minmax(0, 1fr);
    min-height: 142px;
  }

  .featured-publisher .staff-long-photo {
    width: 142px;
    height: 142px;
  }

  .featured-publisher .staff-name {
    font-size: 27px;
  }
}

@media (max-width: 600px) {
  .section-about-page {
    padding: 108px 0 58px;
  }

  .about-hero {
    margin-bottom: 42px;
    text-align: left;
  }

  .about-title {
    font-size: 43px;
  }

  .about-intro-text {
    font-size: 15.5px;
    line-height: 1.72;
  }

  .section-divider-container {
    display: block;
    margin-bottom: 22px;
  }

  .divider-line {
    margin-top: 14px;
  }

  .card-header-row,
  .featured-publisher .card-header-row {
    grid-template-columns: 104px minmax(0, 1fr);
    min-height: 104px;
  }

  .staff-long-photo,
  .featured-publisher .staff-long-photo {
    width: 104px;
    height: 104px;
  }

  .staff-header-info {
    padding: 16px 18px;
  }

  .staff-name,
  .featured-publisher .staff-name {
    margin-bottom: 8px;
    font-size: 22px;
  }

  .staff-long-info {
    padding: 20px 20px 24px;
    font-size: 14.5px;
  }
}
