/* ============================================================
   CommsWeek Design System
   Organised as:
     0.  Tokens
     1.  Base
     2.  Layout utilities
     3.  Shared patterns  (eyebrow, buttons, gradient-banner, logo-grid)
     4.  Global widgets   (icon, linked-pill, chip, photo-frame, inline-meta)
     5.  Feature slider
     6.  Hero
     7.  Mid-nav
     8.  Description / About
     9.  Join Us
    10.  Featured schedule
    11.  Advisory board ticker
    12.  Board-members banner
    13.  Stat banner
    14.  Plan Your Week
    15.  Future of Communications Conference
    16.  Why Communicators Choose
    17.  Sponsors & Partners  (shared .cw-logo-grid)
    18.  Modal
19.  People grid
     19b. Meet the team
     20.  Newsletter subscribe
    21.  Hashtag & social
    22.  Responsive overrides
   ============================================================ */

/* ============================================================
   0. TOKENS
   ============================================================ */

body.commsweek-theme,
.editor-styles-wrapper {
  /* --- Colours --- */
  --cw-color-blue: #283cb9;
  --cw-color-blue-deep: #1b3d6e;
  --cw-color-blue-vibrant: #1743dd;
  --cw-color-blue-dark: #112c5f;
  --cw-color-orange: #ed602e;
  --cw-color-orange-bright: #f27143;
  --cw-color-purple: #845fcd;
  --cw-color-border: rgba(16, 44, 95, 0.14);
  --cw-color-muted: rgba(16, 44, 95, 0.72);
  --cw-color-cream: #faf0dc;
  --cw-color-white-96: rgba(255, 255, 255, 0.96);
  --cw-color-white-88: rgba(255, 255, 255, 0.88);
  --cw-color-white-82: rgba(255, 255, 255, 0.82);
  --cw-color-white-44: rgba(255, 255, 255, 0.44);
  --cw-color-white-22: rgba(255, 255, 255, 0.22);
  --cw-color-white-16: rgba(255, 255, 255, 0.16);
  --cw-color-white-12: rgba(255, 255, 255, 0.12);
  --cw-color-white-04: rgba(255, 255, 255, 0.04);

  /* --- Gradients --- */
  --cw-gradient-orange: linear-gradient(
    90deg,
    var(--cw-color-orange) 0%,
    var(--cw-color-orange-bright) 100%
  );
  --cw-gradient-banner: linear-gradient(
    90deg,
    var(--cw-color-orange-bright) 0%,
    var(--cw-color-blue-vibrant) 100%
  );
  --cw-gradient-full: linear-gradient(
    90deg,
    rgba(248, 105, 26, 1) 0%,
    rgba(255, 117, 59, 1) 12%,
    rgba(145, 92, 140, 1) 33%,
    rgba(23, 68, 223, 1) 75%,
    rgba(34, 60, 193, 1) 100%
  );
  --cw-gradient-bg: linear-gradient(
    0deg,
    var(--cw-color-orange-bright) 0%,
    var(--cw-color-blue-vibrant) 100%
  );

  /* --- Shadows --- */
  --cw-shadow-soft: 0 14px 34px rgba(16, 44, 95, 0.12);

  /* --- Border radius --- */
  --cw-radius-pill: 999px;
  --cw-radius-card: 1.35rem;
  --cw-radius-frame: 1.05rem;
  --cw-radius-stat: 12px;

  /* --- Typography --- */
  --cw-font-display: "Oswald", sans-serif;
  --cw-font-body: "Inter Tight", sans-serif;

  /* --- Transitions --- */
  --cw-transition-base: 0.2s ease;
  --cw-transition-btn: background-color 0.18s ease, transform 0.18s ease;

  /* --- Layout --- */
  --cw-shell-width: 1100px;
  --cw-shell-width-wide: 1380px; /* mid-nav and full-bleed sections */
  --cw-hero-background-image:
    url("https://www.commsweek.com/wp-content/uploads/2026/04/Mask-Group-142_compressed.webp"),
    linear-gradient(180deg, #2342c9 0%, #f27045 100%);
  --cw-hero-background-image-mobile:
    url("https://www.commsweek.com/wp-content/uploads/2026/04/map.png"),
    var(--cw-gradient-bg);
  --cw-mobile-header-offset: 50.6016px;
  --cw-admin-bar-offset: 0px;
  --cw-sticky-offset: 0px;
}

body.admin-bar.commsweek-theme {
  --cw-admin-bar-offset: 32px;
}

@media (max-width: 782px) {
  body.admin-bar.commsweek-theme {
    --cw-admin-bar-offset: 46px;
  }
}

@media (max-width: 767px) {
  body.commsweek-theme {
    --cw-sticky-offset: calc(
      var(--cw-mobile-header-offset) + var(--cw-admin-bar-offset)
    );
  }
}

@media (min-width: 768px) {
  body.commsweek-theme {
    --cw-sticky-offset: var(--cw-admin-bar-offset);
  }
}

.editor-styles-wrapper {
  --cw-sticky-offset: 0px;
}

/* ============================================================
   0b. EDITOR COLOUR PALETTE UTILITIES
   Generated to match the slugs registered via editor-color-palette
   in functions.php. WordPress outputs .has-{slug}-color /
   .has-{slug}-background-color but does not auto-generate the
   actual colour values — we must declare them here.
   ============================================================ */

/* Text colours */
.has-cw-blue-color {
  color: #1d40ce !important;
}
.has-cw-blue-deep-color {
  color: #2d37af !important;
}
.has-cw-blue-vibrant-color {
  color: #1843dd !important;
}
.has-cw-ink-color {
  color: #102c5f !important;
}
.has-cw-orange-color {
  color: #ed602e !important;
}
.has-cw-orange-bright-color {
  color: #f27143 !important;
}
.has-cw-orange-deep-color {
  color: #f04a33 !important;
}
.has-cw-purple-color {
  color: #845fcd !important;
}
.has-cw-sky-color {
  color: #8cd6ff !important;
}
.has-cw-white-color {
  color: #ffffff !important;
}
.has-cw-black-color {
  color: #000000 !important;
}

/* Background colours */
.has-cw-blue-background-color {
  background-color: #1d40ce !important;
}
.has-cw-blue-deep-background-color {
  background-color: #2d37af !important;
}
.has-cw-blue-vibrant-background-color {
  background-color: #1843dd !important;
}
.has-cw-ink-background-color {
  background-color: #102c5f !important;
}
.has-cw-orange-background-color {
  background-color: #ed602e !important;
}
.has-cw-orange-bright-background-color {
  background-color: #f27143 !important;
}
.has-cw-orange-deep-background-color {
  background-color: #f04a33 !important;
}
.has-cw-purple-background-color {
  background-color: #845fcd !important;
}
.has-cw-sky-background-color {
  background-color: #8cd6ff !important;
}
.has-cw-white-background-color {
  background-color: #ffffff !important;
}
.has-cw-black-background-color {
  background-color: #000000 !important;
}

/* ============================================================
   1. BASE
   ============================================================ */

.cw-site-main {
  display: block;
  background-color: #ffffff;
  color: var(--cw-color-blue-dark);
  font-family: var(--cw-font-body);
}

.cw-site-main *,
.editor-styles-wrapper * {
  box-sizing: border-box;
}

.cw-site-main a,
.editor-styles-wrapper a {
  color: var(--cw-color-blue);
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.14em;
  transition:
    color var(--cw-transition-base),
    background-color var(--cw-transition-base),
    border-color var(--cw-transition-base),
    box-shadow var(--cw-transition-base);
}

.cw-site-main a:hover,
.cw-site-main a:focus,
.editor-styles-wrapper a:hover,
.editor-styles-wrapper a:focus {
  color: var(--cw-color-orange);
}

.cw-site-main :where(p),
.editor-styles-wrapper :where(p) {
  margin: 0 0 1.15rem;
  font-size: clamp(1rem, 0.95rem + 0.16vw, 1.125rem);
  line-height: 1.45;
}

.cw-site-main :where(h1, h2, h3, h4, h5, h6),
.editor-styles-wrapper :where(h1, h2, h3, h4, h5, h6) {
  margin: 0 0 0.4em;
  color: var(--cw-color-blue-dark);
  font-family: var(--cw-font-display);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 0.95;
}

.cw-site-main :where(h2),
.editor-styles-wrapper :where(h2) {
  font-family: var(--cw-font-display);
  font-size: 3rem;
  font-weight: 500;
  line-height: 1.1;
  color: var(--cw-color-blue);
  margin: 0 0 2.8rem;
  text-wrap: balance;
}

h2.cw-full-width-gradient-bg {
  color: white;
  font-weight: 500;
  font-size: clamp(1.75rem, 2.05rem + 2vw, 2.75rem);
  background-image: var(--cw-gradient-full);
  padding: 1em 0;
  margin: 0.5em 0 0;
}

.mb-0 {
  margin-bottom: 0 !important;
}
.mt-8 {
  margin-top: 2rem !important;
}

.cw-site-main :where(ul, ol),
.editor-styles-wrapper :where(ul, ol) {
  margin: 0 0 1.2rem 1.2rem;
}

/* ============================================================
   2. LAYOUT UTILITIES
   ============================================================ */

.cw-site-main .alignwide {
  width: min(calc(100% - 2.5rem), calc(var(--cw-shell-width) + 8rem));
  max-width: calc(var(--cw-shell-width) + 8rem);
  margin-right: auto;
  margin-left: auto;
}

.cw-site-main .alignwide.cw-section {
  margin-top: 3rem;
}

.cw-site-main .alignfull {
  max-width: 100%;
  margin-right: 0;
  margin-left: 0;
}

.cw-page-shell [id],
.editor-styles-wrapper [id] {
  scroll-margin-top: calc(var(--cw-sticky-offset) + 5.75rem);
}

.cw-shell,
.editor-styles-wrapper .cw-shell {
  width: min(calc(100% - 2.5rem), var(--cw-shell-width));
  margin-right: auto;
  margin-left: auto;
}

/* Narrow container block style — full-width outer, 950 px constrained inner */
.is-style-narrow-container,
.editor-styles-wrapper .is-style-narrow-container {
  width: 100%;
  max-width: none !important;
  padding-left: 0;
  padding-right: 0;
}

.is-style-narrow-container > .wp-block-group__inner-container,
.editor-styles-wrapper
  .is-style-narrow-container
  > .wp-block-group__inner-container {
  max-width: 975px;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.cw-list-reset,
.editor-styles-wrapper .cw-list-reset {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* ============================================================
   3. SHARED PATTERNS
   ============================================================ */

/* ── 3a. Eyebrow / kicker
   All orange uppercase label text shares these tokens.
   Each component can override size / spacing as needed.
   ── */

.cw-kicker,
.cw-focc__eyebrow,
.cw-why-choose__eyebrow,
.editor-styles-wrapper .cw-kicker,
.editor-styles-wrapper .cw-focc__eyebrow,
.editor-styles-wrapper .cw-why-choose__eyebrow {
  margin: 0;
  color: var(--cw-color-orange-bright);
  font-family: var(--cw-font-body);
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1.2;
  text-transform: uppercase;
}

/* Size overrides per context */
.cw-kicker {
  font-size: 0.9rem;
  color: var(--cw-color-orange);
}
.cw-focc__eyebrow {
  font-size: 0.62rem;
  margin: 0 0 0.8rem;
}

.cw-eyebrow {
  font-family: var(--cw-font-body);
  color: var(--cw-color-orange);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.cw-section-heading,
.editor-styles-wrapper .cw-section-heading {
  font-size: clamp(2.75rem, 2.05rem + 2vw, 5.2rem);
}

.cw-section-heading .has-inline-color,
.editor-styles-wrapper .cw-section-heading .has-inline-color {
  color: var(--cw-color-orange);
}

.cw-section-lead,
.editor-styles-wrapper .cw-section-lead {
  max-width: 34rem;
  color: var(--cw-color-muted);
}

/* ── 3b. Buttons / CTAs ──
   .cw-btn-pill     — shared pill base (layout + radius + text style)
   .cw-btn-primary  — orange gradient fill
   .cw-btn-ghost    — white semi-transparent fill (dark-bg contexts)
   .cw-btn-solid    — solid ink fill (light-bg contexts)
   Component-level selectors compose these via @extend-like grouping below.
   ── */

/* Pill base */
.cw-btn-pill,
.cw-button--orange .wp-block-button__link,
.is-style-orange-primary .wp-block-button__link,
.cw-button-row .wp-block-button__link,
.cw-mid-nav__cta .wp-block-button__link,
.cw-featured-schedule__footer .wp-block-button__link,
.cw-description__cta .wp-block-button__link,
.cw-focc__cta-btn .wp-block-button__link,
#subscribe .wp-block-button__link,
.editor-styles-wrapper .cw-btn-pill,
.editor-styles-wrapper .cw-button--orange .wp-block-button__link,
.editor-styles-wrapper .is-style-orange-primary .wp-block-button__link,
.editor-styles-wrapper .cw-button-row .wp-block-button__link,
.editor-styles-wrapper .cw-mid-nav__cta .wp-block-button__link,
.editor-styles-wrapper .cw-featured-schedule__footer .wp-block-button__link,
.editor-styles-wrapper .cw-description__cta .wp-block-button__link,
.editor-styles-wrapper .cw-focc__cta-btn .wp-block-button__link,
.editor-styles-wrapper #subscribe .wp-block-button__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 0;
  border-radius: var(--cw-radius-pill);
  color: #ffffff;
  font-family: var(--cw-font-display);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition:
    box-shadow var(--cw-transition-base),
    transform var(--cw-transition-base),
    filter var(--cw-transition-base);
}

/* Primary: orange gradient */
.cw-btn-primary,
.cw-button--orange .wp-block-button__link,
.is-style-orange-primary .wp-block-button__link,
.cw-button-row .wp-block-button__link,
.cw-featured-schedule__footer .wp-block-button__link,
.cw-description__cta .wp-block-button__link,
.cw-focc__cta-btn .wp-block-button__link,
.editor-styles-wrapper .cw-btn-primary,
.editor-styles-wrapper .cw-button--orange .wp-block-button__link,
.editor-styles-wrapper .is-style-orange-primary .wp-block-button__link,
.editor-styles-wrapper .cw-button-row .wp-block-button__link,
.editor-styles-wrapper .cw-featured-schedule__footer .wp-block-button__link,
.editor-styles-wrapper .cw-description__cta .wp-block-button__link,
.editor-styles-wrapper .cw-focc__cta-btn .wp-block-button__link {
  background: var(--cw-gradient-orange);
}

/* Primary hover */
.cw-btn-primary:hover,
.cw-btn-primary:focus,
.cw-button--orange .wp-block-button__link:hover,
.cw-button--orange .wp-block-button__link:focus,
.is-style-orange-primary .wp-block-button__link:hover,
.is-style-orange-primary .wp-block-button__link:focus,
.cw-button-row .wp-block-button__link:hover,
.cw-button-row .wp-block-button__link:focus,
.cw-description__cta .wp-block-button__link:hover,
.cw-description__cta .wp-block-button__link:focus,
.cw-focc__cta-btn .wp-block-button__link:hover,
.cw-focc__cta-btn .wp-block-button__link:focus,
.editor-styles-wrapper .cw-btn-primary:hover,
.editor-styles-wrapper .cw-btn-primary:focus,
.editor-styles-wrapper .cw-button--orange .wp-block-button__link:hover,
.editor-styles-wrapper .cw-button--orange .wp-block-button__link:focus,
.editor-styles-wrapper .is-style-orange-primary .wp-block-button__link:hover,
.editor-styles-wrapper .is-style-orange-primary .wp-block-button__link:focus,
.editor-styles-wrapper .cw-button-row .wp-block-button__link:hover,
.editor-styles-wrapper .cw-button-row .wp-block-button__link:focus,
.editor-styles-wrapper .cw-description__cta .wp-block-button__link:hover,
.editor-styles-wrapper .cw-description__cta .wp-block-button__link:focus,
.editor-styles-wrapper .cw-focc__cta-btn .wp-block-button__link:hover,
.editor-styles-wrapper .cw-focc__cta-btn .wp-block-button__link:focus {
  color: #ffffff;
  /* box-shadow: 0 18px 34px rgba(242, 113, 67, 0.36); */
  transform: translateY(-1px);
}

/* Orange Primary block style — SVG arrow icon injected via pseudo-element */
.is-style-orange-primary .wp-block-button__link::before,
.editor-styles-wrapper .is-style-orange-primary .wp-block-button__link::before {
  content: "";
  display: inline-block;
  width: 1.3em;
  height: 1.3em;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath fill='%23ffffff' d='M528 320C528 434.9 434.9 528 320 528C205.1 528 112 434.9 112 320C112 205.1 205.1 112 320 112C434.9 112 528 205.1 528 320zM64 320C64 461.4 178.6 576 320 576C461.4 576 576 461.4 576 320C576 178.6 461.4 64 320 64C178.6 64 64 178.6 64 320zM451.3 331.3C457.5 325.1 457.5 314.9 451.3 308.7L347.3 204.7C342.7 200.1 335.8 198.8 329.9 201.2C324 203.6 320 209.5 320 216L320 288L216 288C202.7 288 192 298.7 192 312L192 328C192 341.3 202.7 352 216 352L320 352L320 424C320 430.5 323.9 436.3 329.9 438.8C335.9 441.3 342.8 439.9 347.3 435.3L451.3 331.3z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Ghost: white semi-transparent (for dark / image backgrounds) */
.cw-btn-ghost,
.cw-advisory-board-ticker__link,
.editor-styles-wrapper .cw-btn-ghost,
.editor-styles-wrapper .cw-advisory-board-ticker__link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  border-radius: var(--cw-radius-pill);
  background-color: var(--cw-color-white-16);
  color: #ffffff !important;
  font-family: var(--cw-font-body);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.cw-btn-ghost:hover,
.cw-btn-ghost:focus,
.cw-advisory-board-ticker__link:hover,
.cw-advisory-board-ticker__link:focus,
.editor-styles-wrapper .cw-btn-ghost:hover,
.editor-styles-wrapper .cw-btn-ghost:focus,
.editor-styles-wrapper .cw-advisory-board-ticker__link:hover,
.editor-styles-wrapper .cw-advisory-board-ticker__link:focus {
  color: #ffffff !important;
  background-color: var(--cw-color-white-22);
}

/* Solid-ink button (light backgrounds) */
/* .cw-btn-solid,
.cw-focc__cta-btn .wp-block-button__link,
.editor-styles-wrapper .cw-btn-solid,
.editor-styles-wrapper .cw-focc__cta-btn .wp-block-button__link {
  background-color: var(--cw-color-blue-dark);
  color: #ffffff;
  font-family: var(--cw-font-body);
  font-weight: 700;
  text-transform: uppercase;
  transition: var(--cw-transition-btn);
} */

/* .cw-btn-solid:hover,
.cw-btn-solid:focus,
.cw-focc__cta-btn .wp-block-button__link:hover,
.cw-focc__cta-btn .wp-block-button__link:focus {
  background-color: #0a1a3a;
  transform: translateY(-1px);
} */

/* Per-component padding overrides */
.cw-button-row .wp-block-button__link {
  padding: 0.8rem 1.35rem;
}
.cw-mid-nav__cta .wp-block-button__link {
  padding: 0.7rem 1.82rem;
  font-weight: 700;
  font-family: var(--cw-font-body);
  letter-spacing: 0;
  text-transform: none;
  background: var(--cw-gradient-orange);
  box-shadow: none;
}
.cw-featured-schedule__footer .wp-block-button__link {
  padding: 0.95rem 1.45rem;
  font-size: 1rem;
  font-weight: 800;
}
.cw-description__cta .wp-block-button__link {
  padding: 0.8rem 1.6rem;
}
.cw-focc__cta-btn .wp-block-button__link {
  padding: 0.8rem 1.6rem;
}
.cw-advisory-board-ticker__link {
  align-self: flex-start;
  margin-top: 0.55rem;
  padding: 0.68rem 1rem 0.72rem;
}

/* Mid-nav CTA hover */
.cw-mid-nav__cta .wp-block-button__link:hover,
.cw-mid-nav__cta .wp-block-button__link:focus,
.editor-styles-wrapper .cw-mid-nav__cta .wp-block-button__link:hover,
.editor-styles-wrapper .cw-mid-nav__cta .wp-block-button__link:focus {
  color: #ffffff;
}

.cw-description__cta .wp-block-button__link i {
  margin-right: 0.4rem;
}
.cw-focc__cta-btn .cw-icon {
  margin-right: 0.3rem;
}

/* Arrow icon pseudo-element (shared by footer + advisory link) */
.cw-featured-schedule__footer .wp-block-button__link::before,
#subscribe .wp-block-button__link::before,
.cw-advisory-board-ticker__link::before,
.editor-styles-wrapper
  .cw-featured-schedule__footer
  .wp-block-button__link::before,
.editor-styles-wrapper #subscribe .wp-block-button__link::before,
.editor-styles-wrapper .cw-advisory-board-ticker__link::before {
  content: "";
  display: inline-block;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath fill='%23ffffff' d='M528 320C528 434.9 434.9 528 320 528C205.1 528 112 434.9 112 320C112 205.1 205.1 112 320 112C434.9 112 528 205.1 528 320zM64 320C64 461.4 178.6 576 320 576C461.4 576 576 461.4 576 320C576 178.6 461.4 64 320 64C178.6 64 64 178.6 64 320zM451.3 331.3C457.5 325.1 457.5 314.9 451.3 308.7L347.3 204.7C342.7 200.1 335.8 198.8 329.9 201.2C324 203.6 320 209.5 320 216L320 288L216 288C202.7 288 192 298.7 192 312L192 328C192 341.3 202.7 352 216 352L320 352L320 424C320 430.5 323.9 436.3 329.9 438.8C335.9 441.3 342.8 439.9 347.3 435.3L451.3 331.3z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.cw-featured-schedule__footer .wp-block-button__link::before {
  width: 1.5rem;
  height: 1.5rem;
}

#subscribe .wp-block-button__link::before {
  width: 1.05rem;
  height: 1.05rem;
}

.cw-advisory-board-ticker__link::before {
  width: 1.1rem;
  height: 1.1rem;
}

/* Featured schedule footer hover */
.cw-featured-schedule__footer .wp-block-button__link:hover,
.cw-featured-schedule__footer .wp-block-button__link:focus,
.editor-styles-wrapper
  .cw-featured-schedule__footer
  .wp-block-button__link:hover,
.editor-styles-wrapper
  .cw-featured-schedule__footer
  .wp-block-button__link:focus {
  color: #ffffff !important;
  filter: brightness(1.04);
  transform: translateY(-1px);
}

/* Shared button icon */
.cw-button__icon,
.editor-styles-wrapper .cw-button__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1.05em;
  line-height: 1;
}

/* Ensure SVGs inside pill buttons inherit colour and don't collapse */
.wp-block-button__link .cw-icon,
.wp-block-button__link svg,
.editor-styles-wrapper .wp-block-button__link .cw-icon,
.editor-styles-wrapper .wp-block-button__link svg {
  fill: currentColor;
  color: inherit;
  flex-shrink: 0;
  pointer-events: none;
}

/* ── 3c. Gradient banner base ──
   Both .cw-stat-banner and .cw-board-members-banner share
   the orange→blue gradient and full-width layout.
   ── */

.cw-gradient-banner,
.cw-stat-banner,
.cw-board-members-banner,
.editor-styles-wrapper .cw-gradient-banner,
.editor-styles-wrapper .cw-stat-banner,
.editor-styles-wrapper .cw-board-members-banner {
  background: var(--cw-gradient-full);
  width: 100%;
  text-align: center;
}

/* ── 3d. Logo grid ──
   Shared pattern for both Sponsors and Partners grids.
   Old class names are preserved as aliases below.
   ── */

.cw-logo-grid,
.cw-sponsors-columns,
.cw-partners-columns,
.editor-styles-wrapper .cw-logo-grid,
.editor-styles-wrapper .cw-sponsors-columns,
.editor-styles-wrapper .cw-partners-columns {
  margin: 2rem 0;
  padding: 0;
}

.cw-logo-grid__list,
.cw-sponsors-columns__list,
.cw-partners-columns__list,
.editor-styles-wrapper .cw-logo-grid__list,
.editor-styles-wrapper .cw-sponsors-columns__list,
.editor-styles-wrapper .cw-partners-columns__list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cw-logo-grid__list li,
.cw-sponsors-columns__list li,
.cw-partners-columns__list li,
.editor-styles-wrapper .cw-logo-grid__list li,
.editor-styles-wrapper .cw-sponsors-columns__list li,
.editor-styles-wrapper .cw-partners-columns__list li {
  margin: 0 !important;
  list-style: none;
}

.cw-logo-grid__item,
.cw-sponsors-columns__item,
.cw-partners-columns__item,
.editor-styles-wrapper .cw-logo-grid__item,
.editor-styles-wrapper .cw-sponsors-columns__item,
.editor-styles-wrapper .cw-partners-columns__item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  margin: 0 !important;
  border: solid 1px #cfd3d7;
  background-color: #ffffff;
  width: calc(25% - 1.04167em) !important;
}

.cw-logo-grid__item img,
.cw-sponsors-columns__item img,
.cw-partners-columns__item img,
.editor-styles-wrapper .cw-logo-grid__item img,
.editor-styles-wrapper .cw-sponsors-columns__item img,
.editor-styles-wrapper .cw-partners-columns__item img {
  max-height: 100px;
  width: auto;
  max-width: 100%;
  height: auto;
}

.cw-logo-grid__item a,
.cw-sponsors-columns__item a,
.cw-partners-columns__item a,
.editor-styles-wrapper .cw-logo-grid__item a,
.editor-styles-wrapper .cw-sponsors-columns__item a,
.editor-styles-wrapper .cw-partners-columns__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.cw-logo-grid__item a:hover,
.cw-sponsors-columns__item a:hover,
.cw-partners-columns__item a:hover,
.editor-styles-wrapper .cw-logo-grid__item a:hover,
.editor-styles-wrapper .cw-sponsors-columns__item a:hover,
.editor-styles-wrapper .cw-partners-columns__item a:hover {
  text-decoration: none;
}

.cw-logo-grid__empty,
.cw-sponsors-columns__empty,
.cw-partners-columns__empty,
.editor-styles-wrapper .cw-logo-grid__empty,
.editor-styles-wrapper .cw-sponsors-columns__empty,
.editor-styles-wrapper .cw-partners-columns__empty {
  color: var(--cw-color-muted);
  font-style: italic;
  text-align: center;
  padding: 2rem 0;
}

@media (max-width: 1199px) {
  .cw-logo-grid__item,
  .cw-sponsors-columns__item,
  .cw-partners-columns__item,
  .editor-styles-wrapper .cw-logo-grid__item,
  .editor-styles-wrapper .cw-sponsors-columns__item,
  .editor-styles-wrapper .cw-partners-columns__item {
    width: calc(33% - 1.04167em) !important;
    flex-grow: 1;
  }
}

@media (min-width: 430px) and (max-width: 575px) {
  .cw-logo-grid__item,
  .cw-sponsors-columns__item,
  .cw-partners-columns__item,
  .editor-styles-wrapper .cw-logo-grid__item,
  .editor-styles-wrapper .cw-sponsors-columns__item,
  .editor-styles-wrapper .cw-partners-columns__item {
    width: calc(33.333% - 1.04167em) !important;
    flex-grow: 1;
  }
}

@media (max-width: 429px) {
  .cw-logo-grid__item,
  .cw-sponsors-columns__item,
  .cw-partners-columns__item,
  .editor-styles-wrapper .cw-logo-grid__item,
  .editor-styles-wrapper .cw-sponsors-columns__item,
  .editor-styles-wrapper .cw-partners-columns__item {
    width: calc(50% - 1.04167em) !important;
    flex-grow: 1;
  }
}

/* ============================================================
   4. GLOBAL WIDGETS
   ============================================================ */

.cw-icon {
  display: inline-block;
  width: 1.3em;
  height: 1.3em;
  flex-shrink: 0;
  vertical-align: 0em;
  fill: currentColor;
}

/* ── Linked pill (hero date/location badge) ── */

.cw-linked-pill,
.editor-styles-wrapper .cw-linked-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  margin: 0;
  padding: 0.64rem 1.2rem;
  border-radius: var(--cw-radius-pill);
  background: var(--cw-gradient-orange);
  color: #ffffff;
  box-shadow: var(--cw-shadow-soft);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.cw-linked-pill__item,
.editor-styles-wrapper .cw-linked-pill__item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
}

