/* ===================================================================
   THE DREAM CENTER — /dream-center/
   Built on the tokens in style.css. The hero, two-column row
   (.about-pastor), the orientation banner (.loc-giving), the arrow
   link (.event-link), and the closing CTA (.giving-cta) all come
   from there.

   This file adds three things the system didn't have:
     1. a fragment stack, for the church's one-sentence-per-line
        voice, held to a 34rem measure so short lines read as
        intentional rather than as a ragged paragraph;
     2. a text-only card grid, because the programs section has no
        confirmed content yet and inventing photographs for it would
        have looked like inventing programs;
     3. a photography-forward story grid whose image wells are
        deliberately empty until real Dream Center portraits exist.

   Containers 10px, buttons inherit 6px.
   =================================================================== */

/* --- fragment stacks --------------------------------------------- */
/* "Bring what you have. / Your time. / Your skills." — the church
   writes in short stacked lines; a narrow measure keeps them from
   reflowing into something that reads like a broken paragraph. */
.dc-fragments {
  list-style: none; margin: 1.5rem 0 0; padding: 0;
  max-width: 34rem;
  font-size: clamp(1.02rem, 1.5vw, 1.22rem);
  line-height: 1.85; color: var(--navy);
}
.dc-fragments--center { margin-inline: auto; }
.dc-fragments + .btn { margin-top: 1.85rem; }

/* --- centered statement block ------------------------------------ */
/* Lighter than .head-block: no trailing margin, because these
   sections are a statement on their own with nothing under them. */
.dc-statement { text-align: center; max-width: 46rem; margin-inline: auto; }

/* --- text card grid (programs) ----------------------------------- */
/* Three across, not four. Help has six programs and Hope has three, so at
   four columns Help ran 4+2 and Hope filled only three of four — the two
   blocks were visibly different widths and neither row was even. At three,
   Help is a clean 3+3 and Hope is one full row, and both span the same
   width as the Purpose/Mission/Vision cards above. */
.dc-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}

.dc-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: clamp(1.35rem, 2.2vw, 1.9rem);
}

.dc-card-title {
  margin: 0;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem); font-weight: 800;
  line-height: 1.2; color: var(--navy);
}

.dc-card-copy {
  margin: 0.75rem 0 0;
  font-size: 0.95rem; line-height: 1.7; color: var(--slate);
}
.dc-card .event-link { margin-top: auto; padding-top: 1.1rem; }

@media (max-width: 62rem) { .dc-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 34rem) { .dc-grid { grid-template-columns: 1fr; } }

/* --- story grid --------------------------------------------------
   Sits on .section--navy so the portraits carry the section. Text is
   light here; nothing outside this grid needs the override. */



/* Visible request inside an empty image well, so a reviewer scrolling
   the page reads "photo owed" rather than "image is broken". */
.dc-ph-note {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  padding: 1rem; text-align: center;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(18, 18, 19, 0.5);
}




/* --- inline service time + address in the Sunday banner ----------- */
.dc-when {
  margin: 1rem 0 0;
  font-size: 0.88rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--navy);
}

/* --- purpose / mission / vision ------------------------------------ */
.dc-statements {
  list-style: none; margin: 0; padding: 0;
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
}
.dc-statement-card {
  background: #fff; border: 1px solid var(--line); border-radius: 10px;
  padding: clamp(1.5rem, 2.4vw, 2rem);
}
.dc-statement-label {
  margin: 0 0 0.9rem;
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--red);
}
.dc-statement-copy { margin: 0; font-size: 1rem; line-height: 1.75; color: var(--slate); }

/* --- programs ------------------------------------------------------- */
.dc-intro { max-width: 44rem; margin: 0 auto clamp(2.5rem, 5vw, 3.5rem); text-align: center; }
.dc-intro p { margin: 0 0 1rem; font-size: 1.05rem; line-height: 1.8; color: var(--slate); }
.dc-intro p:last-child { margin-bottom: 0; }
.dc-programs { margin-bottom: clamp(2.5rem, 5vw, 3.5rem); }
.dc-group-label {
  margin: 0 0 1.35rem;
  font-size: 0.72rem; font-weight: 800; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--red);
}
.dc-more {
  max-width: 44rem; margin-inline: auto; text-align: center;
  padding-top: clamp(1.5rem, 3vw, 2.25rem);
  border-top: 1px solid var(--line);
}
.dc-more-title {
  margin: 0 0 1rem;
  font-size: clamp(1.3rem, 2.2vw, 1.75rem); font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.02em; color: var(--navy);
}
.dc-more p { margin: 0 0 1rem; font-size: 1.05rem; line-height: 1.8; color: var(--slate); }
.dc-more .btn { margin-top: 0.75rem; }

@media (max-width: 62rem) { .dc-statements { grid-template-columns: 1fr; } }
