/* ============================================
   Young Adults — GateWay Bible Church
   ============================================ */

/* (Hero uses shared page-hero--photo component from components.css) */


/* --- Intro (centered, editorial) --- */

.ya-intro {
  max-width: 700px;
  text-align: center;
  margin: 0 auto;
}

.ya-intro-text {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-book);
  color: var(--white-70);
  line-height: 1.8;
  margin-top: var(--space-5);
}


/* --- Tan label variant --- */

.section-label--tan {
  color: var(--tan);
}


/* --- What to Expect Layout --- */

.ya-expect-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-16);
  align-items: start;
}

.ya-expect-text {
  font-size: var(--text-base);
  font-weight: var(--font-weight-light);
  color: var(--dark-blue-70);
  line-height: 1.7;
  margin-top: var(--space-4);
}


/* --- Info Card --- */

.ya-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-md);
  border-top: 3px solid var(--tan);
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}

.ya-info-row {
  display: flex;
  align-items: flex-start;
  gap: var(--space-4);
}

.ya-info-row svg {
  color: var(--gray-blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.ya-info-label {
  display: block;
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  color: var(--gray-blue);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2px;
}

.ya-info-value {
  display: block;
  font-size: var(--text-sm);
  font-weight: var(--font-weight-book);
  color: var(--dark-blue);
  line-height: 1.5;
}

.ya-info-value a {
  color: var(--bright-blue);
  text-decoration: none;
  font-weight: var(--font-weight-medium);
}

.ya-info-value a:hover {
  text-decoration: underline;
}


/* --- Full-width Photo Break --- */

.ya-photo-break {
  width: 100%;
  overflow: hidden;
  padding: var(--space-10) 0;
}

.ya-photo-break-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
}

.ya-photo-break-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 21 / 9;
}

.ya-photo-break-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}


/* --- Why It Matters --- */

.ya-why-layout {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: var(--space-16);
  align-items: center;
}

.ya-why-text {
  font-size: var(--text-base);
  font-weight: var(--font-weight-book);
  color: var(--white-70);
  line-height: 1.7;
  margin-top: var(--space-4);
}

.ya-quote {
  background: var(--white-10);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  border-left: 3px solid var(--tan);
}

.ya-quote p {
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-light);
  font-style: italic;
  color: var(--white-90);
  line-height: 1.6;
  margin-bottom: var(--space-4);
}

.ya-quote cite {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--tan);
  font-style: normal;
  letter-spacing: 0.03em;
}


/* --- Leader Section --- */

.ya-leader-layout {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-10);
  align-items: center;
  max-width: 700px;
  margin: 0 auto;
}

.ya-leader-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--tan);
  flex-shrink: 0;
}

.ya-leader-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ya-leader-role {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  color: var(--gray-blue);
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: var(--space-3);
}

.ya-leader-text {
  font-size: var(--text-base);
  font-weight: var(--font-weight-light);
  color: var(--dark-blue-70);
  line-height: 1.7;
  margin-bottom: var(--space-5);
}

.ya-leader-email {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--bright-blue);
  text-decoration: none;
  padding: var(--space-2) var(--space-4);
  border-radius: var(--radius-md);
  background: var(--bright-blue-10);
  transition: background var(--duration-fast) var(--ease-out);
}

.ya-leader-email:hover {
  background: var(--bright-blue-20);
}


/* --- Also Worth Exploring --- */

.ya-also {
  max-width: 600px;
  margin-bottom: var(--space-10);
}

.ya-also-text {
  font-size: var(--text-base);
  font-weight: var(--font-weight-light);
  color: var(--dark-blue-70);
  line-height: 1.7;
  margin-top: var(--space-3);
}

.ya-also-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
}

.ya-also-card {
  display: block;
  text-decoration: none;
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border-top: 3px solid var(--bright-blue);
  box-shadow: var(--shadow-sm);
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

.ya-also-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.ya-also-card h3 {
  font-family: var(--font-primary);
  font-size: var(--text-base);
  font-weight: var(--font-weight-bold);
  color: var(--dark-blue);
  margin-bottom: var(--space-2);
}

.ya-also-card p {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-light);
  color: var(--gray-blue);
  line-height: 1.6;
}


/* --- Closing CTA --- */

.ya-closing {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.ya-closing-headline {
  font-size: clamp(2.5rem, 7vw, var(--text-5xl));
  font-weight: var(--font-weight-black);
  color: var(--white);
  letter-spacing: -0.03em;
  line-height: 1.05;
  margin-bottom: var(--space-4);
}

.ya-closing-sub {
  font-size: var(--text-lg);
  font-weight: var(--font-weight-book);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  max-width: 540px;
  margin: 0 auto var(--space-8);
}

.ya-closing-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--space-3);
}


/* ============================================
   Responsive
   ============================================ */

@media (max-width: 900px) {
  .ya-expect-layout,
  .ya-why-layout {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .ya-leader-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ya-leader-photo {
    margin: 0 auto;
  }

  .ya-also-grid {
    grid-template-columns: 1fr;
  }

  .ya-photo-break-img {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 600px) {
  .ya-intro-text {
    font-size: var(--text-base);
  }
}