.cw-linked-pill__icon,
.editor-styles-wrapper .cw-linked-pill__icon {
  font-size: 1em;
}

.cw-linked-pill__icon svg,
.editor-styles-wrapper .cw-linked-pill__icon svg {
  width: 1.4em;
  height: 1.4em;
}

.cw-linked-pill__divider,
.editor-styles-wrapper .cw-linked-pill__divider {
  width: 2px;
  height: 2.5em;
  margin-bottom: -1em;
  margin-top: -1em;
  background-color: var(--cw-color-white-44);
}

/* ── Inline meta (location + date pairs) ── */

.cw-inline-meta,
.editor-styles-wrapper .cw-inline-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.4rem;
  margin: 0;
  color: var(--cw-color-blue-dark);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-transform: uppercase;
}

.cw-inline-meta__item,
.editor-styles-wrapper .cw-inline-meta__item {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
}

.cw-inline-meta__item i,
.editor-styles-wrapper .cw-inline-meta__item i {
  color: var(--cw-color-blue-deep);
  font-size: 1.5em;
}

/* ── Chip list (city pills) ── */

.cw-chip-list,
.editor-styles-wrapper .cw-chip-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cw-chip-list li,
.editor-styles-wrapper .cw-chip-list li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cw-chip,
.cw-chip:link,
.cw-chip:visited,
.cw-site-main a.cw-chip,
.cw-site-main a.cw-chip:link,
.cw-site-main a.cw-chip:visited,
.editor-styles-wrapper .cw-chip,
.editor-styles-wrapper a.cw-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 1.9rem;
  padding: 0.62rem 1.36rem;
  border: 1px solid var(--cw-color-white-82);
  border-radius: var(--cw-radius-pill);
  background-color: var(--cw-color-white-04);
  color: #ffffff !important;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  cursor: default;
  backdrop-filter: blur(4px);
}

