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

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

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

.subscriber-hero {
  max-width: 820px;
  margin: 0 auto 46px;
  text-align: center;
}

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

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

.subscriber-subtitle {
  max-width: 720px;
  margin: 0 auto;
  color: #5b6674;
  font: 400 17px/1.75 'Inter', sans-serif;
}

.subscriber-card {
  overflow: hidden;
  background: #ffffff;
  border: 1px solid #e1e6ec;
  border-radius: 16px;
  box-shadow: 0 10px 32px rgba(20, 31, 52, .08);
}

.subscriber-card::before {
  content: '';
  display: block;
  height: 4px;
  background: #c52026;
}

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

.subscriber-item {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 52px;
  padding: 12px 16px 12px 26px;
  border-bottom: 1px solid #edf0f3;
  color: #2f3b4b;
  font: 500 14px/1.45 'Inter', sans-serif;
  transition: background .18s ease, color .18s ease;
}

.subscriber-item::before {
  content: '';
  position: absolute;
  left: 8px;
  top: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #c52026;
  transform: translateY(-50%);
  opacity: .8;
}

.subscriber-item:hover {
  background: #fafbfc;
  color: #101c33;
}

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

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

  .subscriber-hero {
    margin-bottom: 32px;
    text-align: left;
  }

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

  .subscriber-subtitle {
    font-size: 15.5px;
  }

  .subscriber-grid {
    grid-template-columns: 1fr;
    padding: 12px 18px 20px;
  }

  .subscriber-item {
    min-height: 48px;
    padding: 11px 10px 11px 24px;
    font-size: 13.5px;
  }
}
