/* /subsite/about.css */

/* Active nav link */
.nav a.is-active {
  opacity: 1;
  position: relative;
}

.nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -10px;
  height: 2px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.22);
}

/* ABOUT HERO */
.about-hero {
  padding-top: 110px; /* helps spacing under fixed header */
}

.about-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: start;
}

.about-hero-copy .lead {
  max-width: 62ch;
}

/* Meta blocks (email, response time, location) */
.about-meta {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr)); /* critical: allow items to shrink */
  gap: 14px;
}

.about-meta-item {
  min-width: 0; /* critical: allow text to wrap instead of spilling */
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  padding: 14px 14px;
  background: rgba(255, 255, 255, 0.03);
}

.about-meta-label {
  font-size: 12px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  opacity: 0.7;
}

.about-meta-value {
  display: inline-block;
  margin-top: 6px;
  font-weight: 700;
  font-size: 14px;           /* slightly smaller so the email fits nicer */
  line-height: 1.25;
  color: inherit;
  text-decoration: none;

  max-width: 100%;
  overflow-wrap: anywhere;   /* critical: breaks long emails cleanly */
  word-break: break-word;    /* fallback */
}

.about-meta-value:hover {
  text-decoration: underline;
}

/* Hero card */
.about-hero-card {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.about-card-top {
  padding: 18px 18px 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.about-card-title {
  font-weight: 800;
  font-size: 16px;
  letter-spacing: -0.02em;
}

.about-card-sub {
  margin-top: 6px;
  opacity: 0.8;
  font-size: 13px;
}

.about-card-grid {
  padding: 16px 18px 6px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.about-card-item {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
  padding: 12px 12px;
  background: rgba(0, 0, 0, 0.12);
}

.about-card-k {
  font-weight: 800;
  font-size: 13px;
  opacity: 0.95;
}

.about-card-v {
  margin-top: 6px;
  font-size: 13px;
  opacity: 0.85;
}

.about-card-cta {
  padding: 14px 18px 18px;
}

/* ABOUT GRID (story + how it works) */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.about-panel {
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 24px;
  padding: 18px 18px;
  background: rgba(255, 255, 255, 0.03);
}

.about-panel-soft {
  background: rgba(255, 255, 255, 0.02);
}

.about-bullets {
  margin-top: 14px;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.about-bullets li {
  opacity: 0.92;
  line-height: 1.6;
}

.about-steps {
  margin-top: 12px;
  padding-left: 18px;
  display: grid;
  gap: 10px;
}

.about-steps li {
  opacity: 0.92;
  line-height: 1.6;
}

/* FAQ */
.about-faq {
  display: grid;
  gap: 12px;
}

.about-faq-item {
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 18px;
  padding: 14px 14px;
  background: rgba(255, 255, 255, 0.03);
}

.about-faq-item summary {
  cursor: pointer;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.about-faq-item p {
  margin-top: 10px;
  opacity: 0.9;
  line-height: 1.7;
}

/* CTA */
.about-cta-inner {
  border: 1px solid rgba(255, 255, 255, 0.10);
  border-radius: 26px;
  padding: 18px 18px;
  background: rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.about-cta-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 980px) {
  .about-hero-inner {
    grid-template-columns: 1fr;
  }

  .about-meta {
    grid-template-columns: 1fr; /* stack meta on smaller screens */
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 520px) {
  .about-hero {
    padding-top: 96px;
  }

  .about-panel,
  .about-meta-item,
  .about-faq-item {
    border-radius: 18px;
  }
}