.cw-chip:focus-visible,
.cw-site-main a.cw-chip:focus-visible,
.editor-styles-wrapper .cw-chip:focus-visible {
  color: #ffffff !important;
  background-color: var(--cw-color-white-12);
  border-color: #ffffff;
}

.cw-chip span,
.editor-styles-wrapper .cw-chip span {
  color: inherit !important;
}

.cw-chip__dot,
.editor-styles-wrapper .cw-chip__dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: var(--cw-radius-pill);
  background-color: var(--cw-chip-dot, #ffffff);
}

.cw-chip__dot--blue {
  --cw-chip-dot: #204bb7;
}
.cw-chip__dot--sky {
  --cw-chip-dot: #6ad0ff;
}
.cw-chip__dot--violet {
  --cw-chip-dot: #7969f6;
}
.cw-chip__dot--navy {
  --cw-chip-dot: #173a8a;
}
.cw-chip__dot--coral {
  --cw-chip-dot: #ff9f8b;
}

/* ── Photo frame ── */

.cw-photo-frame,
.editor-styles-wrapper .cw-photo-frame {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--cw-radius-frame);
  box-shadow: inset 0 0 0 1px var(--cw-color-white-22);
}

.cw-photo-frame img,
.editor-styles-wrapper .cw-photo-frame img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
}

/* ============================================================
   5. FEATURE SLIDER
   ============================================================ */

.cw-feature-slider,
.editor-styles-wrapper .cw-feature-slider {
  position: relative;
  margin: 0;
  max-width: 100%;
}

.cw-feature-slider__viewport,
.editor-styles-wrapper .cw-feature-slider__viewport {
  overflow: visible;
  max-width: 100%;
}

.cw-feature-slider__track,
.editor-styles-wrapper .cw-feature-slider__track {
  margin: 0;
  max-width: 100%;
}

.cw-feature-slider__track > .wp-block-group__inner-container,
.editor-styles-wrapper
  .cw-feature-slider__track
  > .wp-block-group__inner-container {
  margin: 0;
  max-width: 100%;
}

.cw-feature-slider__slide,
.editor-styles-wrapper .cw-feature-slider__slide {
  min-width: 0;
}

.cw-feature-slider__slide > .cw-feature-card,
.editor-styles-wrapper .cw-feature-slider__slide > .cw-feature-card {
  margin-right: auto;
  margin-left: auto;
}

.cw-feature-slider__slides.slick-slider {
  margin-bottom: 0;
  max-width: 100%;
}
.cw-feature-slider__slides .slick-list {
  overflow: hidden;
}

.cw-feature-slider__slides .slick-track {
  display: flex !important;
  align-items: stretch;
}

.cw-feature-slider__slides .slick-slide {
  height: inherit !important;
}
.cw-feature-slider__slides .slick-slide > div {
  display: flex;
  width: 100%;
}

/* Pager dots */
.cw-pager-dots,
.editor-styles-wrapper .cw-pager-dots {
  margin: 0.5rem 0 0.75rem;
}

.cw-pager-dots .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cw-pager-dots .slick-dots li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cw-pager-dots__dot,
.editor-styles-wrapper .cw-pager-dots__dot {
  display: block;
  width: 0.68rem;
  height: 0.68rem;
  padding: 0;
  border: 1px solid var(--cw-color-white-82);
  border-radius: var(--cw-radius-pill);
  background-color: transparent;
  appearance: none;
  cursor: pointer;
}

.cw-pager-dots__dot:hover,
.cw-pager-dots__dot:focus-visible,
.editor-styles-wrapper .cw-pager-dots__dot:hover,
.editor-styles-wrapper .cw-pager-dots__dot:focus-visible {
  border-color: #ffffff;
  outline: none;
}

.cw-pager-dots__dot.is-active,
.cw-pager-dots .slick-active .cw-pager-dots__dot,
.editor-styles-wrapper .cw-pager-dots__dot.is-active {
  background-color: var(--cw-color-white-88);
}

.editor-styles-wrapper .cw-feature-slider__viewport {
  overflow: visible;
}

.editor-styles-wrapper
  .cw-feature-slider__track
  > .wp-block-group__inner-container {
  display: grid;
  gap: 1rem;
}

.editor-styles-wrapper .cw-pager-dots {
  display: none;
}

/* ── Button row (wrapper) ── */

.cw-button-row,
.editor-styles-wrapper .cw-button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
}

.cw-feature-card__cta .wp-block-button__link,
.editor-styles-wrapper .cw-feature-card__cta .wp-block-button__link {
  box-shadow: none;
}

/* CTA in hero feature card is always orange */
.cw-hero .cw-feature-card__cta .wp-block-button__link,
.editor-styles-wrapper .cw-hero .cw-feature-card__cta .wp-block-button__link {
  background: var(--cw-gradient-orange);
  color: #ffffff;
}

/* ============================================================
   6. HERO
   ============================================================ */

/* ── Floating particles ── */

.cw-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.cw-particle {
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  opacity: 0.2;
  will-change: transform, opacity;
  animation: cw-particle-float var(--cw-p-duration, 5s) ease-in-out infinite;
  animation-delay: var(--cw-p-delay, 0s);
}

@keyframes cw-particle-float {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.2;
  }
  50% {
    transform: translateY(-30px) scale(1.5);
    opacity: 0.6;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 0.2;
  }
}

.cw-hero,
.editor-styles-wrapper .cw-hero {
  position: relative;
  margin: 0;
  padding: clamp(3rem, 4.15vw, 4.7rem) 0 1.1rem;
  color: #ffffff;
  background-image: var(--cw-hero-background-image);
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  isolation: isolate;
  overflow: hidden;
}

.cw-hero::before,
.cw-hero::after,
.editor-styles-wrapper .cw-hero::before,
.editor-styles-wrapper .cw-hero::after {
  content: none;
}

.cw-hero .cw-shell,
.editor-styles-wrapper .cw-hero .cw-shell {
  position: relative;
  z-index: 1;
}

.cw-hero__inner,
.editor-styles-wrapper .cw-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0.8rem;
}

.cw-hero__meta-wrap,
.editor-styles-wrapper .cw-hero__meta-wrap {
  width: 100%;
  text-align: center;
}

.cw-hero__meta,
.editor-styles-wrapper .cw-hero__meta {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.35rem;
}

.cw-hero__title,
.editor-styles-wrapper .cw-hero__title {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 0;
  margin: 0.75rem 0 1.35rem;
  color: #ffffff;
  font-family: var(--cw-font-body);
  font-size: clamp(3.75rem, 5.35vw, 5.75rem);
  line-height: 0.87;
  text-align: center;
  text-transform: none;
}

.cw-hero__title-primary,
.editor-styles-wrapper .cw-hero__title-primary {
  font-weight: 700;
}

.cw-hero__title-accent,
.editor-styles-wrapper .cw-hero__title-accent {
  font-weight: 200;
}

.cw-hero__subhead,
.editor-styles-wrapper .cw-hero__subhead {
  margin: 0.35rem 0 1.7rem;
  color: #ffffff;
  font-family: var(--cw-font-display);
  font-size: clamp(1.62rem, 1.12rem + 0.84vw, 2.26rem);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 0.94;
  text-align: center;
  text-transform: uppercase;
}

.cw-chip-row,
.cw-chip-list,
.editor-styles-wrapper .cw-chip-row,
.editor-styles-wrapper .cw-chip-list {
  margin-top: 2.95rem;
}

/* ── Feature card ── */

.cw-feature-card,
.editor-styles-wrapper .cw-feature-card {
  gap: 1rem;
  width: min(100%, 996px);
  margin: 1.7rem auto 0;
  padding: 0.56rem;
  border-radius: var(--cw-radius-card);
  background-color: #ffffff;
  /* box-shadow: 0 18px 42px rgba(16, 44, 95, 0.18); */
  overflow: visible;
}

.cw-feature-card > .wp-block-column,
.editor-styles-wrapper .cw-feature-card > .wp-block-column {
  margin-top: 0;
}

.cw-feature-card__content,
.editor-styles-wrapper .cw-feature-card__content {
  padding: 1rem 0.28rem 0.56rem 0.96rem;
}

.cw-feature-card__eyebrow,
.editor-styles-wrapper .cw-feature-card__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.52rem;
  margin: 0 0 0.72rem;
  color: var(--cw-color-blue-vibrant);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.25;
  text-transform: uppercase;
}

.cw-feature-card__eyebrow::before,
.editor-styles-wrapper .cw-feature-card__eyebrow::before {
  content: "\2605";
  display: none;
  color: var(--cw-color-blue);
  font-size: 1em;
}

.cw-feature-slider__slide:first-child .cw-feature-card__eyebrow::before,
.editor-styles-wrapper
  .cw-feature-slider__slide:first-child
  .cw-feature-card__eyebrow::before {
  display: inline-block;
}

.cw-feature-card__title,
.editor-styles-wrapper .cw-feature-card__title {
  margin-bottom: 0.56rem;
  color: var(--cw-color-blue-dark);
  font-size: clamp(1.62rem, 1.06rem + 0.62vw, 2.18rem);
  text-transform: uppercase;
  letter-spacing: 0;
  line-height: 1.2;
  text-wrap: wrap !important;
}

.cw-feature-card__meta,
.editor-styles-wrapper .cw-feature-card__meta {
  margin: 0 0 0.72rem;
}

.cw-feature-card__meta .cw-icon,
.editor-styles-wrapper .cw-feature-card__meta .cw-icon {
  width: 1.4em;
  height: 1.4em;
  flex-shrink: 0;
  vertical-align: middle;
}

.cw-feature-card__copy,
.editor-styles-wrapper .cw-feature-card__copy {
  margin-bottom: 0.98rem;
  color: var(--cw-color-muted);
  font-size: 1rem;
  line-height: 1.34;
}

.cw-feature-card__visual,
.editor-styles-wrapper .cw-feature-card__visual {
  display: flex;
  align-self: stretch;
  margin-top: 0;
  padding: 0;
}

.cw-feature-card__media,
.editor-styles-wrapper .cw-feature-card__media {
  display: flex;
  width: 100%;
  min-height: 100%;
}

.cw-feature-card__media
  > .wp-block-group__inner-container.is-layout-constrained.wp-block-group-is-layout-constrained,
.editor-styles-wrapper
  .cw-feature-card__media
  > .wp-block-group__inner-container.is-layout-constrained.wp-block-group-is-layout-constrained {
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
}

.cw-feature-card__image-wrap,
.editor-styles-wrapper .cw-feature-card__image-wrap {
  width: 100%;
  min-height: 10.65rem;
}

.cw-feature-card__image,
.editor-styles-wrapper .cw-feature-card__image {
  min-height: 10.65rem;
  object-position: center;
}

.cw-hero.cw-hero-internal,
.editor-styles-wrapper .cw-hero.cw-hero-internal {
  padding: clamp(3rem, 3.5vw, 5.75rem) 0 clamp(2rem, 2.5vw, 3.75rem);
}

/* ============================================================
   7. MID-NAV
   ============================================================ */

.cw-mid-nav,
.editor-styles-wrapper .cw-mid-nav {
  position: sticky;
  top: var(--cw-sticky-offset);
  z-index: 100;
  margin: 0;
  padding: 0;
  background-color: var(--cw-color-blue);
}

.cw-mid-nav__inner,
.editor-styles-wrapper .cw-mid-nav__inner {
  display: flex;
  align-items: center;
  justify-content: center !important;
  gap: 1.5rem;
  min-height: 3.6rem;
  /* Override the standard cw-shell width with the wider nav shell */
  width: min(calc(100% - 2.5rem), var(--cw-shell-width-wide));
  max-width: var(--cw-shell-width-wide);
}

.cw-mid-nav__menu,
.editor-styles-wrapper .cw-mid-nav__menu {
  display: flex;
  flex-wrap: nowrap; /* single row — no wrapping */
  align-items: center;
  gap: 0 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
  min-width: 0;
}

.cw-mid-nav__menu li,
.editor-styles-wrapper .cw-mid-nav__menu li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cw-mid-nav__menu a,
.editor-styles-wrapper .cw-mid-nav__menu a {
  display: block;
  padding: 0.35rem 0;
  color: var(--cw-color-white-96);
  font-family: var(--cw-font-display);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
}

.cw-mid-nav__menu a:hover,
.cw-mid-nav__menu a:focus,
.cw-mid-nav__menu a.is-current,
.editor-styles-wrapper .cw-mid-nav__menu a:hover,
.editor-styles-wrapper .cw-mid-nav__menu a:focus,
.editor-styles-wrapper .cw-mid-nav__menu a.is-current {
  color: var(--cw-color-orange-bright);
}

.cw-mid-nav__cta,
.editor-styles-wrapper .cw-mid-nav__cta {
  display: flex;
  align-items: center;
  margin-left: auto;
  flex-shrink: 0;
}

