:root {
  --whh-ink: #30270e;
  --whh-muted: #443818;
  --whh-paper: #f5f1e6;
  --whh-cream: #fffdf8;
  --whh-brick: #a23434;
  --whh-brick-dark: #7a2828;
  --whh-gold: #9a874d;
  --whh-forest: #3e5c29;
  --whh-line: #d8d1bd;
  --whh-past: #6f6a64;
  --whh-past-bg: #e8e6e2;
  --whh-past-card: #dcd9d4;
  --whh-shadow: 0 12px 32px rgba(48, 39, 14, 0.08);
  --whh-radius: 18px;
  --whh-sans: "Libre Caslon Text", Palatino, "Book Antiqua", Georgia, serif;
  --whh-ui: Cabin, "Segoe UI", sans-serif;
}

.whh-events {
  color: var(--whh-ink);
  background: var(--whh-paper);
  font-family: var(--whh-ui);
  line-height: 1.55;
  overflow-x: clip;
  max-width: 100%;
}

.whh-events__cover {
  position: relative;
  display: flex;
  align-items: center;
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 80px 0 60px;
  overflow: hidden;
  min-height: 180px;
  box-sizing: border-box;
}

.whh-events__cover-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  margin: 0;
  padding: 0;
  border: 0;
  display: block;
  max-width: none;
}

.whh-events__cover-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background-color: #152e04;
  opacity: 0.8;
  pointer-events: none;
}

.whh-events__cover-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
}

.whh-events__cover-title {
  color: #fff !important;
  font-family: "Libre Caslon Text", Palatino, "Book Antiqua", Georgia, serif;
  font-size: 50px;
  line-height: 58px;
  font-weight: 400;
  margin: 0 0 25px;
  padding: 0;
}

.whh-events__cover-inner > p,
.whh-events__cover-intro,
.whh-events__cover-intro p {
  color: #fff !important;
}

.whh-events__cover-intro a {
  color: #fff !important;
  text-decoration: underline;
}

.whh-events__inner {
  width: 100%;
  margin: 0 auto;
  padding: 32px 0 72px;
}

.whh-events--archive .whh-events__inner {
  padding-top: 28px;
}


.whh-events h1,
.whh-events h2,
.whh-events h3,
.whh-card__title,
.whh-single__subtitle {
  font-family: var(--whh-sans);
  letter-spacing: -0.02em;
  color: var(--whh-ink);
}

.whh-events h1 {
  font-size: clamp(2rem, 4vw, 3.4rem);
  margin: 8px 0 12px;
  line-height: 1.1;
}

.whh-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 28px;
  padding: 0 0 20px;
  border-bottom: 2px solid var(--whh-line);
}

.whh-toolbar__calendar {
  flex: 0 0 auto;
  margin-left: auto;
}

.whh-btn--calendar {
  background: var(--whh-forest) !important;
  color: #fff !important;
  border: 0 !important;
  font-family: var(--whh-ui) !important;
  font-size: 0.9rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em;
  line-height: 1.25 !important;
  text-transform: none !important;
  white-space: nowrap;
}

.whh-btn--calendar:hover,
.whh-btn--calendar:focus {
  background: #2f4720 !important;
  color: #fff !important;
}

.whh-btn--calendar i {
  font-size: 0.95em;
}

.whh-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  align-items: center;
  min-width: 0;
}

