/* ===========================
   Children's Sunday School & Kids' Quest (Mobile XL)
   =========================== */

.page-section {
  width: 100%;
  padding: 4rem 2.5rem;
  margin: 0 auto 4rem;
  box-sizing: border-box;
}

/* Sunday School Section */
.ss-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--primary-green);
  text-align: center;
  margin-bottom: 2rem;
}

.ss-verse {
  text-align: center;
  background: #f9fdf9;
  padding: 2.5rem;
  border-radius: 14px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.08);
  margin-bottom: 3rem;
}

.ss-verse .verse-text {
  font-size: 2.2rem;
  font-style: italic;
  color: #333;
  display: block;
  margin-bottom: 1rem;
}

.ss-verse .chapter-verse {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary-green);
}

.ss-verse .translation {
  font-size: 1.8rem;
  color: #666;
}

.ss-subtitle {
  font-size: 2.4rem;
  color: #444;
  text-align: center;
  margin-bottom: 3rem;
}

/* Gallery */
.ss-gallery {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.ss-gallery-item img {
  width: 100%;
  border-radius: 14px;
  box-shadow: 0 6px 14px rgba(0,0,0,0.12);
}

/* Classes */
.ss-classes {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.ss-class-card {
  background: #fff;
  border-radius: 14px;
  padding: 3rem;
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.ss-class-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.class-name {
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.class-ages {
  font-size: 2rem;
  font-weight: 600;
  color: #555;
  margin-bottom: 0.5rem;
}

.class-location {
  font-size: 1.8rem;
  color: #666;
}

/* Contact */
.ss-contact {
  text-align: center;
  font-size: 2rem;
  color: #333;
  margin-top: 2.5rem;
}

.ss-contact strong {
  display: block;
  margin-bottom: 1rem;
  font-weight: 700;
  color: var(--primary-green);
}
/* ===========================
   Sunday Night Kids' Quest (Mobile XL)
   =========================== */

.sunday-evenings {
  padding: 4rem 2.5rem;
  margin: 0 auto 4rem;
  box-sizing: border-box;
  text-align: center;
}

/* Titles */
.sunday-evenings .se-title {
  font-size: 3.2rem;
  font-weight: 800;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
}

.sunday-evenings .se-subtitle {
  font-size: 2.4rem;
  color: #444;
  margin-bottom: 2.5rem;
}

/* Meta info */
.sunday-evenings .se-meta {
  font-size: 2rem;
  line-height: 2.6;
  color: #333;
  margin-bottom: 3rem;
}

.sunday-evenings .se-meta strong {
  color: var(--primary-green);
  font-weight: 700;
}

/* Cards grid */
.se-cards {
  display: grid;
  grid-template-columns: 1fr;   /* single column on mobile */
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.se-card {
  background: #fff;
  border-radius: 14px;
  padding: 3rem;
  box-shadow: 0 6px 14px rgba(0,0,0,0.1);
  text-align: left;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.se-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.se-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.se-card-header {
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1rem;
}

.se-card-body {
  font-size: 2rem;
  line-height: 2.6;
  color: #444;
}

/* Footer */
.se-footer {
  text-align: center;
  font-size: 2rem;
  font-style: italic;
  color: #555;
  margin-bottom: 2.5rem;
  padding: 2rem;
  background: #f9f9f9;
  border-radius: 12px;
}

/* Contact */
.se-contact {
  text-align: center;
  font-size: 2rem;
  color: #333;
  margin-top: 2rem;
}

.se-contact strong {
  color: var(--primary-green);
  font-weight: 700;
  display: block;
  margin-bottom: 1rem;
}

.se-contact a {
  color: var(--primary-green);
  text-decoration: none;
  font-weight: 600;
}