/* ============================================================
   8. DESCRIPTION / ABOUT
   ============================================================ */

.cw-description,
.editor-styles-wrapper .cw-description {
  background-color: #ffffff;
  padding: 4rem 0 3.5rem;
}

.cw-description__inner,
.editor-styles-wrapper .cw-description__inner {
  max-width: var(--cw-shell-width);
  margin: 0 auto;
}

.cw-description__cta {
  margin-top: 2.5rem;
}

.cw-description__intro,
.editor-styles-wrapper .cw-description__intro {
  gap: 2.5rem;
  margin-bottom: 3rem;
  align-items: flex-start;
}

.cw-description__headline-col,
.editor-styles-wrapper .cw-description__headline-col {
  flex-basis: 48% !important;
}

.cw-description__text-col,
.editor-styles-wrapper .cw-description__text-col {
  flex-basis: 52% !important;
}

.cw-description__title,
.editor-styles-wrapper .cw-description__title {
  font-family: var(--cw-font-display);
  font-size: 2.65rem;
  font-weight: 500;
  line-height: 1.32;
  text-transform: uppercase;
  margin: 0 0 0;
}

.cw-description__body,
.editor-styles-wrapper .cw-description__body {
  font-family: var(--cw-font-body);
  font-size: 0.95rem;
  line-height: 1.4;
  color: var(--cw-font-body);
}

.cw-description__body a {
  color: var(--cw-color-orange);
  font-weight: 700;
  text-decoration: none;
}
.cw-description__body a:hover {
  color: var(--cw-color-orange);
}

/* Stat cards row */

.cw-description__stats,
.editor-styles-wrapper .cw-description__stats {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 1.5rem;
}

.cw-stat-card,
.editor-styles-wrapper .cw-stat-card {
  flex: 1;
  display: flex;
  flex-direction: column;
  border: 1px solid #dde1e8;
  border-radius: var(--cw-radius-stat);
  padding: 0;
  overflow: hidden;
}

.cw-stat-card > .wp-block-group__inner-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  padding: 1.8rem 1rem 1.5rem;
  flex: 1;
}

.cw-stat-card > .wp-block-group__inner-container > figure {
  align-self: center;
}

.cw-stat-card > .wp-block-group__inner-container > p {
  margin-top: auto;
}

.cw-stat-card__icon,
.editor-styles-wrapper .cw-stat-card__icon {
  width: 3.2rem;
  margin: 0 auto 0.8rem;
}

.cw-stat-card__icon img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.cw-stat-card__number,
.editor-styles-wrapper .cw-stat-card__number {
  font-family: var(--cw-font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--cw-color-blue-vibrant);
  line-height: 1;
  margin: 0 0 0.25rem;
}

.cw-stat-card__label,
.editor-styles-wrapper .cw-stat-card__label {
  font-family: var(--cw-font-body);
  font-size: 1.1rem;
  color: var(--cw-font-body);
  margin: 0;
}

/* ============================================================
   9. JOIN US
   ============================================================ */

.cw-join-us,
.editor-styles-wrapper .cw-join-us {
  position: relative;
  background-image:
    url("https://www.commsweek.com/wp-content/uploads/2026/04/Mask-Group-144_compressed.webp"),
    var(--cw-gradient-bg);
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 80px 20px;
  text-align: center;
}

.cw-join-us > *,
.editor-styles-wrapper .cw-join-us > * {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
}

.cw-join-us__heading,
.editor-styles-wrapper .cw-join-us__heading {
  font-family: var(--cw-font-display);
  font-size: clamp(3.4rem, 5vw, 4.55rem);
  font-weight: 500;
  color: #ffffff;
  margin: 0 0 0.5em;
  line-height: 1.1;
}

.cw-join-us__subheading,
.editor-styles-wrapper .cw-join-us__subheading {
  font-family: var(--cw-font-display);
  font-size: clamp(2.75em, 3vw, 3.875em);
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  margin: 0 0 20px;
  line-height: 1.15;
}

.cw-join-us__meta,
.editor-styles-wrapper .cw-join-us__meta {
  gap: 8px 32px !important;
  margin: 0 0 28px !important;
  font-family: "Inter Tight", sans-serif;
}

.cw-join-us__meta-item,
.editor-styles-wrapper .cw-join-us__meta-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-family: var(--cw-font-display);
  font-weight: 600;
  font-size: clamp(1em, 3vw, 1.6em);
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  white-space: nowrap;
}

.cw-join-us__meta-item svg,
.editor-styles-wrapper .cw-join-us__meta-item svg {
  width: 1em;
  height: 1em;
  flex-shrink: 0;
  fill: currentColor;
}

.cw-button-row .wp-block-button__link,
.cw-join-us .cw-button-row .wp-block-button__link {
  background: var(--cw-color-blue-vibrant);
}

@media (max-width: 600px) {
  .cw-join-us {
    padding: 60px 20px;
  }

  .cw-join-us__meta {
    flex-direction: column !important;
    gap: 8px !important;
  }
}

/* ============================================================
   10. NEED HELP
   ============================================================ */

.cw-need-help,
.editor-styles-wrapper .cw-need-help {
  background: #f6f6f4;
  padding: clamp(3.5rem, 7vw, 5rem) 20px clamp(4.75rem, 7vw, 6.25rem);
}

.cw-need-help__title,
.editor-styles-wrapper .cw-need-help__title {
  margin: 0 0 clamp(2rem, 3vw, 3rem);
  font-family: var(--cw-font-display);
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: var(--cw-color-blue);
  text-align: center;
}

.cw-need-help__grid,
.editor-styles-wrapper .cw-need-help__grid {
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(
    4,
    auto
  ); /* icon | title | body | link — shared across all cards */
  gap: 18px !important;
  align-items: start;
}

.cw-need-help__card,
.editor-styles-wrapper .cw-need-help__card {
  position: relative;
  display: grid;
  grid-row: span 4;
  grid-template-rows: subgrid;
  justify-items: center;
  min-width: 0;
  padding: 30px 28px 26px;
  border-radius: 22px;
  border: 1.5px solid rgba(26, 44, 112, 0.28);
  background: #ffffff;
  text-align: center;
  box-shadow: 0 12px 40px rgba(10, 25, 70, 0.04);
}

/* Pass subgrid through the WP inner-container wrapper */
.cw-need-help__card > .wp-block-group__inner-container,
.editor-styles-wrapper .cw-need-help__card > .wp-block-group__inner-container {
  display: grid;
  grid-row: 1 / -1;
  justify-items: center;
  width: 100%;
}

.cw-need-help__card h3,
.editor-styles-wrapper .cw-need-help__card h3 {
  width: 100%;
}

.cw-need-help__card--featured,
.editor-styles-wrapper .cw-need-help__card--featured {
  border-width: 3px;
  border-color: var(--cw-color-orange-bright);
  padding-top: 42px;
}

.cw-need-help__badge,
.editor-styles-wrapper .cw-need-help__badge {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 156px;
  padding: 7px 18px 6px;
  border-radius: var(--cw-radius-pill);
  background: var(--cw-color-orange-bright);
  font-family: var(--cw-font-display);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-transform: uppercase;
}

.cw-need-help__icon,
.editor-styles-wrapper .cw-need-help__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 18px;
}

.cw-need-help__icon svg,
.editor-styles-wrapper .cw-need-help__icon svg {
  width: 100%;
  height: 100%;
}

.cw-need-help__card-title,
.editor-styles-wrapper .cw-need-help__card-title {
  align-self: start;
  margin: 0 0 10px;
  font-family: var(--cw-font-body);
  font-size: clamp(1.2rem, 1.5vw, 1.55rem);
  font-weight: 800;
  line-height: 1.1;
  color: #0d4383;
}

.cw-need-help__body,
.editor-styles-wrapper .cw-need-help__body {
  margin: 0;
  max-width: 260px;
  font-family: var(--cw-font-body);
  font-size: 1rem;
  line-height: 1.28;
  color: #133f7d;
}

.cw-need-help__body + .cw-need-help__body,
.editor-styles-wrapper .cw-need-help__body + .cw-need-help__body {
  margin-top: 8px;
}

.cw-need-help__person,
.editor-styles-wrapper .cw-need-help__person {
  font-weight: 800;
}

.cw-need-help__role,
.editor-styles-wrapper .cw-need-help__role {
  font-style: italic;
}

.cw-need-help__link,
.cw-need-help__card a,
.editor-styles-wrapper .cw-need-help__link,
.editor-styles-wrapper .cw-need-help__card a {
  color: var(--cw-color-orange-bright);
  font-weight: 800;
  text-decoration: none;
}

.cw-need-help__link:hover,
.cw-need-help__link:focus,
.cw-need-help__card a:hover,
.cw-need-help__card a:focus,
.editor-styles-wrapper .cw-need-help__link:hover,
.editor-styles-wrapper .cw-need-help__link:focus,
.editor-styles-wrapper .cw-need-help__card a:hover,
.editor-styles-wrapper .cw-need-help__card a:focus {
  color: #d94714;
  text-decoration: underline;
}

@media (max-width: 1180px) {
  /* 2-column layout; drop subgrid row alignment (only meaningful at full 4-col) */
  .cw-need-help__grid,
  .editor-styles-wrapper .cw-need-help__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .cw-need-help__card,
  .editor-styles-wrapper .cw-need-help__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    grid-row: auto;
  }

  .cw-need-help__card > .wp-block-group__inner-container,
  .editor-styles-wrapper
    .cw-need-help__card
    > .wp-block-group__inner-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
}

@media (max-width: 640px) {
  .cw-need-help,
  .editor-styles-wrapper .cw-need-help {
    padding-inline: 16px;
  }

  .cw-need-help__title,
  .editor-styles-wrapper .cw-need-help__title {
    font-size: clamp(2rem, 11vw, 2.8rem);
  }

  .cw-need-help__grid,
  .editor-styles-wrapper .cw-need-help__grid {
    grid-template-columns: 1fr;
  }

  .cw-need-help__card,
  .editor-styles-wrapper .cw-need-help__card {
    min-height: 0;
  }
}

/* ============================================================
   11. FEATURED SCHEDULE
   ============================================================ */

.cw-featured-schedule,
.editor-styles-wrapper .cw-featured-schedule {
  background: var(--cw-color-blue);
  padding: clamp(3.75rem, 5.1vw, 4.85rem) 0 clamp(4rem, 5vw, 4.85rem);
}

.cw-featured-schedule__inner,
.editor-styles-wrapper .cw-featured-schedule__inner {
  width: min(calc(100% - 4rem), 1200px);
  max-width: 1200px;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cw-featured-schedule__title,
.editor-styles-wrapper .cw-featured-schedule__title {
  /* margin: 0 0 2.5rem; */
  margin-bottom: 1.2rem;
  color: #ffffff;
  font-family: var(--cw-font-display);
  font-weight: 400;
  font-size: clamp(1.9rem, 1.12rem + 2vw, 2.5rem);
  line-height: 1;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.cw-featured-schedule__grid,
.editor-styles-wrapper .cw-featured-schedule__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 2px;
  margin: 1.5em 0 0;
  padding: 2px;
  background-color: #17379f;
}

.cw-featured-schedule__grid > .wp-block-column,
.editor-styles-wrapper .cw-featured-schedule__grid > .wp-block-column {
  min-width: 0 !important;
  margin: 0 !important;
}

.cw-featured-schedule__grid > .wp-block-column > .cw-schedule-card,
.editor-styles-wrapper
  .cw-featured-schedule__grid
  > .wp-block-column
  > .cw-schedule-card {
  height: 100%;
}

/* Schedule card */

.cw-schedule-card,
.editor-styles-wrapper .cw-schedule-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #f17b4b;
  color: #ffffff;
}

/* Propagate flex stretch through the WP inner-container wrapper */
.cw-schedule-card > .wp-block-group__inner-container,
.editor-styles-wrapper .cw-schedule-card > .wp-block-group__inner-container {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.cw-schedule-card__media-wrap,
.editor-styles-wrapper .cw-schedule-card__media-wrap {
  position: relative;
  overflow: hidden;
  background-color: #d8e3ff;
  line-height: 0;
}

.cw-schedule-card__badge,
.editor-styles-wrapper .cw-schedule-card__badge {
  position: absolute;
  top: 0.72rem;
  left: 0.72rem;
  z-index: 1;
  margin: 0;
  padding: 0.34rem 0.72rem 0.33rem;
  border-radius: var(--cw-radius-pill);
  background-color: rgba(255, 255, 255, 0.55);
  box-shadow: 0 10px 22px rgba(12, 22, 67, 0.18);
  color: #2850c6;
  font-family: var(--cw-font-display);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
}

.cw-schedule-card__media,
.editor-styles-wrapper .cw-schedule-card__media {
  margin: 0;
  overflow: hidden;
  aspect-ratio: 1.52 / 1;
}

.cw-schedule-card__media img,
.editor-styles-wrapper .cw-schedule-card__media img {
  display: block;
  width: 100%;
  height: 100% !important;
  object-fit: cover;
}

.cw-schedule-card__body,
.editor-styles-wrapper .cw-schedule-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 13rem;
  padding: 1rem 0.95rem 0.95rem;
  text-align: center;
}

.cw-schedule-card__body > .wp-block-group__inner-container,
.editor-styles-wrapper
  .cw-schedule-card__body
  > .wp-block-group__inner-container {
  display: grid;
  grid-template-rows: min-content min-content 1fr 1.5rem;
  gap: 0.28rem;
  height: 100%;
  justify-items: center;
}

.cw-schedule-card__body > .wp-block-group__inner-container > *,
.editor-styles-wrapper
  .cw-schedule-card__body
  > .wp-block-group__inner-container
  > * {
  width: 100%;
}

.cw-schedule-card__title,
.editor-styles-wrapper .cw-schedule-card__title {
  max-width: none;
  width: 100%;
  margin: 0 0 0.28rem;
  color: #ffffff;
  font-family: var(--cw-font-display);
  font-size: clamp(1rem, 1.12rem + 2vw, 1.35rem);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  text-wrap: balance;
}

.cw-schedule-card__date,
.cw-schedule-card__note,
.editor-styles-wrapper .cw-schedule-card__date,
.editor-styles-wrapper .cw-schedule-card__note {
  margin: 0;
  color: #ffffff;
  font-family: var(--cw-font-display);
  font-weight: 500;
  letter-spacing: 0.03em;
  line-height: 1.08;
  text-transform: uppercase;
}