.whh-filters__group {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.whh-filters__group > span {
  flex: 0 0 auto;
  margin: 0;
  margin-right: 2px;
  padding: 0;
  font-family: var(--whh-ui);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--whh-muted);
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

/*
 * Theme child styles force every `button` into a large dark CTA with
 * `!important` (padding, background, border-bottom). These overrides are
 * intentionally !important so filter chips stay readable and compact.
 */
.whh-events button.whh-chip,
.whh-events .whh-chip {
  appearance: none !important;
  -webkit-appearance: none !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: auto !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 6px 14px !important;
  border: 1px solid #cbbfa3 !important;
  border-bottom: 1px solid #cbbfa3 !important;
  border-radius: 999px !important;
  background: #fffdf8 !important;
  background-image: none !important;
  box-shadow: none !important;
  color: #30270e !important;
  font-family: var(--whh-ui) !important;
  font-size: 0.875rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em !important;
  line-height: 1.25 !important;
  text-transform: none !important;
  text-decoration: none !important;
  cursor: pointer;
  transform: none !important;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease !important;
}

.whh-events button.whh-chip:hover,
.whh-events button.whh-chip:focus,
.whh-events .whh-chip:hover,
.whh-events .whh-chip:focus {
  background: #efe6c9 !important;
  background-image: none !important;
  border-color: var(--whh-gold) !important;
  border-bottom-color: var(--whh-gold) !important;
  color: #30270e !important;
  box-shadow: none !important;
  transform: none !important;
  outline: none;
}

.whh-events button.whh-chip:focus-visible,
.whh-events .whh-chip:focus-visible {
  outline: 2px solid var(--whh-forest);
  outline-offset: 2px;
}

.whh-events button.whh-chip.is-active,
.whh-events button.whh-chip.is-active:hover,
.whh-events button.whh-chip.is-active:focus,
.whh-events .whh-chip.is-active,
.whh-events .whh-chip.is-active:hover,
.whh-events .whh-chip.is-active:focus {
  background: var(--whh-forest) !important;
  background-image: none !important;
  border-color: var(--whh-forest) !important;
  border-bottom-color: var(--whh-forest) !important;
  color: #fff !important;
  box-shadow: none !important;
  transform: none !important;
}

/* Cards only — list/calendar views removed. */

.whh-board__heading {
  font-family: var(--whh-sans);
  font-size: 1.65rem;
  margin: 0 0 16px;
  color: var(--whh-ink);
  line-height: 1.2;
}

.whh-board__section {
  margin-top: 32px;
}

.whh-board__section:first-of-type {
  margin-top: 0;
}

.whh-board__group-title {
  font-family: var(--whh-sans);
  font-size: 1.15rem;
  font-weight: 700;
  margin: 0 0 16px;
  padding: 0 0 8px;
  color: var(--whh-ink);
  border-bottom: 2px solid var(--whh-line);
  line-height: 1.3;
}

.whh-board__rule,
.whh-events hr.whh-board__rule {
  border: 0;
  height: 2px;
  background: #d8d1bd;
  border-bottom: 0;
  margin: 40px 0 36px;
}

.whh-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  column-gap: 20px;
  row-gap: 28px;
  align-items: stretch;
}

.whh-card {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
  min-width: 0;
  background: var(--whh-cream);
  border-radius: var(--whh-radius);
  box-shadow: var(--whh-shadow);
  overflow: hidden;
  border: 0;
}

.whh-card--featured {
  background: #fffaf0;
  border: 2px solid var(--whh-gold);
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.4);
}

.whh-events a.whh-card__link,
.whh-events .whh-card__link,
.whh-events .whh-card__link:hover,
.whh-events .whh-card__link:focus,
.whh-events .whh-card__link:visited {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 5;
  color: inherit;
  text-decoration: none !important;
  box-shadow: none;
  min-width: 0;
}

.whh-card__media {
  min-width: 0;
  border-bottom: 1px solid #d8d1bd;
}

.whh-card__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  object-position: center;
  display: block;
  background:
    linear-gradient(135deg, rgba(122, 46, 42, 0.85), rgba(53, 82, 70, 0.7)),
    repeating-linear-gradient(45deg, #8a4a3d, #8a4a3d 12px, #734033 12px, #734033 24px);
}

.whh-card__image--placeholder {
  min-height: 0;
}

.whh-card__tags,
.whh-card__heading,
.whh-card__meta,
.whh-card__summary {
  padding-left: 16px;
  padding-right: 16px;
  min-width: 0;
}

.whh-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-content: flex-start;
  padding-top: 6px;
}

