/* =========================================================
   Sunday Chronicle — About Page
   Styles ONLY for about.html. Reuses design tokens from
   variables.css and shared components (.btn, .newsletter,
   .eyebrow, .rule-double, .section-title, .cat-tag) already
   defined elsewhere — this file adds only what's genuinely
   new: the hero banner, info panels, values grid, coverage
   tiles, commitment checklist, trust grid, and team cards.
   ========================================================= */

/* ===== Hero banner ===== */
.about-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
  color: var(--white);
  padding: 64px 0 56px;
  text-align: center;
}

.about-hero .eyebrow {
  color: #ff8a80;
}

.about-hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 5vw, 3.1rem);
  margin: 12px auto 16px;
  max-width: 20ch;
}

.about-hero p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.6;
  max-width: 62ch;
  margin: 0 auto 28px;
}

.about-hero .rule-double {
  margin: 10px auto 24px;
}

.about-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.5);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 12px 22px;
  border-radius: 8px;
  transition: background .18s ease, border-color .18s ease;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.8);
}

/* ===== Generic content panel (Who We Are, Editorial Commitment) ===== */
.info-panel {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 32px;
}

.info-panel p {
  color: var(--ink-soft);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 78ch;
}

.info-panel p + p {
  margin-top: 14px;
}

/* ===== Mission / Vision ===== */
.mv-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.mv-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 28px;
  border-top: 3px solid var(--red);
}

.mv-card:nth-child(2) {
  border-top-color: var(--navy);
}

.mv-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.mv-card p {
  color: var(--ink-soft);
  line-height: 1.65;
}

/* ===== Values grid ===== */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 20px;
}

.value-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 24px 22px;
}

.value-icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(11, 58, 110, 0.08);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}

.value-icon svg {
  width: 22px;
  height: 22px;
}

.value-card h3 {
  font-size: 1.02rem;
  margin-bottom: 6px;
}

.value-card p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ===== What We Cover ===== */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 16px;
}

.coverage-tile {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 18px 20px;
  transition: transform .18s ease, box-shadow .18s ease;
}

a.coverage-tile:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.coverage-tile .cat-tag {
  margin-bottom: 8px;
}

.coverage-tile p {
  color: var(--ink-soft);
  font-size: 0.86rem;
  line-height: 1.5;
}

.coverage-tile.coverage-soon {
  opacity: 0.7;
}

.coverage-soon-label {
  font-family: var(--font-mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: block;
  margin-top: 8px;
}

/* ===== Editorial Commitment checklist ===== */
.commitment-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.commitment-list li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.commitment-check {
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(28, 122, 52, 0.12);
  color: #1c7a34;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 2px;
}

.commitment-check svg {
  width: 15px;
  height: 15px;
}

.commitment-list strong {
  display: block;
  font-size: 0.98rem;
  margin-bottom: 2px;
}

.commitment-list span {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ===== Why Readers Trust Us ===== */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

.trust-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 26px;
  text-align: center;
}

.trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(211, 47, 47, 0.1);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.trust-icon svg {
  width: 22px;
  height: 22px;
}

.trust-card h3 {
  font-size: 1rem;
  margin-bottom: 8px;
}

.trust-card p {
  color: var(--ink-soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

/* ===== Meet the Team ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  padding: 24px 20px;
  text-align: center;
}

.team-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}

.team-avatar svg {
  width: 28px;
  height: 28px;
}

.team-card h3 {
  font-size: 0.98rem;
  margin-bottom: 4px;
}

.team-role {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.team-card p {
  color: var(--ink-soft);
  font-size: 0.85rem;
  line-height: 1.5;
}

.team-note {
  text-align: center;
  color: var(--ink-soft);
  font-size: 0.9rem;
  font-style: italic;
  margin-top: 24px;
}

/* ===== Responsive ===== */
@media (min-width: 700px) {
  .mv-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .commitment-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