.cw-schedule-card__date {
  font-size: 1.1rem;
  font-weight: 400;
  line-height: 1.5;
  align-self: end;
}
.cw-schedule-card__note {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.02;
  text-wrap: balance;
  align-self: end;
  color: var(--cw-color-cream);
}

.cw-schedule-card__actions,
.editor-styles-wrapper .cw-schedule-card__actions {
  align-self: end;
}

.cw-schedule-card__actions .wp-block-button,
.editor-styles-wrapper .cw-schedule-card__actions .wp-block-button {
  margin: 0;
}

/* Outlined ghost button on schedule cards */
.cw-schedule-card__actions .wp-block-button__link,
.editor-styles-wrapper .cw-schedule-card__actions .wp-block-button__link {
  min-width: 0;
  padding: 0.42rem 1.38rem 0.47rem;
  border: 2px solid var(--cw-color-blue-deep);
  border-radius: var(--cw-radius-pill);
  background: transparent !important;
  box-shadow: none;
  color: var(--cw-color-blue-deep) !important;
  font-family: var(--cw-font-body);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
}

.cw-schedule-card__actions .wp-block-button__link:hover,
.cw-schedule-card__actions .wp-block-button__link:focus,
.editor-styles-wrapper .cw-schedule-card__actions .wp-block-button__link:hover,
.editor-styles-wrapper .cw-schedule-card__actions .wp-block-button__link:focus {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.92) !important;
  color: var(--cw-color-blue-deep) !important;
  transform: translateY(-1px);
}

.cw-featured-schedule__footer,
.editor-styles-wrapper .cw-featured-schedule__footer {
  margin: 0;
  padding-top: 2rem;
}

/* ============================================================
   11. ADVISORY BOARD TICKER
   ============================================================ */

.cw-advisory-board-ticker,
.editor-styles-wrapper .cw-advisory-board-ticker {
  --cw-advisory-card-gap: 0em;
  --cw-advisory-card-size: min(
    350px,
    calc((100vw - 3rem - (var(--cw-advisory-card-gap) * 4)) / 5)
  );
  --cw-advisory-card-radius: 0;
  --cw-advisory-ticker-duration: 96s;
  background:
    radial-gradient(
      circle at top left,
      rgba(140, 214, 255, 0.26),
      transparent 36%
    ),
    linear-gradient(180deg, #1d2427 0%, #1d2427 100%);
  padding: 0;
  overflow: hidden;
}

.cw-advisory-board-ticker__marquee,
.editor-styles-wrapper .cw-advisory-board-ticker__marquee {
  position: relative;
  overflow: hidden;
  padding-inline: 1.25rem;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 4%,
    #000 96%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0,
    #000 4%,
    #000 96%,
    transparent 100%
  );
}

.cw-advisory-board-ticker__track,
.editor-styles-wrapper .cw-advisory-board-ticker__track {
  display: flex;
  gap: var(--cw-advisory-card-gap);
  width: max-content;
  will-change: transform;
  animation: cw-advisory-board-ticker-scroll var(--cw-advisory-ticker-duration)
    linear infinite;
  animation-play-state: running;
}

.cw-advisory-board-ticker--preview .cw-advisory-board-ticker__track,
.editor-styles-wrapper .cw-advisory-board-ticker__track {
  animation: none;
}

.cw-advisory-board-ticker__marquee:hover .cw-advisory-board-ticker__track,
.cw-advisory-board-ticker__marquee:focus-within
  .cw-advisory-board-ticker__track,
.cw-advisory-board-ticker__marquee.is-paused .cw-advisory-board-ticker__track,
.editor-styles-wrapper
  .cw-advisory-board-ticker__marquee:hover
  .cw-advisory-board-ticker__track,
.editor-styles-wrapper
  .cw-advisory-board-ticker__marquee:focus-within
  .cw-advisory-board-ticker__track,
.editor-styles-wrapper
  .cw-advisory-board-ticker__marquee.is-paused
  .cw-advisory-board-ticker__track {
  animation-play-state: paused;
}

.cw-advisory-board-ticker__list,
.editor-styles-wrapper .cw-advisory-board-ticker__list {
  display: flex;
  flex: 0 0 auto;
  gap: var(--cw-advisory-card-gap);
  width: max-content;
  margin: 0;
  padding: 0;
  list-style: none;
}

.cw-advisory-board-ticker__item,
.editor-styles-wrapper .cw-advisory-board-ticker__item {
  flex: 0 0 auto;
  margin: 0;
}

.cw-advisory-board-ticker__card,
.editor-styles-wrapper .cw-advisory-board-ticker__card {
  position: relative;
  width: var(--cw-advisory-card-size);
  height: var(--cw-advisory-card-size);
  perspective: 1600px;
}

.cw-advisory-board-ticker__card-inner,
.editor-styles-wrapper .cw-advisory-board-ticker__card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--cw-advisory-card-radius);
  transform-style: preserve-3d;
  transition:
    transform 0.75s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.3s ease;
  box-shadow: 0 22px 44px rgba(12, 29, 79, 0.16);
}

.cw-advisory-board-ticker__card:hover .cw-advisory-board-ticker__card-inner,
.cw-advisory-board-ticker__card:focus-within
  .cw-advisory-board-ticker__card-inner,
.cw-advisory-board-ticker__card.is-flipped
  .cw-advisory-board-ticker__card-inner,
.editor-styles-wrapper
  .cw-advisory-board-ticker__card:hover
  .cw-advisory-board-ticker__card-inner,
.editor-styles-wrapper
  .cw-advisory-board-ticker__card:focus-within
  .cw-advisory-board-ticker__card-inner,
.editor-styles-wrapper
  .cw-advisory-board-ticker__card.is-flipped
  .cw-advisory-board-ticker__card-inner {
  transform: rotateY(180deg);
  box-shadow: 0 28px 52px rgba(12, 29, 79, 0.2);
}

.cw-advisory-board-ticker__face,
.editor-styles-wrapper .cw-advisory-board-ticker__face {
  position: absolute;
  inset: 0;
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: var(--cw-advisory-card-radius);
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.cw-advisory-board-ticker__face--front,
.editor-styles-wrapper .cw-advisory-board-ticker__face--front {
  background: #dce6ff;
}

.cw-advisory-board-ticker__face--back,
.editor-styles-wrapper .cw-advisory-board-ticker__face--back {
  align-items: flex-end;
  background:
    linear-gradient(
      180deg,
      rgba(16, 44, 95, 0.1) 0%,
      rgba(16, 44, 95, 0.18) 100%
    ),
    linear-gradient(180deg, #2849c8 0%, #5a5dc8 48%, #ee6d41 100%);
  color: #ffffff;
  transform: rotateY(180deg);
}

.cw-advisory-board-ticker__image,
.editor-styles-wrapper .cw-advisory-board-ticker__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cw-advisory-board-ticker__content,
.editor-styles-wrapper .cw-advisory-board-ticker__content {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  width: 100%;
  padding: 1.45rem;
}

.cw-advisory-board-ticker__name,
.editor-styles-wrapper .cw-advisory-board-ticker__name {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.8rem, 1.55rem + 0.45vw, 2.2rem);
  line-height: 0.95;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.cw-advisory-board-ticker__title,
.editor-styles-wrapper .cw-advisory-board-ticker__title {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--cw-color-white-96);
  font-family: var(--cw-font-display);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.cw-advisory-board-ticker__organization,
.editor-styles-wrapper .cw-advisory-board-ticker__organization {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  color: var(--cw-color-white-82);
  font-family: var(--cw-font-body);
  font-size: 0.94rem;
  font-weight: 600;
  line-height: 1.3;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.cw-advisory-board-ticker__empty,
.editor-styles-wrapper .cw-advisory-board-ticker__empty {
  margin: 0;
  color: var(--cw-color-muted);
  text-align: center;
}

@keyframes cw-advisory-board-ticker-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 1199px) {
  .cw-advisory-board-ticker,
  .editor-styles-wrapper .cw-advisory-board-ticker {
    --cw-advisory-card-gap: 1rem;
    --cw-advisory-card-size: min(
      300px,
      calc((100vw - 2.75rem - (var(--cw-advisory-card-gap) * 3)) / 4)
    );
  }

  .cw-advisory-board-ticker__content,
  .editor-styles-wrapper .cw-advisory-board-ticker__content {
    padding: 1.1rem;
  }

  .cw-advisory-board-ticker__title,
  .editor-styles-wrapper .cw-advisory-board-ticker__title {
    font-size: 0.9rem;
  }

  .cw-advisory-board-ticker__organization,
  .editor-styles-wrapper .cw-advisory-board-ticker__organization {
    font-size: 0.84rem;
  }
}

@media (max-width: 960px) {
  .cw-advisory-board-ticker,
  .editor-styles-wrapper .cw-advisory-board-ticker {
    --cw-advisory-card-gap: 0.9rem;
    --cw-advisory-card-size: calc(
      (100vw - 2.5rem - (var(--cw-advisory-card-gap) * 2)) / 3
    );
  }
}

@media (max-width: 781px) {
  .cw-advisory-board-ticker,
  .editor-styles-wrapper .cw-advisory-board-ticker {
    --cw-advisory-card-gap: 0.8rem;
    --cw-advisory-card-size: calc(
      (100vw - 2.25rem - var(--cw-advisory-card-gap)) / 2
    );
  }

  .cw-advisory-board-ticker__marquee,
  .editor-styles-wrapper .cw-advisory-board-ticker__marquee {
    padding-inline: 0.75rem;
  }

  .cw-advisory-board-ticker__content,
  .editor-styles-wrapper .cw-advisory-board-ticker__content {
    padding: 1rem;
  }

  .cw-advisory-board-ticker__name,
  .editor-styles-wrapper .cw-advisory-board-ticker__name {
    font-size: clamp(1.28rem, 1.1rem + 0.7vw, 1.65rem);
  }

  .cw-advisory-board-ticker__title,
  .editor-styles-wrapper .cw-advisory-board-ticker__title {
    font-size: 0.82rem;
    -webkit-line-clamp: 3;
  }

  .cw-advisory-board-ticker__organization,
  .editor-styles-wrapper .cw-advisory-board-ticker__organization {
    font-size: 0.78rem;
    -webkit-line-clamp: 2;
  }

  .cw-advisory-board-ticker__link,
  .editor-styles-wrapper .cw-advisory-board-ticker__link {
    padding: 0.62rem 0.9rem 0.66rem;
    font-size: 0.72rem;
  }
}


/* ============================================================
   12. BOARD-MEMBERS BANNER
   ============================================================ */

.cw-board-members-banner,
.editor-styles-wrapper .cw-board-members-banner {
  padding: 48px 1rem 1rem;
}

.cw-board-members-banner__title {
  font-family: var(--cw-font-display);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 12px;
  line-height: 1.1;
}

a.cw-board-members-banner__link {
  display: inline-block;
  font-family: var(--cw-font-body);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--cw-color-orange-bright);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cw-board-members-banner__link:hover {
  color: #ffffff;
}

/* ============================================================
   13. STAT BANNER
   ============================================================ */

.cw-stat-banner,
.editor-styles-wrapper .cw-stat-banner {
  padding: 12px 20px;
}

.cw-stat-banner__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.cw-stat-banner__item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ffffff;
  font-family: var(--cw-font-display);
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  white-space: nowrap;
}

.cw-stat-banner__item::before {
  content: "\2713";
  font-size: 1rem;
  line-height: 1;
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .cw-stat-banner__list {
    gap: 6px 20px;
  }

  .cw-stat-banner__item {
    font-size: 0.875rem;
    width: calc(50% - 10px);
    text-align: left;
    white-space: normal;
  }
}

/* ============================================================
   14. PLAN YOUR WEEK BANNER
   ============================================================ */

.cw-plan-week,
.editor-styles-wrapper .cw-plan-week {
  background: linear-gradient(
    180deg,
    rgba(248, 105, 26, 1) 0%,
    rgba(244, 64, 51, 1) 100%
  );
  padding: 1.65rem 0;
}

.cw-plan-week__inner,
.editor-styles-wrapper .cw-plan-week__inner {
  max-width: var(--cw-shell-width);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.cw-plan-week__icon,
.editor-styles-wrapper .cw-plan-week__icon {
  flex-shrink: 0;
  width: 4rem;
  margin: 0;
}

.cw-plan-week__icon img {
  width: 100%;
  height: auto;
  display: block;
}

.cw-plan-week__text,
.editor-styles-wrapper .cw-plan-week__text {
  font-family: var(--cw-font-body);
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.4;
  color: #ffffff;
  margin: 0;
}

/* ============================================================
   15. FUTURE OF COMMUNICATIONS CONFERENCE
   ============================================================ */

.cw-focc {
  position: relative;
  background-image:
    url("https://www.commsweek.com/wp-content/uploads/2026/04/Mask-Group-143_compressed.webp"),
    linear-gradient(90deg, #2342c9 0%, #f27045 100%);
  background-size: cover;
  background-position: center center;
  padding-bottom: 10rem;
}

.cw-focc__header {
  padding: 3rem 0 0;
}
.cw-focc__eyebrow {
  font-size: 1.2rem;
}
.cw-focc__eyebrow .cw-icon {
  margin: 0 0.25rem;
  vertical-align: middle;
}

.cw-focc__title {
  font-family: var(--cw-font-display);
  font-size: 4.4rem;
  font-weight: 600;
  line-height: 1.15;
  text-transform: uppercase;
  color: #ffffff;
  margin: 2rem auto 2rem;
  max-width: 800px;
}

.cw-focc__meta {
  justify-content: center;
  color: #ffffff;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin: 0 0 2rem;
}

.cw-focc__meta .cw-inline-meta__item {
  color: #ffffff;
  font-size: 1.3rem;
}

/* .cw-focc__meta .cw-inline-meta__item svg {
  height: 1em;
  width: 1em;
} */

.cw-focc__body {
  padding: 0 0 2rem;
}
.cw-focc__columns {
  gap: 2.5rem;
  align-items: flex-start;
}

.cw-focc__lead,
.editor-styles-wrapper .cw-focc__lead {
  font-family: var(--cw-font-body);
  line-height: 1.5;
  color: var(--cw-color-white-88);
  margin: 0 0 1rem;
}

.cw-focc__lead em {
  font-style: italic;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* CTA card */

.cw-focc__cta-card {
  background: rgba(255, 255, 255, 0.66);
  border-radius: 25px;
  padding: 2rem 2rem 1.8rem;
  text-align: center;
}

.cw-focc__cta-heading {
  font-family: var(--cw-font-display);
  font-size: 1.8rem;
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1.1;
  margin: 0 0 1rem;
}

.cw-focc__cta-sub {
  font-family: var(--cw-font-body);
  font-size: 1.4rem;
  margin: 0 0 1.4rem;
}

/* Photo gallery */

.cw-focc__gallery {
  position: absolute;
  overflow-y: visible;
  width: 100%;
  margin: 0 auto 10rem;
  overflow-x: hidden;
}

.cw-focc__gallery-inner {
  display: flex;
  gap: 1rem;
  align-items: flex-end;
  width: 100%;
  max-width: 1920px;
}

.cw-focc__photo {
  position: relative;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  margin: 0;
}

.cw-focc__photo img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  /* height: auto;*/
}
body.ragan-header-footer .cw-focc__photo img {
  max-width: 100%;
  height: 100%;
}

.cw-focc__photo--tall {
  width: 22%;
  height: 16rem;
}
.cw-focc__photo--short {
  width: 18%;
  height: 11rem;
  align-self: center;
}
.cw-focc__photo--feature {
  width: 32%;
  height: 18rem;
}

/* Mobile */
@media (max-width: 600px) {
  .cw-focc {
    text-align: left;
    background-image: linear-gradient(
      301deg,
      rgba(248, 105, 26, 1) 0%,
      rgba(255, 117, 59, 1) 18%,
      rgba(145, 92, 140, 1) 48%,
      rgba(34, 60, 193, 1) 84%
    );
  }
  .cw-focc__eyebrow {
    font-size: 0.75rem;
    line-height: 1rem;
  }
  .cw-focc__eyebrow .cw-icon {
    margin: 0;
  }
  .cw-focc .has-text-align-center {
    text-align: left;
  }
  .cw-focc h2.cw-focc__title {
    font-size: 2.25rem;
    line-height: 0.9;
    margin: 1.25rem auto 1.5rem;
  }

  .cw-focc .cw-focc__meta,
  .cw-focc .cw-focc__meta .cw-inline-meta,
  .cw-focc .cw-focc__meta .cw-inline-meta .cw-inline-meta__item {
    font-size: 0.75rem;
    line-height: 1rem;
    margin: 0 0 1.5rem;
  }

  .cw-focc__meta .cw-inline-meta__item {
    font-size: 0.75rem;
  }
}

/* ============================================================
   16. WHY COMMUNICATORS CHOOSE COMMSWEEK
   ============================================================ */

.cw-why-choose {
  background: #ffffff;
  padding: 4.5rem 0 4rem;
  margin-top: 9rem;
}

.cw-why-choose__inner {
  max-width: var(--cw-shell-width);
  margin: 0 auto;
}

.cw-why-choose__title {
}

.cw-why-choose__cards {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 1.1rem;
  flex-wrap: nowrap;
}

.cw-reason-card {
  flex: 1;
  min-width: 0;
  border-radius: 16px;
  padding: 0;
}

.cw-reason-card > .wp-block-group__inner-container {
  padding: 1.8em;
}

.cw-reason-card p {
  font-family: var(--cw-font-body);
  font-size: 1.3rem;
  font-weight: 400;
  line-height: 1.25;
  color: #ffffff;
  margin: 0;
  text-align: center;
}

.cw-reason-card--navy {
  background-color: var(--cw-color-blue-deep);
}
.cw-reason-card--orange {
  background: var(--cw-color-orange);
}
.cw-reason-card--blue {
  background-color: var(--cw-color-blue);
}
.cw-reason-card--purple {
  background-color: var(--cw-color-purple);
}

.cw-reason-card:nth-child(even) {
  margin-top: 4.25rem;
}

/* ============================================================
   16b. GLOBAL EXPERIENCE
   ============================================================ */

.cw-global-experience,
.editor-styles-wrapper .cw-global-experience {
  background: #ffffff;
  padding: 3rem 0 0.25em;
}

.cw-global-experience__inner,
.editor-styles-wrapper .cw-global-experience__inner {
  max-width: var(--cw-shell-width);
  margin: 0 auto;
}

.cw-global-experience__eyebrow,
.editor-styles-wrapper .cw-global-experience__eyebrow {
  margin-bottom: 0.6rem;
}

.cw-global-experience__title,
.editor-styles-wrapper .cw-global-experience__title {
  margin-bottom: 1.2rem;
}
.cw-global-experience__title + p,
.editor-styles-wrapper .cw-global-experience__title + p {
  margin-bottom: clamp(1.75rem, 2.4vw, 2.5rem);
}

.cw-global-experience__image,
.editor-styles-wrapper .cw-global-experience__image {
  margin: 0;
}

.cw-global-experience__image img,
.editor-styles-wrapper .cw-global-experience__image img {
  display: block;
  width: 100%;
  height: auto;
}

/* Homepage gallery */
.cw-homepage-gallery-container {
  padding: 0.25rem 0.25rem;
}

/* ============================================================
   17. SPONSORS & PARTNERS  (see §3d for shared .cw-logo-grid)
   ============================================================ */
#sponsors {
  padding: 3rem 0 4rem;
}

.cw-site-main #sponsors .wp-block-group__inner-container,
.editor-styles-wrapper #sponsors .wp-block-group__inner-container {
  width: min(calc(100% - 2.5rem), var(--cw-shell-width));
  max-width: var(--cw-shell-width);
  margin-right: auto;
  margin-left: auto;
}

/* ============================================================
   18. MODAL
   ============================================================ */

.modal.micromodal-slide .modal__overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 101;
}