.whh-card__heading {
  padding-top: 4px;
  padding-bottom: 3px;
}

.whh-card__meta {
  padding-bottom: 3px;
}

.whh-card__summary {
  padding-bottom: 12px;
}

.whh-card__tags p,
.whh-card__heading p,
.whh-card__meta p,
.whh-card__summary p {
  padding: 0;
  margin: 0;
}

.whh-tag {
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  border-radius: 999px;
  padding: 4px 8px;
  background: #efe4d2;
  color: var(--whh-brick-dark);
}

.whh-tag--kids { background: #dce8e1; color: var(--whh-forest); }
.whh-tag--adults { background: #f3ddd6; color: var(--whh-brick-dark); }
.whh-tag--exhibits,
.whh-tag--exhibit { background: #efe6c9; color: #6a5420; }
.whh-tag--programs,
.whh-tag--program { background: #e4e8f0; color: #33415c; }
.whh-tag--events,
.whh-tag--event { background: #eadfd4; color: #5a3a2a; }
.whh-tag--series { background: var(--whh-forest); color: #fff; }
.whh-tag--past { background: #cfcbc4; color: #444; }
.whh-tag--hiatus { background: #efe6c9; color: #6a5420; }
.whh-tag--featured {
  background: var(--whh-gold);
  color: #fff;
  padding: 4px 25px;
  font-size: 14px;
}

.whh-card__title {
  font-size: 1.28rem;
  margin: 0;
  line-height: 1.25;
  text-decoration: none !important;
  color: var(--whh-ink);
}

.whh-card__subtitle {
  font-style: italic;
  color: var(--whh-brick);
  margin: 0 0 4px;
  font-size: 0.95rem;
  line-height: 1.35;
}

.whh-card__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.whh-card__date,
.whh-card__time,
.whh-card__special-hours,
.whh-card__sessions {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  color: var(--whh-muted);
  font-family: var(--whh-ui);
  font-size: 0.9rem;
  line-height: 1.35;
}

.whh-card__date i,
.whh-card__time i,
.whh-card__special-hours i {
  width: 1em;
  color: var(--whh-forest);
  flex: 0 0 auto;
  text-align: center;
}

.whh-card__meta .whh-card__sessions {
  margin-top: 10px;
  padding-top: 0;
}

.whh-card__series-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  margin: 0;
  padding: 2px 8px;
  border: 1px solid #cbbfa3;
  border-radius: 999px;
  background: #fffdf8;
  color: var(--whh-muted);
  font-family: var(--whh-ui);
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.25;
  text-transform: none;
}

.whh-card__session-count {
  color: var(--whh-muted);
  font-size: 0.9rem;
}

.whh-card__excerpt {
  margin: 0;
  color: #7a7162;
  font-size: 0.84rem;
  line-height: 1.45;
  font-style: normal;
}

.whh-empty {
  padding: 24px;
  background: var(--whh-cream);
  border: 2px dashed var(--whh-line);
  border-radius: var(--whh-radius);
  color: var(--whh-muted);
}

.whh-past {
  margin-top: 0;
  color: inherit;
  background: transparent;
  border-radius: 0;
  padding: 0;
}

.whh-past__inner {
  padding: 0;
}

.whh-past h2 {
  font-family: var(--whh-sans);
  color: var(--whh-ink);
  margin: 0 0 8px;
  font-size: 1.65rem;
  line-height: 1.2;
}

.whh-past .whh-card {
  background: var(--whh-cream);
  box-shadow: var(--whh-shadow);
  filter: none;
  opacity: 1;
}

.whh-past .whh-card__title,
.whh-past .whh-card__date {
  color: inherit;
}

/* Fallback when subgrid is unavailable: flex stack still fills the card. */
@supports not (grid-template-rows: subgrid) {
  .whh-card,
  .whh-events .whh-card__link {
    display: flex;
    flex-direction: column;
    grid-row: auto;
    height: 100%;
  }

  .whh-card__summary {
    margin-top: auto;
  }
}

.whh-events--single {
  --whh-single-thumb: 280px;
  --whh-single-rail: 350px;
}

.whh-single__back {
  margin: 0 0 18px;
  padding: 0 0 16px;
  border-bottom: 2px solid var(--whh-line);
}

.whh-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #30270e;
  color: #fff !important;
  text-decoration: none !important;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: none;
}

.whh-btn--ghost {
  background: transparent;
  color: var(--whh-brick) !important;
  border: 1px solid var(--whh-brick);
}

.whh-btn--small {
  padding: 6px 12px !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  letter-spacing: 0.02em;
  line-height: 1.2 !important;
  text-transform: none !important;
  font-family: var(--whh-ui) !important;
  background: #30270e !important;
  color: #fff !important;
}

.whh-btn--small i {
  font-size: 0.8em;
}

.whh-single__hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 28px;
  align-items: center;
  margin-bottom: 100px;
}

.whh-single__hero.has-thumb {
  grid-template-columns: var(--whh-single-thumb) minmax(0, 1fr);
}

.whh-single__thumb {
  margin: 0;
  width: 100%;
  max-width: var(--whh-single-thumb);
}

.whh-single__thumb-img,
.whh-single__thumb img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  object-position: center;
  border-radius: var(--whh-radius);
}

.whh-single__hero-text .whh-card__tags {
  margin-bottom: 10px;
  padding-top: 0;
  padding-left: 0;
  padding-right: 0;
}

.whh-single__hero-text h1 {
  margin: 0 0 10px;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.2;
}

.whh-single__subtitle {
  font-size: 1.2rem;
  font-style: italic;
  color: var(--whh-brick);
  margin: 0 0 8px;
  padding: 0;
}

.whh-single__when {
  font-size: 1.05rem;
  color: var(--whh-muted);
  margin: 0;
  padding: 0;
}

.whh-single__layout {
  display: grid;
  grid-template-columns: var(--whh-single-rail) minmax(0, 1fr);
  gap: 32px;
  align-items: start;
}

.whh-prose {
  font-size: 1.05rem;
  max-width: 68ch;
}

.whh-prose p {
  margin: 0 0 1em;
}

.whh-callout {
  background: #efe6c9;
  border-left: 4px solid var(--whh-gold);
  padding: 12px 16px;
  border-radius: 8px;
  margin: 0 0 28px;
  width: 100%;
  box-sizing: border-box;
}

.whh-callout--hiatus {
  margin-top: 0;
}

.whh-details {
  background: var(--whh-cream);
  border: 2px solid var(--whh-line);
  border-radius: var(--whh-radius);
  padding: 20px;
  position: sticky;
  top: 16px;
  overflow: hidden;
}

.whh-details h2,
.whh-details h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
}

.whh-details dl {
  margin: 0;
}

.whh-details dl > div {
  padding: 10px 0;
  border-bottom: 2px solid var(--whh-line);
}

.whh-details dl > div:first-child {
  padding-top: 0;
}

.whh-details dl > div:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.whh-details dt {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--whh-forest);
  font-weight: 700;
}

.whh-details dd {
  margin: 4px 0 0;
}

.whh-details__lines {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.whh-details__line,
.whh-details .whh-card__sessions {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
  padding: 0;
  color: var(--whh-muted);
  font-family: var(--whh-ui);
  font-size: 0.95rem;
  line-height: 1.4;
}

.whh-details__line i {
  width: 1em;
  margin-top: 0.2em;
  color: var(--whh-forest);
  flex: 0 0 auto;
  text-align: center;
}

.whh-details .whh-card__sessions {
  margin-top: 0;
  flex-wrap: wrap;
}

.whh-details__register {
  margin: 16px -20px 0;
  padding: 16px 20px;
  background: #e8efe3;
  border-top: 2px solid var(--whh-line);
  border-bottom: 2px solid var(--whh-line);
}

.whh-details__register:last-child {
  margin-bottom: -20px;
  padding-bottom: 20px;
  border-bottom: 0;
}

.whh-details__register h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--whh-forest);
  font-weight: 700;
  font-family: var(--whh-ui);
}

.whh-details__register h3 i {
  font-size: 0.95rem;
  letter-spacing: 0;
}

.whh-details__register-type {
  margin: 0 0 8px;
  padding: 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--whh-ink);
  line-height: 1.35;
}

