/* ─────────────────────────────────────────────────────────────
   Joanna Summers — Workshops & Talks
   Page-specific layout only. The shared chrome (BACP banner, brand
   header, primary nav, footer) and the base reset live in style.css.
   ───────────────────────────────────────────────────────────── */

/* Lighter label variant — used on the dark statement-block closer. */

@media (width <= 700px) {
  .intro-grid {
    grid-template-columns: 1fr;
  }
}

/* stylelint-disable-next-line no-descending-specificity */

/* TOPICS */
.topics-section {
  background: var(--white);
  padding: clamp(4rem, 8vw, 7rem) 0;
}

.topics-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 6vw, 6rem);
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(260px, 100%), 1fr));
  gap: 1.5rem;
  margin-top: 1rem;
}

.topic-card {
  padding: 2rem;
  background: var(--cream);
  border-top: 2px solid var(--accent);
}

.topic-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--slate);
  margin-bottom: 0.8rem;
}

.topic-card p {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--mid);
}

/* WHO WE WORK WITH */
.audiences-section {
  padding: clamp(4rem, 8vw, 8rem) clamp(1.5rem, 6vw, 6rem);
  max-width: 1100px;
  margin: 0 auto;
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(220px, 100%), 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.audience-item {
  padding: 1.5rem;
  border-left: 2px solid var(--sand);
  background: rgb(215 190 157 / 6%);
}

.audience-item h3 {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--slate);
  font-weight: 400;
  margin-bottom: 0.4rem;
}

.audience-item p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: var(--mid);
}

/* STATEMENT */

@media (width <= 700px) {
  .statement-inner {
    grid-template-columns: 1fr;
  }
}

/* stylelint-disable-next-line no-descending-specificity */

/* Entrance reveal — CSS-only. The site CSP blocks inline JS, so content
   must never depend on a script to become visible. */