.modal.micromodal-slide .modal__container {
  background-color: #fff;
  padding: 30px;
  max-width: 800px;
  max-height: 90vh;
  border-radius: 4px;
  overflow-y: auto;
  box-sizing: border-box;
  margin: 0 30px;
}

.modal.micromodal-slide .modal__header {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  z-index: 10;
}

.modal.micromodal-slide .modal__title {
  margin: 0;
  font-weight: 600;
  font-size: 1.75rem;
  line-height: 1.25;
  color: var(--cw-color-orange-bright);
  box-sizing: border-box;
}

.modal.micromodal-slide .modal__close {
  background: transparent;
  border: 0;
}

.modal.micromodal-slide .modal__header .modal__close::before {
  content: "✕";
}

.modal.micromodal-slide .modal__content {
  margin-top: 0.2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0, 0, 0, 0.8);
}

.modal.micromodal-slide .modal__btn {
  font-size: 0.875rem;
  padding: 0.5rem 1rem;
  background-color: #e6e6e6;
  color: rgba(0, 0, 0, 0.8);
  border-radius: 0.25rem;
  border: none;
  cursor: pointer;
  appearance: button;
  -webkit-appearance: button;
  line-height: 1.15;
  margin: 0;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: transform 0.25s ease-out;
}

.modal.micromodal-slide .modal__btn:focus,
.modal.micromodal-slide .modal__btn:hover {
  transform: scale(1.05);
}

.modal.micromodal-slide .modal__btn-primary {
  background-color: #4d5b8f;
  color: #fff;
}

.modal.micromodal-slide.modalperson .modal__content {
  font-size: 18px;
}

.modal.micromodal-slide.modalperson .modal__personinfo {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  margin: -30px 0 30px;
}

.modal.micromodal-slide.modalperson
  .modal__personinfo
  .peoplegrid_headshot
  img {
  width: 150px;
}

.modal.micromodal-slide.modalperson .modal__personinfo > div:nth-child(2) {
  padding-left: 30px;
}

/* Animations */
@keyframes mmfadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes mmfadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes mmslideIn {
  from {
    transform: translateY(15%);
  }
  to {
    transform: translateY(0);
  }
}
@keyframes mmslideOut {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10%);
  }
}

.micromodal-slide {
  display: none;
}
.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
  animation: mmfadeIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden="false"] .modal__container {
  animation: mmslideIn 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden="true"] .modal__overlay {
  animation: mmfadeOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}
.micromodal-slide[aria-hidden="true"] .modal__container {
  animation: mmslideOut 0.3s cubic-bezier(0, 0, 0.2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

/* ============================================================
   19. PEOPLE GRID
   ============================================================ */

.cw-peoplegrid-group {
  padding: 3rem 0;
}

.peoplegrid__wp-block {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
}

.peoplegrid__wp-block > .peoplegrid_person {
  flex: 0 0 auto;
  margin: 25px 25px 0 0;
  width: calc(25% - 19px);
  padding: 14px;
  text-align: center;
  background-color: #efefef;
}

.peoplegrid_person {
  border: solid 3px #efefef;
}
.peoplegrid_person:hover {
  border: solid 3px #0b4eaf;
}

.peoplegrid__wp-block > .peoplegrid_person .peoplegrid_headshot {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 15px;
}

.peoplegrid__wp-block > .peoplegrid_person .peoplegrid_headshot::after {
  content: "";
  display: block;
  padding-bottom: 100%;
}

.peoplegrid__wp-block > .peoplegrid_person .peoplegrid_headshot > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  cursor: pointer;
}

.peoplegrid__wp-block > .peoplegrid_person:nth-child(4n) {
  margin-right: 0;
}

.peoplegrid__wp-block > .peoplegrid_person .peoplegrid_name {
  text-transform: uppercase;
  font-weight: 900;
  cursor: pointer;
}

.peoplegrid__wp-block > .peoplegrid_person .peoplegrid_name a,
.peoplegrid__wp-block > .peoplegrid_person .peoplegrid_name a:visited {
  color: var(--cw-color-orange-bright);
  text-decoration: none;
}

.peoplegrid__wp-block > .peoplegrid_person .peoplegrid_name a:hover,
.peoplegrid__wp-block > .peoplegrid_person .peoplegrid_name a:focus {
  color: var(--cw-color-orange);
}

.peoplegrid__wp-block > .peoplegrid_person .peoplegrid_title {
  font-weight: 500;
  font-style: italic;
  line-height: normal;
  margin-bottom: 0;
}

.peoplegrid__wp-block > .peoplegrid_person .peoplegrid_organization {
  font-weight: 900;
}

.peoplegrid__wp-block > .peoplegrid_person .peoplegrid_bio {
  cursor: pointer;
  border: none;
  background-color: transparent;
  color: white;
  padding-left: 0;
}

@media (max-width: 991px) {
  .peoplegrid.peoplegrid__wp-block {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    justify-content: stretch;
  }

  .peoplegrid.peoplegrid__wp-block > .peoplegrid_person {
    width: auto !important;
    min-width: 0;
    margin: 0 !important;
    padding: 14px !important;
  }

  .peoplegrid.peoplegrid__wp-block > .peoplegrid_person .peoplegrid_headshot {
    margin-bottom: 12px;
  }
}

@media (max-width: 767px) {
  .peoplegrid.peoplegrid__wp-block {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .peoplegrid.peoplegrid__wp-block > .peoplegrid_person {
    padding: 14px !important;
  }

  .peoplegrid.peoplegrid__wp-block > .peoplegrid_person .peoplegrid_headshot {
    margin-bottom: 10px;
  }
}

@media (max-width: 480px) {
  .peoplegrid.peoplegrid__wp-block {
    gap: 10px;
  }

  .peoplegrid.peoplegrid__wp-block > .peoplegrid_person {
    padding: 14px !important;
  }
}

/* ============================================================
   19b. MEET THE TEAM
   ============================================================ */

.cw-meettheteam {
  margin: 3rem 0;
}

.meettheteam {
  padding: 1em 0;
}

body .meettheteam .wp-block-columns {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  gap: 0;
  justify-content: center;
}

body .meettheteam .wp-block-columns .wp-block-column {
  color: var(--cw-color-blue-deep);
}

body .meettheteam .wp-block-columns .wp-block-column strong {
  color: var(--cw-color-orange);
}

@media (max-width: 781px) {
  body .meettheteam .wp-block-columns .wp-block-column {
    flex-basis: 46% !important;
    border-bottom: solid 1px var(--cw-color-border);
    padding-top: 20px !important;
  }
}

@media (min-width: 781px) {
  body .meettheteam .wp-block-columns {
    border-bottom: solid 1px var(--cw-color-border);
    padding-bottom: 20px;
    margin-bottom: 20px !important;
  }

  body .meettheteam .wp-block-columns:last-child {
    padding-bottom: 0;
    border-bottom: none;
    margin-bottom: 0 !important;
  }

  body .meettheteam .wp-block-columns .wp-block-column {
    border-right: solid 1px var(--cw-color-border);
    padding: 20px;
  }

  body .meettheteam .wp-block-columns .wp-block-column:last-child {
    border-right: none;
  }

  body .meettheteam .wp-block-columns .wp-block-column p {
    margin-bottom: 0;
  }

  @media (max-width: 781px) {
    body .meettheteam .wp-block-columns .wp-block-column {
      border-right: none;
    }
  }
}

/* ============================================================
   20. NEWSLETTER SUBSCRIBE
   ============================================================ */

.cw-site-main #subscribe {
  background-repeat: no-repeat;
  font-weight: 600;
  border-top: none;
  border-bottom: none;
  position: relative;
  padding: 3rem 0;
}
#subscribe > div > div {
  margin-bottom: 0;
}
.cw-site-main #subscribe h3 {
  font-family: var(--cw-font-body);
}

#subscribe .wp-block-button__link {
  background-color: var(--cw-color-blue);
}

/* Arrow icon pseudo-element (shared by footer + advisory link) */
#subscribe .wp-block-button__link::before,
.editor-styles-wrapper #subscribe .wp-block-button__link::before {
  content: "";
  display: inline-block;
  width: 1.05rem;
  height: 1.05rem;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath fill='%23ffffff' d='M528 320C528 434.9 434.9 528 320 528C205.1 528 112 434.9 112 320C112 205.1 205.1 112 320 112C434.9 112 528 205.1 528 320zM64 320C64 461.4 178.6 576 320 576C461.4 576 576 461.4 576 320C576 178.6 461.4 64 320 64C178.6 64 64 178.6 64 320zM451.3 331.3C457.5 325.1 457.5 314.9 451.3 308.7L347.3 204.7C342.7 200.1 335.8 198.8 329.9 201.2C324 203.6 320 209.5 320 216L320 288L216 288C202.7 288 192 298.7 192 312L192 328C192 341.3 202.7 352 216 352L320 352L320 424C320 430.5 323.9 436.3 329.9 438.8C335.9 441.3 342.8 439.9 347.3 435.3L451.3 331.3z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Arrow for input[type=submit] — pseudo-elements don't render on replaced elements,
   so we inject via the parent .wp-block-buttons wrapper instead */
