/* =================== QuickChoice • about.css ===================
   Styles specific to about.html
   (This file is loaded *after* general.css)
*/

/* ===== Hero Section ===== */
.hero.hero--blue {
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 255, 255, 0.6), transparent 38%),
    radial-gradient(circle at 85% 12%, rgba(201, 223, 241, 0.65), transparent 32%),
    linear-gradient(180deg, #e7eff8, #dbe8f5);
}
.hero__title {
  margin: 0 0 8px;
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3.4vw, 3rem);
  letter-spacing: 0.02em;
  color: #12344e;
}
.hero__sub {
  max-width: 720px;
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ===== About Content ===== */
.about {
  padding-top: 22px;
}
.about__stack {
  display: grid;
  gap: 18px;
}
.about-card {
  padding: clamp(1.2rem, 2.5vw, 2rem);
  border-radius: 24px;
  border: 1px solid #c8d7e6;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(241, 247, 253, 0.9));
  box-shadow: 0 14px 30px rgba(18, 52, 78, 0.09);
  position: relative;
}
.about-card p {
  margin: 0 0 10px;
  color: #214359;
  line-height: 1.6;
  font-size: 1.02rem;
}
.about-card p:last-child {
  margin-bottom: 0;
}
.about-card--story {
  border-color: #b8cde1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.95), rgba(236, 245, 253, 0.92));
}
.about-card--story .section__title {
  margin-bottom: 12px;
}
.about-goals {
  margin: 4px 0 12px;
  padding-left: 0;
  list-style: none;
}
.about-goals li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 8px;
  color: #17364c;
  font-weight: 600;
}
.about-goals li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.5em;
  border-radius: 999px;
  background: #2f668c;
  flex: 0 0 8px;
}

/* ===== Section Layout ===== */
.section__title {
  text-align: left;
  font-size: clamp(1.75rem, 2.5vw, 2.2rem);
}

@media (max-width: 720px) {
  .hero__sub {
    font-size: 0.98rem;
  }
  .about-card p {
    font-size: 0.97rem;
  }
}

/* ===== Footer adjustments ===== */
.footer {
  margin-top: 40px;
}