.whh-details__register-note {
  margin: 0 0 8px;
  padding: 0;
  font-size: 0.95rem;
  color: var(--whh-muted);
}

.whh-details__register-note:last-child,
.whh-details__register-action:last-child {
  margin-bottom: 0;
}

.whh-details__register-action {
  margin: 10px 0 0;
  padding: 0;
}

.whh-btn--register {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  background: var(--whh-brick) !important;
  color: #fff !important;
  border: 0 !important;
  text-decoration: none !important;
}

.whh-btn--register:hover,
.whh-btn--register:focus {
  background: var(--whh-brick-dark) !important;
  color: #fff !important;
}

.whh-btn--register i {
  font-size: 0.85em;
}

.whh-details__pdfs {
  margin-top: 16px;
}

.whh-details__pdfs--ruled {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 2px solid var(--whh-line);
}

.whh-sessions {
  margin-top: 36px;
}

.whh-sessions__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.whh-sessions__item {
  display: grid;
  grid-template-columns: minmax(8.5rem, auto) 1fr;
  gap: 14px;
  background: #e9e5da;
  border: 2px solid var(--whh-line);
  border-radius: 14px;
  padding: 12px 14px;
}

.whh-sessions__item.is-past {
  background: #e9e5da;
  color: var(--whh-past);
}