#subscribe .wp-block-buttons:has(input.wp-block-button__link),
.editor-styles-wrapper
  #subscribe
  .wp-block-buttons:has(input.wp-block-button__link) {
  position: relative;
  display: inline-flex;
  align-items: center;
}

#subscribe .wp-block-buttons:has(input.wp-block-button__link)::before,
.editor-styles-wrapper
  #subscribe
  .wp-block-buttons:has(input.wp-block-button__link)::before {
  content: "";
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  width: 1.05rem;
  height: 1.05rem;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 640 640'%3E%3Cpath fill='%23ffffff' d='M528 320C528 434.9 434.9 528 320 528C205.1 528 112 434.9 112 320C112 205.1 205.1 112 320 112C434.9 112 528 205.1 528 320zM64 320C64 461.4 178.6 576 320 576C461.4 576 576 461.4 576 320C576 178.6 461.4 64 320 64C178.6 64 64 178.6 64 320zM451.3 331.3C457.5 325.1 457.5 314.9 451.3 308.7L347.3 204.7C342.7 200.1 335.8 198.8 329.9 201.2C324 203.6 320 209.5 320 216L320 288L216 288C202.7 288 192 298.7 192 312L192 328C192 341.3 202.7 352 216 352L320 352L320 424C320 430.5 323.9 436.3 329.9 438.8C335.9 441.3 342.8 439.9 347.3 435.3L451.3 331.3z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  z-index: 1;
}

#subscribe input.wp-block-button__link {
  padding-left: 2.4rem;
}
# .cw-site-main #subscribe .wp-block-columns {
  align-items: center;
}

.cw-site-main #subscribe .wp-block-group__inner-container,
.editor-styles-wrapper #subscribe .wp-block-group__inner-container {
  width: min(calc(100% - 2.5rem), var(--cw-shell-width));
  max-width: var(--cw-shell-width);
  margin-right: auto;
  margin-left: auto;
}

form#subscribetonewsletterform {
  white-space: nowrap;
  text-align: left;
  display: flex;
  justify-content: space-between;
}

form#subscribetonewsletterform input {
  border: solid 1px #dbdbdb;
  border-radius: 0;
  vertical-align: middle;
}

form#subscribetonewsletterform .wp-block-buttons {
  display: inline-block;
  margin-left: auto;
}
form#subscribetonewsletterform .wp-block-buttons .wp-block-buttons {
  border: 0;
  margin-left: 20px;
}

.cw-site-main form .wp-block-buttons {
  padding: 0;
  vertical-align: baseline;
}

form#subscribetonewsletterform,
form#subscribetonewsletterform,
form#subscribetonewsletterform,
form#subscribetonewsletterform,
form#subscribetonewsletterform,
form#subscribetonewsletterform,
form#subscribetonewsletterform {
  white-space: nowrap;
  text-align: left;
}

form#subscribetonewsletterform input#email,
form#subscribetonewsletterform input#email,
form#subscribetonewsletterform input#email,
form#subscribetonewsletterform input#email,
form#subscribetonewsletterform input#email,
form#subscribetonewsletterform input#email,
form#subscribetonewsletterform input#email,
form#subscribetonewsletterform input#email,
form#subscribetonewsletterform input#email,
form#subscribetonewsletterform input#email {
  border: none;
  background: transparent;
  color: #fff;
  border-bottom: solid 1px #fff;
  padding-left: 0.5em;
  padding-top: 0;
  padding-bottom: 0.25em;
  width: 100%;
  max-width: 300px;
}

form#subscribetonewsletterform input#email::placeholder,
form#subscribetonewsletterform input#email::placeholder,
form#subscribetonewsletterform input#email::placeholder,
form#subscribetonewsletterform input#email::placeholder,
form#subscribetonewsletterform input#email::placeholder,
form#subscribetonewsletterform input#email::placeholder,
form#subscribetonewsletterform input#email::placeholder {
  color: #fff;
  opacity: 1;
}

form#subscribetonewsletterform,
form#subscribetonewsletterform {
  white-space: nowrap;
  text-align: left;
}
@media (max-width: 767px) {
  form#subscribetonewsletterform input#email,
  form#subscribetonewsletterform input#email {
    max-width: 50%;
  }
}

form#subscribetonewsletterform input#email::placeholder,
form#subscribetonewsletterform input#email::placeholder {
  opacity: 1;
  font-weight: 500;
}

.cw-site-main .bg_blue_btn input {
  color: #fff;
  background-color: #2d38b3;
}

.cw-site-main .bg_blue_btn input:hover {
  color: #fff;
  background-color: #003a70;
}

.cw-site-main .newsletter-form.has-text-align-center {
  text-align: center;
}

.cw-site-main #subscribe h3.wp-block-heading,
.editor-styles-wrapper #subscribe h3.wp-block-heading {
  font-size: 1.5em !important;
}

@media (min-width: 768px) {
  .cw-site-main #subscribe h3.wp-block-heading,
  .editor-styles-wrapper #subscribe h3.wp-block-heading {
    font-size: 2rem !important;
  }
}

@media (max-width: 767px) {
  form#subscribetonewsletterform input#email,
  form#subscribetonewsletterform input#email {
    max-width: 50%;
  }
}

@media (max-width: 558px) {
  form#subscribetonewsletterform input#email {
    max-width: 180px;
  }
  form#subscribetonewsletterform {
    text-align: center;
  }
}

@media (max-width: 361px) {
  form#subscribetonewsletterform input#email {
    font-size: 12px;
  }
}

/* ============================================================
   21. HASHTAG & SOCIAL
   ============================================================ */

.cw-site-main .hashandsocialsection {
  background-image: linear-gradient(
    90deg,
    rgb(255, 132, 52) 0%,
    rgb(252, 112, 65) 10%,
    rgb(207, 102, 94) 25%,
    rgb(129, 88, 152) 50%,
    rgb(23, 69, 228) 83%,
    rgb(32, 61, 196) 100%
  );
  background-size: cover;
  background-repeat: no-repeat;
  padding: 10px;
}

.cw-site-main .hashandsocialsection a {
  color: #fff;
  margin-right: 10px;
}
.cw-site-main .hashandsocialsection a:hover {
  color: #dbdbdb;
}

.cw-site-main #hashsocials {
  border-right: solid 1px #fff;
  padding-right: 30px;
  gap: 30px;
  font-size: 3rem;
  padding: clamp(10px, 1.5vw, 20px);
}

.cw-site-main #hashsocials p {
  margin-bottom: 0;
  background: var(--cw-gradient-full);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  order: 1;
  font-size: 1.2em;
}

.cw-site-main #hashsocials:after {
  content: "";
  order: 2;
  display: inline-block;
  width: 1px;
  height: 1em;
  background-color: var(--cw-color-blue-vibrant);
}

.wp-block-group.cw-divider-before-socialicons {
  order: 3;
}
.wp-block-group.cw-divider-before-socialicons a {
  display: inline-flex;
  align-items: center;
}

.wp-block-group.cw-divider-before-socialicons svg {
  height: 1em;
  width: 1em;
}

@media (max-width: 781px) {
  .cw-site-main #hashsocials {
    padding-right: 0;
    border-right: none;
    text-align: center;
    flex-direction: column;
    align-items: center;
  }

  .cw-site-main #hashsocials:after {
    display: none;
  }

  .cw-site-main #hashsocials p.has-text-align-right {
    text-align: center !important;
  }

  .cw-site-main .hashandsocialsection {
    text-align: center;
    background-image: none;
    background-color: var(--cw-color-orange-bright);
    gap: 0;
    padding: 30px 10px;
  }
}

/* ============================================================
   22. RESPONSIVE OVERRIDES
   ============================================================ */

/* ── ≤991px ── */
@media (max-width: 991px) {
  .cw-why-choose {
    margin-top: 5rem;
    padding: 3.5rem 0 3rem;
  }

  .cw-why-choose__title {
    font-size: 2.2rem;
    margin-bottom: 2.2rem;
  }

  .cw-why-choose__cards,
  .cw-why-choose__cards[class*="wp-container-core-group-is-layout"] {
    flex-wrap: wrap !important;
    gap: 1rem;
    justify-content: center;
  }

  .cw-reason-card {
    flex: 0 0 calc(33.333% - 0.7rem);
  }
  .cw-reason-card:nth-child(4),
  .cw-reason-card:nth-child(5) {
    flex: 0 0 calc(50% - 0.5rem);
  }
  .cw-reason-card p {
    font-size: 1rem;
  }
  .cw-reason-card:nth-child(odd),
  .cw-reason-card:nth-child(even) {
    margin-top: 0;
  }

  .cw-feature-card__media,
  .editor-styles-wrapper .cw-feature-card__media {
    min-height: 13rem;
  }

  .cw-mid-nav__cta,
  .editor-styles-wrapper .cw-mid-nav__cta {
    justify-content: flex-start;
    margin-left: auto;
  }
}

/* ── 768–991px ── */
@media (min-width: 768px) and (max-width: 991px) {
  .cw-why-choose__cards {
    gap: 0.8rem;
  }
  .cw-reason-card {
    flex: 0 0 calc(33.333% - 0.6rem);
  }
  .cw-reason-card:nth-child(4),
  .cw-reason-card:nth-child(5) {
    flex: 0 0 calc(50% - 0.4rem);
  }
  .cw-reason-card p {
    font-size: 0.95rem;
  }
}

/* ── ≤781px ── */
@media (max-width: 781px) {
  .cw-featured-schedule__grid,
  .editor-styles-wrapper .cw-featured-schedule__grid {
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 14rem), 1fr));
  }

  .cw-schedule-card__body,
  .editor-styles-wrapper .cw-schedule-card__body {
    min-height: 11rem;
  }
}

/* ── 768–1192px: tablet mid-nav ──
   The full menu can't fit in a single row at this viewport range, so the
   menu becomes a touch-scrollable strip while the CTA stays pinned right.
   ── */
@media (min-width: 768px) and (max-width: 1192px) {
  .cw-mid-nav__inner,
  .editor-styles-wrapper .cw-mid-nav__inner {
    gap: 0;
  }

  /* Menu scrolls horizontally; CTA is outside the scroll area */
  .cw-mid-nav__menu,
  .editor-styles-wrapper .cw-mid-nav__menu {
    flex: 1 1 0;
    min-width: 0;
    overflow-x: auto;
    scrollbar-width: none;
    /* Fade edges to hint at scrollability */
    -webkit-mask-image: linear-gradient(
      90deg,
      transparent 0,
      #000 2rem,
      #000 90%,
      transparent 100%
    );
    mask-image: linear-gradient(
      90deg,
      transparent 0,
      #000 2rem,
      #000 90%,
      transparent 100%
    );
    padding: 0 1.25rem;
    gap: 0 1rem;
  }

  .cw-mid-nav__menu::-webkit-scrollbar,
  .editor-styles-wrapper .cw-mid-nav__menu::-webkit-scrollbar {
    display: none;
  }

  .cw-mid-nav__menu a,
  .editor-styles-wrapper .cw-mid-nav__menu a {
    font-size: 0.78rem;
  }

  /* CTA stays visually separated from the scroll area */
  .cw-mid-nav__cta,
  .editor-styles-wrapper .cw-mid-nav__cta {
    flex-shrink: 0;
    margin-left: 0;
    padding-left: 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.15);
  }

  .cw-mid-nav__cta .wp-block-button__link,
  .editor-styles-wrapper .cw-mid-nav__cta .wp-block-button__link {
    padding: 0.55rem 1rem;
    font-size: 0.72rem;
    white-space: nowrap;
  }

  /* Center hero heading and subhead on tablet */
  .cw-hero__title,
  .cw-hero__subhead,
  .editor-styles-wrapper .cw-hero__title,
  .editor-styles-wrapper .cw-hero__subhead {
    text-align: center;
    justify-content: center;
  }
}

