
/* ───────────────────────────────────────────────
   styles.css L4036-4057 — CTA band actions
   ─────────────────────────────────────────────── */
.cta-band__actions {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}
.cta-band__actions .btn { width: auto; min-width: 240px; justify-content: space-between; }

/* ───────────────────────────────────────────────
   styles.css L4060-4220 — block_cta__collage + block_cta__layout
   ─────────────────────────────────────────────── */

/* Team collage (3x3 + blackboard) */
.block_cta__collage {
  position: relative;
  margin-top: 56px;
}
.block_cta__collage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  max-width: 720px;
}
.block_cta__collage-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  filter: sepia(1) contrast(1.05) saturate(0.2) brightness(1.02);
}
.block_cta__collage-cell {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 6px;
  background: var(--ink-100);
}
.block_cta__collage-cell::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(80,55,30,0.32) 0.35px, transparent 0.9px);
  background-size: 2.2px 2.2px;
  mix-blend-mode: multiply;
  pointer-events: none;
  border-radius: inherit;
}
@media (max-width: 900px) {
  .block_cta__collage-grid { max-width: 100%; }
}

/* CTA section — soft background, aligned with other sections */
.section--cta-soft {
  color: var(--ink-900) !important;
  padding-block: 72px 96px !important;
  margin-block: 0 !important;
}

/* 2-col layout: copy left, team grid right */
.block_cta__layout {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 64px;
  align-items: start;
}
@media (max-width: 960px) { .block_cta__layout { grid-template-columns: 1fr; gap: 40px; } }

.block_cta__layout-copy .sect-head--manifesto { margin-bottom: 0; }
.block_cta__actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.block_cta__actions .btn { min-width: 0; }

/* Team grid — tighter in soft section */
.block_cta__layout .block_cta__collage { margin-top: 8px; }
.block_cta__layout .block_cta__collage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  max-width: none;
}
.block_cta__layout .block_cta__collage-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
  display: block;
}

