/* ── Bible College page (scoped additions; uses site design tokens) ── */
.college-intro {
  padding: clamp(3.5rem, 7vw, 6rem) 0 clamp(2rem, 4vw, 3rem);
}
.college-intro .eyebrow { margin-bottom: 1.1rem; }
.college-intro h1 {
  margin: 0 0 1.5rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  line-height: 1.0;
  font-size: clamp(2.8rem, 6vw, 4.6rem);
  letter-spacing: -0.01em;
  max-width: 20ch;
}
.college-intro .lead {
  max-width: 62ch;
  margin: 0 0 1.1rem;
  font-size: clamp(1.1rem, 1.7vw, 1.35rem);
  line-height: 1.7;
  color: var(--muted);
}
.college-intro p {
  max-width: 62ch;
  margin: 0 0 1.1rem;
  line-height: 1.75;
  color: var(--muted);
}

/* Golden verse band */
.college-verse {
  margin: clamp(1rem, 3vw, 2rem) 0 clamp(3rem, 6vw, 5rem);
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #fff;
}
.college-verse .container {
  padding: clamp(3rem, 6vw, 5rem) 0;
  text-align: center;
}
.college-verse blockquote {
  margin: 0 auto;
  max-width: 30ch;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(1.9rem, 4.5vw, 3.2rem);
  line-height: 1.1;
}
.college-verse cite {
  display: block;
  margin-top: 1.25rem;
  font-style: normal;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

/* Photo mosaic: repeating 4-column collage with feature tiles */
.college-gallery { padding: 0 0 clamp(4rem, 8vw, 7rem); }
.college-gallery .section-head { margin-bottom: clamp(2rem, 4vw, 3rem); }
.college-gallery .section-head h2 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1;
}
.mosaic {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 190px;
  gap: 1.25rem;
}
.mosaic figure {
  margin: 0;
  position: relative;
  border-radius: 1.25rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.mosaic img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}
.mosaic figure:hover img { transform: scale(1.04); }
.mosaic figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 1.4rem 1rem 0.8rem;
  background: linear-gradient(transparent, rgba(43, 39, 36, 0.72));
  color: #fff;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.mosaic .tall { grid-row: span 2; }
.mosaic .wide { grid-column: span 2; }

@media (max-width: 900px) {
  .mosaic { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 170px; }
}
@media (max-width: 560px) {
  .mosaic { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .mosaic .tall, .mosaic .wide { grid-row: auto; grid-column: auto; }
}
