/* ============================================
   Women's Ministry — GateWay Bible Church
   ============================================ */

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


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

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

.wm-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);
}


/* --- Cream label variant --- */

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


/* --- Bible Study Cards (2-col) --- */

.wm-studies {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-8);
  margin-top: var(--space-10);
}

.wm-study-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-8);
  box-shadow: var(--shadow-md);
  border-top: 3px solid var(--bright-blue);
  transition: transform var(--duration-normal) var(--ease-out),
              box-shadow var(--duration-normal) var(--ease-out);
}

.wm-study-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.wm-study-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--bright-blue-10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-5);
}

.wm-study-icon svg {
  color: var(--bright-blue);
}

.wm-study-title {
  font-family: var(--font-primary);
  font-size: var(--text-xl);
  font-weight: var(--font-weight-bold);
  color: var(--dark-blue);
  margin-bottom: var(--space-4);
}

.wm-study-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-4);
}

.wm-study-detail {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-medium);
  color: var(--gray-blue);
}

.wm-study-detail svg {
  color: var(--bright-blue);
  flex-shrink: 0;
}

.wm-study-desc {
  font-size: var(--text-base);
  font-weight: var(--font-weight-light);
  color: var(--dark-blue-70);
  line-height: 1.7;
}

.wm-study-link {
  display: inline-block;
  margin-top: var(--space-4);
  font-size: var(--text-sm);
  font-weight: var(--font-weight-semibold);
  color: var(--bright-blue);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.wm-study-link:hover {
  color: var(--dark-blue);
  text-decoration: underline;
}


/* --- Photo Break --- */

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

.wm-photo-break-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-6);
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-4);
}

@media (min-width: 768px) {
  .wm-photo-break-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.wm-photo-break-img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

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


/* --- Beyond Bible Study (split: text + cards) --- */

.wm-beyond-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: start;
}

.wm-beyond-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);
}

.wm-beyond-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}

.wm-event-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border-top: 2px solid var(--bright-blue);
  transition: transform var(--duration-normal) var(--ease-out);
}

.wm-event-card:hover {
  transform: translateY(-3px);
}

.wm-event-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bright-blue-10);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--space-3);
}

.wm-event-icon svg {
  color: var(--bright-blue);
}

.wm-event-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);
}

.wm-event-card p {
  font-size: var(--text-sm);
  font-weight: var(--font-weight-light);
  color: var(--dark-blue-70);
  line-height: 1.6;
}

.wm-event-link {
  display: inline-block;
  margin-top: var(--space-3);
  font-size: var(--text-xs);
  font-weight: var(--font-weight-semibold);
  color: var(--bright-blue);
  text-decoration: none;
  transition: color var(--duration-fast) var(--ease-out);
}

.wm-event-link:hover {
  color: var(--dark-blue);
  text-decoration: underline;
}


/* --- Scripture Quote Block --- */

.wm-quote-block {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.wm-quote {
  position: relative;
  padding: var(--space-10) 0;
}

.wm-quote::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-primary);
  font-size: 8rem;
  font-weight: var(--font-weight-black);
  color: var(--bright-blue);
  opacity: 0.08;
  line-height: 1;
  pointer-events: none;
}

.wm-quote p {
  font-family: var(--font-primary);
  font-size: clamp(var(--text-xl), 3vw, var(--text-2xl));
  font-weight: var(--font-weight-light);
  font-style: italic;
  color: var(--dark-blue);
  line-height: 1.6;
  margin-bottom: var(--space-5);
}

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


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

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

.wm-leader-photo {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--bright-blue-20);
  flex-shrink: 0;
  transition: border-color var(--duration-normal) var(--ease-out);
}

.wm-leader-photo:hover {
  border-color: var(--bright-blue);
}

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

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

.wm-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);
}

.wm-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);
}

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


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

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

.wm-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);
}

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

.wm-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);
}

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

.wm-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);
}

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


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

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

.wm-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);
}

.wm-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);
}

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


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

@media (max-width: 900px) {
  .wm-studies {
    grid-template-columns: 1fr;
  }

  .wm-beyond-layout {
    grid-template-columns: 1fr;
    gap: var(--space-8);
  }

  .wm-beyond-cards {
    grid-template-columns: 1fr 1fr;
  }

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

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

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

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

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

  .wm-beyond-cards {
    grid-template-columns: 1fr;
  }
}
