.hero--workshops .hero__grid {
  grid-template-columns: 2fr 1fr;
  gap: 36px;
}
.hero--workshops .hero__media {
  display: grid;
  place-items: center;
}
.hero--workshops .micro {
  margin-top: 18px;
}
.workshop-hero-figure {
  width: min(420px, 100%);
  margin-inline: auto;
}
.workshop-hero-figure__img {
  width: 100%;
  height: auto;
  display: none;
}
body.effects-ready .workshop-hero-figure__img {
  filter: drop-shadow(0 22px 54px rgba(var(--shadow-rgb), 0.10));
}
.workshop-hero-figure__img--light {
  display: block;
}
html[data-theme="dark"] .workshop-hero-figure__img--light {
  display: none;
}
html[data-theme="dark"] .workshop-hero-figure__img--dark {
  display: block;
}
.topic-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.topic-grid--four {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.topic-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid rgba(var(--navy-rgb), 0.18);
  background:
    radial-gradient(540px 240px at 12% 4%, rgba(202, 163, 90, 0.14), transparent 62%),
    rgba(var(--surface-rgb), 0.78);
  padding: 18px;
  box-shadow: 0 12px 34px rgba(var(--shadow-rgb), 0.05);
}
.topic-card__title {
  margin: 0 0 10px;
  font-size: clamp(20px, 2vw, 24px);
  line-height: 1.15;
}
.topic-card__text {
  margin: 0;
  color: rgba(var(--ink-rgb), 0.74);
}
.topic-grid > [data-reveal]:nth-child(5) {
  transition-delay: 320ms;
}
.topic-grid > [data-reveal]:nth-child(6) {
  transition-delay: 390ms;
}
.workshop-topics-list {
  width: min(820px, 100%);
  margin: 6px auto 0;
  text-align: left;
  font-size: 18px;
  line-height: 1.7;
}
.workshop-topics-list strong {
  color: rgba(var(--ink-rgb), 0.92);
}
@media (max-width: 980px) {
.hero--workshops .hero__grid {
    grid-template-columns: 1.75fr 1fr;
  }
}
@media (max-width: 720px) {
.hero--workshops {
    padding: 20px 0 30px;
  }
.hero--workshops .hero__grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
.hero--workshops .hero__media {
    grid-row: 1;
    justify-self: start;
    width: 100%;
  }
.hero--workshops .hero__copy {
    grid-row: 2;
  }
.hero--workshops h1 {
    font-size: clamp(30px, 10vw, 42px);
    line-height: 1.02;
    max-width: none;
  }
.hero--workshops .hero__accent {
    display: inline;
    margin-top: 0;
  }
.hero--workshops .lead {
    max-width: none;
  }
.hero--workshops .hero__cta {
    width: min(380px, 100%);
  }
.hero--workshops .micro {
    max-width: none;
    margin-top: 14px;
  }
.hero--workshops .workshop-hero-figure {
    width: min(260px, 68vw);
    margin-inline: 0;
  }
}