/* ── ≤767px ── */
@media (max-width: 767px) {
  .cw-site-main .alignwide {
    width: calc(100% - 2rem);
  }

  .cw-shell,
  .editor-styles-wrapper .cw-shell {
    width: calc(100% - 2rem);
  }

  .cw-hero,
  .editor-styles-wrapper .cw-hero {
    background-image: var(--cw-hero-background-image-mobile);
    background-position: center top;
    background-size: cover;
  }

  .cw-hero__meta,
  .cw-chip-row,
  .editor-styles-wrapper .cw-hero__meta,
  .editor-styles-wrapper .cw-chip-row {
    justify-content: flex-start;
  }

  .cw-hero__title,
  .cw-hero__subhead,
  .editor-styles-wrapper .cw-hero__title,
  .editor-styles-wrapper .cw-hero__subhead {
    text-align: center;
  }

  .cw-hero__title,
  .editor-styles-wrapper .cw-hero__title {
    display: block;
    justify-content: center;
    /* 7vw at 350px → ~24.5px; floor of 1.35rem keeps it legible at very small widths.
       "COMMUNICATIONS" still fits with room to spare at 350px. */
    font-size: clamp(1.35rem, 12vw, 2.7rem);
    line-height: 0.9;
  }

  .cw-hero__title-primary,
  .cw-hero__title-accent,
  .editor-styles-wrapper .cw-hero__title-primary,
  .editor-styles-wrapper .cw-hero__title-accent {
    display: block;
  }

  .cw-linked-pill,
  .editor-styles-wrapper .cw-linked-pill {
    justify-content: flex-start;
    flex-wrap: wrap;
    max-width: 100%;
    gap: 0.5rem;
    padding: 0.42rem 0.7rem;
    font-size: 0.62rem;
  }

  .cw-linked-pill__divider,
  .editor-styles-wrapper .cw-linked-pill__divider {
    height: 1rem;
  }

  .cw-feature-card__content,
  .editor-styles-wrapper .cw-feature-card__content {
    padding: 0.78rem 0.42rem 0.18rem 0.74rem;
  }

  .cw-inline-meta,
  .editor-styles-wrapper .cw-inline-meta {
    gap: 0.55rem 0.85rem;
    font-size: 0.76rem;
  }

  .cw-hero__subhead,
  .editor-styles-wrapper .cw-hero__subhead {
    font-size: clamp(0.95rem, 4.5vw, 1.25rem);
    line-height: 1;
    margin: 0.15rem 0 0.45rem;
  }

  .cw-button-row.is-content-justification-left,
  .editor-styles-wrapper .cw-button-row.is-content-justification-left {
    justify-content: center;
  }

  .cw-mid-nav,
  .editor-styles-wrapper .cw-mid-nav {
    display: none;
  }

  .cw-mid-nav__inner,
  .editor-styles-wrapper .cw-mid-nav__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0.75rem;
  }

  .cw-mid-nav__menu,
  .editor-styles-wrapper .cw-mid-nav__menu {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
    gap: 0.62rem 1rem;
  }

  .cw-mid-nav__menu::-webkit-scrollbar,
  .editor-styles-wrapper .cw-mid-nav__menu::-webkit-scrollbar {
    display: none;
  }

  .cw-mid-nav__cta,
  .editor-styles-wrapper .cw-mid-nav__cta {
    display: block;
    width: 100%;
  }

  .cw-mid-nav__cta .wp-block-button,
  .cw-mid-nav__cta .wp-block-button__link,
  .editor-styles-wrapper .cw-mid-nav__cta .wp-block-button,
  .editor-styles-wrapper .cw-mid-nav__cta .wp-block-button__link {
    display: flex;
    width: 100%;
  }

  .cw-feature-card,
  .editor-styles-wrapper .cw-feature-card {
    gap: 0.2rem;
    width: 100%;
    margin-top: 2rem;
    padding: 0.48rem;
    border-radius: 1.2rem;
  }

  .cw-feature-card__image-wrap,
  .cw-feature-card__image,
  .editor-styles-wrapper .cw-feature-card__image-wrap,
  .editor-styles-wrapper .cw-feature-card__image {
    min-height: 9.5rem;
  }

  .cw-chip,
  .cw-chip:link,
  .cw-chip:visited,
  .cw-site-main a.cw-chip,
  .cw-site-main a.cw-chip:link,
  .cw-site-main a.cw-chip:visited,
  .editor-styles-wrapper .cw-chip,
  .editor-styles-wrapper a.cw-chip {
    font-size: 0.6rem;
    padding: 0.2rem 0.35rem;
    min-height: 1rem;
    gap: 0.3rem;
  }

  .cw-chip-list,
  .editor-styles-wrapper .cw-chip-list {
    margin-top: 0.95rem;
    gap: 0.35rem;
  }

  .cw-pager-dots,
  .editor-styles-wrapper .cw-pager-dots {
    margin: 0.2rem;
  }

  .cw-description,
  .editor-styles-wrapper .cw-description {
    padding: 2.5rem 0 2rem;
  }

  .cw-description__intro,
  .editor-styles-wrapper .cw-description__intro {
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  .cw-description__title,
  .editor-styles-wrapper .cw-description__title {
    font-size: 2rem;
  }

  .cw-description__stats,
  .editor-styles-wrapper .cw-description__stats {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: stretch;
    gap: 1rem !important;
    padding-top: 0;
  }

  .cw-description__stats > *,
  .editor-styles-wrapper .cw-description__stats > * {
    flex: 0 0 calc(50% - 0.5rem) !important;
    min-width: 0;
  }

  .cw-stat-card > .wp-block-group__inner-container {
    padding: 1.4rem 0.75rem 1.2rem;
  }

  .cw-stat-card__icon,
  .editor-styles-wrapper .cw-stat-card__icon {
    width: 2.5rem;
  }

  .cw-stat-card__number,
  .editor-styles-wrapper .cw-stat-card__number {
    font-size: 1.5rem;
  }

  .cw-plan-week__inner,
  .editor-styles-wrapper .cw-plan-week__inner {
    gap: 1rem;
  }

  .cw-plan-week__icon,
  .editor-styles-wrapper .cw-plan-week__icon {
    width: 2.4rem;
  }

  .cw-plan-week__text,
  .editor-styles-wrapper .cw-plan-week__text {
    font-size: 1rem;
  }

  .cw-focc__header {
    padding: 2.5rem 0 0;
  }
  .cw-focc__title {
    font-size: 2rem;
  }
  .cw-focc__meta {
    margin-bottom: 1.5rem;
  }
  .cw-focc__columns {
    flex-direction: column;
    gap: 1.5rem;
  }
  .cw-focc__cta-card {
    padding: 1.6rem 1.2rem;
  }

  .cw-focc__gallery-inner {
    gap: 0.6rem;
  }
  .cw-focc__photo--tall {
    width: 28%;
    height: 9rem;
  }
  .cw-focc__photo--short {
    width: 22%;
    height: 7rem;
  }
  .cw-focc__photo--feature {
    width: 38%;
    height: 11rem;
  }

  .cw-why-choose {
    margin-top: 2.5rem;
    padding: 2rem 0 1.5rem;
  }

  .cw-eyebrow,
  .cw-why-choose__eyebrow,
  .editor-styles-wrapper .cw-eyebrow,
  .editor-styles-wrapper .cw-why-choose__eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.3em;
    margin-bottom: 0.75rem;
  }

  .cw-why-choose__title,
  .editor-styles-wrapper .cw-why-choose__title {
    font-size: 1.875rem;
    margin-bottom: 1.2rem;
    line-height: 1.2;
  }

  .cw-global-experience__title,
  .editor-styles-wrapper .cw-global-experience__title {
    margin-bottom: 1.2rem;
  }
  .cw-why-choose__cards,
  .cw-why-choose__cards[class*="wp-container-core-group-is-layout"] {
    flex-wrap: wrap !important;
    gap: 0.6rem;
    justify-content: center;
  }

  .cw-reason-card {
    flex: 0 0 calc(50% - 0.3rem);
  }
  .cw-reason-card:last-child {
    flex: 0 0 100%;
    max-width: calc(50% - 0.3rem);
  }

  .cw-reason-card > .wp-block-group__inner-container {
    padding: 1rem 0.75rem;
  }

  .cw-reason-card p {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  .cw-reason-card:nth-child(odd),
  .cw-reason-card:nth-child(even) {
    margin-top: 0;
  }
}

/* ── ≤640px ── */
@media (max-width: 640px) {
  .cw-site-main :where(h2),
  .editor-styles-wrapper :where(h2) {
    font-size: 2.4rem;
  }
  .cw-featured-schedule,
  .editor-styles-wrapper .cw-featured-schedule {
    padding: 3.1rem 0 3rem;
  }

  .cw-featured-schedule__inner,
  .editor-styles-wrapper .cw-featured-schedule__inner {
    width: min(calc(100% - 1.5rem), 1114px);
  }

  .cw-featured-schedule__grid,
  .editor-styles-wrapper .cw-featured-schedule__grid {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }

  .cw-schedule-card__media,
  .editor-styles-wrapper .cw-schedule-card__media {
    aspect-ratio: 1.58 / 1;
  }

  .cw-schedule-card__badge,
  .editor-styles-wrapper .cw-schedule-card__badge {
    font-size: 0.72rem;
  }

  .cw-schedule-card__body,
  .editor-styles-wrapper .cw-schedule-card__body {
    min-height: 0;
    padding: 1.15rem 0.95rem 0.9rem;
  }

  .cw-schedule-card__title,
  .editor-styles-wrapper .cw-schedule-card__title {
    font-size: clamp(1.08rem, 1rem + 0.4vw, 1.25rem);
  }

  .cw-schedule-card__date,
  .editor-styles-wrapper .cw-schedule-card__date {
    font-size: 1rem;
  }

  .cw-schedule-card__note,
  .editor-styles-wrapper .cw-schedule-card__note {
    font-size: 0.82rem;
  }

  .cw-schedule-card__actions .wp-block-button__link,
  .editor-styles-wrapper .cw-schedule-card__actions .wp-block-button__link {
    font-size: 0.95rem;
  }

  .cw-featured-schedule__footer .wp-block-button__link,
  .editor-styles-wrapper .cw-featured-schedule__footer .wp-block-button__link {
    width: 100%;
    font-size: 0.9rem;
    padding: 0.95rem 0.8rem;
  }
}

/* ── ≤480px ── */
@media (max-width: 480px) {
  .cw-site-main :where(h2),
  .editor-styles-wrapper :where(h2) {
    font-size: 1.8rem;
  }
  .cw-site-main .cw-feature-card__title,
  .editor-styles-wrapper .cw-feature-card__title {
    font-size: 1.5rem;
  }

  .cw-why-choose {
    margin-top: 2rem;
    padding: 1.5rem 0 1rem;
  }

  .cw-why-choose__title,
  .editor-styles-wrapper .cw-why-choose__title {
    font-size: 1.875rem;
    margin-bottom: 2rem;
    line-height: 1.2;
  }
  .cw-reason-card {
    flex: 0 0 100%;
    max-width: 100%;
    min-height: 175px;
    display: flex;
  }
  .cw-reason-card:last-child {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .cw-reason-card > .wp-block-group__inner-container {
    width: 100%;
    min-height: 100%;
    padding: 0.9rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .cw-reason-card p {
    font-size: 1.3rem;
    font-weight: 500;
  }
  .cw-reason-card:nth-child(4),
  .cw-reason-card:nth-child(5) {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/* ── Host CW Section ─────────────────────────────────────────── */
.cw-host-section {
  padding: 0 0 3rem 0;
}

.cw-host-section__card {
  background: var(--cw-gradient-bg);
  border-radius: 20px;
  padding: 3rem 3.5rem;
  color: #fff;
}

.cw-host-section__heading.wp-block-heading {
  color: #fff;
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 500;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.cw-host-section__cols.wp-block-columns {
  gap: 2.5rem;
  margin: 0;
}

.cw-host-section__body {
  color: #fff;
  font-size: 1rem;
  line-height: 1.65;
  margin: 0;
}

.cw-host-section__callout {
  background: rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  height: 100%;
  display: flex;
  align-items: center;
}

.cw-host-section__callout p {
  color: var(--cw-color-blue-deep);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.55;
  margin: 0;
}

@media (max-width: 767px) {
  .cw-host-section__card {
    padding: 2rem 1.5rem;
    border-radius: 14px;
  }

  .cw-host-section__cols.wp-block-columns {
    flex-direction: column;
  }
}

/* ============================================================
   23. 404 PAGE
   ============================================================ */

.cw-404-hero-copy {
  display: grid;
  gap: 0.85rem;
  justify-items: center;
  max-width: 50rem;
  margin: 0 auto;
}

.cw-404-hero-copy__eyebrow {
  margin: 0;
  color: #ffffff;
  font-family: var(--cw-font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.cw-404-hero-copy__title {
  max-width: 14ch;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3.5rem);
  line-height: 1.02;
  text-transform: uppercase;
}

.cw-404-hero-copy__body {
  max-width: 42rem;
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.05rem;
  line-height: 1.65;
}

.cw-404-page .cw-button-row {
  margin-top: 0.6rem;
}

.cw-404-recovery {
  background:
    radial-gradient(circle at top, rgba(29, 64, 206, 0.11), transparent 46%),
    linear-gradient(180deg, #f7f9ff 0%, #ffffff 100%);
  padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.cw-404-recovery__inner {
  max-width: var(--cw-shell-width-wide);
  margin: 0 auto;
}

.cw-404-recovery__eyebrow {
  margin: 0 0 0.8rem;
  color: var(--cw-color-orange-deep);
  font-family: var(--cw-font-display);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
}

.cw-404-recovery__title {
  margin: 0;
  color: var(--cw-color-blue-dark);
  font-size: clamp(2rem, 3vw, 3.35rem);
  line-height: 1;
  text-transform: uppercase;
}

.cw-404-recovery__body {
  max-width: 48rem;
  margin: 1rem auto 0;
  color: var(--cw-color-muted);
  font-size: 1.03rem;
  line-height: 1.7;
}

.cw-404-links {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 2.4rem;
}

.cw-site-main a.cw-404-link-card,
.cw-site-main a.cw-404-link-card:link,
.cw-site-main a.cw-404-link-card:visited {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  min-height: 100%;
  padding: 1.4rem 1.3rem;
  border: 1px solid rgba(29, 64, 206, 0.12);
  border-radius: 1.4rem;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 1.2rem 2.8rem rgba(17, 44, 95, 0.08);
  color: var(--cw-color-blue-dark);
  text-decoration: none;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    border-color 0.2s ease;
}

.cw-site-main a.cw-404-link-card:hover,
.cw-site-main a.cw-404-link-card:focus {
  transform: translateY(-0.25rem);
  border-color: rgba(29, 64, 206, 0.28);
  box-shadow: 0 1.5rem 3.1rem rgba(17, 44, 95, 0.13);
}

.cw-404-link-card__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-family: var(--cw-font-display);
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.05;
  text-transform: uppercase;
}

.cw-404-link-card__title::after {
  content: "\2192";
  font-size: 1rem;
  font-weight: 700;
  color: var(--cw-color-orange-deep);
}

.cw-404-link-card__copy {
  color: var(--cw-color-muted);
  font-size: 0.98rem;
  line-height: 1.62;
}

@media (max-width: 1100px) {
  .cw-404-links {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .cw-404-hero-copy {
    justify-items: stretch;
  }

  .cw-404-hero-copy__eyebrow,
  .cw-404-hero-copy__title,
  .cw-404-hero-copy__body,
  .cw-404-recovery__eyebrow,
  .cw-404-recovery__title,
  .cw-404-recovery__body {
    text-align: left;
  }

  .cw-404-links {
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
  }

  .cw-404-link-card__title {
    font-size: 1.15rem;
  }
}

/* ============================================================
   24. SCROLL REVEAL & ENTRANCE ANIMATIONS
   ============================================================ */

/* -- Keyframes -- */

@keyframes cw-fade-up {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cw-hero-fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Very slow horizontal drift on the hero background image — gives the
   section a "living" quality without drawing attention to itself. */
@keyframes cw-hero-bg-drift {
  0%,
  100% {
    background-position: 48% top;
  }
  50% {
    background-position: 52% top;
  }
}

/* Perpetual gentle float for the feature card after it enters. */
@keyframes cw-feature-card-float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* -- Hero background drift (front-end only, not editor) -- */

body.commsweek-theme .cw-hero {
  animation:
    cw-hero-fade-in 0.55s ease-out both,
    cw-hero-bg-drift 38s ease-in-out 0.55s infinite;
}

/* -- Hero entrance -- */
/* The hero now uses a single section-level fade-in instead of staggered child
   transitions. Keep .cw-hero--animate reserved for any non-entrance hero
   behaviors that still rely on it. */

/* Feature card float — begins after the entrance transition finishes (~1.2s) */
.cw-hero--animate .cw-feature-card {
  animation: cw-feature-card-float 6s ease-in-out 1.2s infinite;
}

/* -- Scroll reveal -- */

.cw-reveal {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
  transition-delay: var(--cw-reveal-delay, 0ms);
}

.cw-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