.whh-sessions__date {
  color: var(--whh-forest);
  font-family: var(--whh-ui);
}

.whh-sessions__date strong {
  display: block;
  font-size: 0.98rem;
  font-weight: 700;
  line-height: 1.3;
  color: inherit;
}

.whh-sessions__item.is-past .whh-sessions__date {
  color: var(--whh-past);
}

.whh-sessions__meta,
.whh-sessions__speaker span {
  color: var(--whh-muted);
  font-size: 0.92rem;
}

.whh-sessions__item.is-past .whh-sessions__meta,
.whh-sessions__item.is-past .whh-sessions__speaker span {
  color: var(--whh-past);
}

.whh-sessions__item h3 {
  margin: 0 0 4px;
  font-size: 1.05rem;
}

.whh-status--upcoming { color: var(--whh-forest); font-weight: 700; }
.whh-status--past { color: #6f6a64; }
.whh-status--hiatus { color: #6a5420; }

/* —— Responsive —— */

@media (max-width: 1100px) {
  .whh-events--single {
    --whh-single-thumb: 240px;
    --whh-single-rail: 300px;
  }

  .whh-single__layout {
    gap: 24px;
  }
}

@media (max-width: 900px) {
  .whh-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 16px;
    row-gap: 22px;
  }

  .whh-card__title {
    font-size: 1.15rem;
  }

  .whh-past h2,
  .whh-board__heading {
    font-size: 1.45rem;
  }
}

@media (max-width: 800px) {
  .whh-events__cover {
    padding: 48px 0 40px;
    min-height: 0;
  }

  .whh-events__cover-title {
    font-size: 36px;
    line-height: 42px;
    margin-bottom: 16px;
  }

  .whh-events__inner {
    padding: 24px 0 56px;
  }

  .whh-events--archive .whh-events__inner {
    padding-top: 20px;
  }

  .whh-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    margin-bottom: 22px;
    padding-bottom: 16px;
  }

  .whh-toolbar__calendar {
    margin-left: 0;
    width: 100%;
  }

  .whh-btn--calendar {
    width: 100%;
    justify-content: center;
    white-space: normal;
    text-align: center;
  }

  .whh-filters {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .whh-filters__group {
    display: flex;
    width: 100%;
  }

  .whh-filters__group > span {
    display: block;
    width: 100%;
    flex: 0 0 100%;
    margin: 0 0 6px;
  }

  .whh-events button.whh-chip,
  .whh-events .whh-chip {
    padding: 8px 14px !important;
    font-size: 0.9rem !important;
  }

  .whh-board__section {
    margin-top: 28px;
  }

  .whh-board__rule,
  .whh-events hr.whh-board__rule {
    margin: 32px 0 28px;
  }

  .whh-single__layout {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .whh-single__hero {
    margin-bottom: 48px;
    gap: 20px;
  }

  .whh-single__hero.has-thumb {
    grid-template-columns: minmax(140px, 200px) minmax(0, 1fr);
    gap: 18px;
    align-items: start;
  }

  .whh-single__subtitle {
    font-size: 1.05rem;
  }

  .whh-details {
    position: static;
  }

  .whh-btn--register {
    width: 100%;
    justify-content: center;
  }

  .whh-sessions {
    margin-top: 28px;
  }
}

@media (max-width: 560px) {
  .whh-events__cover {
    padding: 36px 0 28px;
  }

  .whh-events__cover-title {
    font-size: 28px;
    line-height: 34px;
    margin-bottom: 12px;
  }

  .whh-events__inner {
    padding: 18px 0 48px;
  }

  .whh-grid {
    grid-template-columns: 1fr;
    row-gap: 20px;
  }

  .whh-card__tags,
  .whh-card__heading,
  .whh-card__meta,
  .whh-card__summary {
    padding-left: 14px;
    padding-right: 14px;
  }

  .whh-card__title {
    font-size: 1.2rem;
  }

  .whh-card__date,
  .whh-card__time,
  .whh-card__special-hours,
  .whh-card__sessions,
  .whh-card__session-count {
    font-size: 0.88rem;
  }

  .whh-past h2,
  .whh-board__heading {
    font-size: 1.35rem;
  }

  .whh-board__group-title {
    font-size: 1.05rem;
  }

  .whh-events--single {
    --whh-single-thumb: min(100%, 280px);
    --whh-single-rail: 100%;
  }

  .whh-single__back {
    margin-bottom: 14px;
    padding-bottom: 12px;
  }

  .whh-single__hero,
  .whh-single__hero.has-thumb {
    grid-template-columns: 1fr;
    margin-bottom: 36px;
    gap: 16px;
  }

  .whh-single__thumb {
    max-width: min(100%, 280px);
    margin-inline: auto;
  }

  .whh-single__hero-text h1 {
    font-size: clamp(1.5rem, 7vw, 1.9rem);
  }

  .whh-single__when {
    font-size: 0.98rem;
  }

  .whh-callout {
    padding: 12px 14px;
    margin-bottom: 20px;
    font-size: 0.95rem;
  }

  .whh-details {
    padding: 16px;
  }

  .whh-details__register {
    margin-left: -16px;
    margin-right: -16px;
    padding: 14px 16px;
  }

  .whh-details__register:last-child {
    margin-bottom: -16px;
    padding-bottom: 16px;
  }

  .whh-details__line,
  .whh-details .whh-card__sessions,
  .whh-details__register-note,
  .whh-details__register-type {
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .whh-prose {
    font-size: 1rem;
  }

  .whh-sessions__item {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 12px;
  }

  .whh-sessions__date strong {
    font-size: 0.95rem;
  }

  .whh-sessions__item h3 {
    font-size: 1rem;
  }

  .whh-sessions__meta,
  .whh-sessions__speaker {
    margin: 0;
    padding: 0;
  }
}

@media (max-width: 380px) {
  .whh-events__cover-title {
    font-size: 24px;
    line-height: 30px;
  }

  .whh-events button.whh-chip,
  .whh-events .whh-chip {
    padding: 7px 11px !important;
    font-size: 0.82rem !important;
  }
}
