/**
 * WoolClip Learning Center — layout components (header, footer, partials)
 */

 @media (max-width: 991px) {
  html #wpadminbar {
    display: none;
  }
 }

/* Buttons */
.woolclip-theme a.btn,
.woolclip-theme button.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: var(--font-primary);
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  padding: 11px 18px;
  border: 0;
  min-width: 160px;
  line-height: 24px;
  white-space: wrap;
  text-align: center;
}
.woolclip-theme .btn.btn-primary {
  background: var(--color-brand-600);
  color: var(--color-white);
  box-shadow: 0 0 0 1px rgba(10, 13, 18, 0.18) inset, 0 -2px 0 0 rgba(10, 13, 18, 0.05) inset, 0 1px 2px 0 rgba(16, 24, 40, 0.05);

}
.woolclip-theme .btn.btn-primary:hover {
  background: var(--color-brand-700);
}
@media (min-width: 992px) {
  .woolclip-theme a.btn,
  .woolclip-theme button.btn {
    padding: 11px 20px;
  }
}
/* Header */
.site-header--woolclip {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.site-header--woolclip.is-scrolled {
  background: var(--background-white);
}
.admin-bar .site-header--woolclip {
  top: 32px;
}
.site-header--woolclip .wrap-header {
  display: flex;
  align-items: center;
  gap: 32px;
  min-height: var(--header-height);
  padding: 24px 0;
}
.site-header--woolclip .logo a {
  display: block;
  line-height: 1.2;
  text-decoration: none;
}
.site-header--woolclip .logo a:has(img) {
  line-height: 0;
}
.site-header--woolclip .logo__text {
  display: inline-block;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--color-brand-900);
}
body.site-header--navy .site-header--woolclip .logo__text {
  color: var(--color-white);
}
.site-header--woolclip .logo img {
  height: 40px;
  width: auto;
  max-width: 235px;
}
.site-header--woolclip .mobile-nav-search,
.site-header--woolclip .mobile-nav,
.site-header--woolclip .mobile-nav-brand {
  display: none;
}
.site-header--woolclip .header-main {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
  flex: 1;
}
.site-header--woolclip .navigation .nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header--woolclip .navigation .menu-item a {
  font-weight: 500;
  font-size: var(--font-size-sm);
  line-height: 24px;
  color: var(--color-gray-nav);
  text-decoration: none;
  transition: color 0.2s ease;
}
.site-header--woolclip .navigation .menu-item a:hover,
.site-header--woolclip .navigation .current-menu-item > a,
.site-header--woolclip .navigation .current-menu-parent > a,
.site-header--woolclip .navigation .current-menu-ancestor > a {
  color: var(--color-brand-700);
}
.site-header--woolclip .header-utils {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.site-header--woolclip .header-search {
  position: relative;
}
.site-header--woolclip .header-search input[type="search"] {
  width: 192px;
  height: 44px;
  padding: 10px 40px 10px 14px;
  border: 1px solid var(--color-gray-md);
  border-radius: 8px;
  background: var(--background-white);
  box-shadow: 0 1px 1px rgba(10, 13, 18, 0.05);
  font-size: var(--font-size-sm);
  color: var(--color-text);
}
.site-header--woolclip .header-search input[type="search"]::placeholder {
  color: var(--color-gray-muted);
  font-style: normal;
}
.site-header--woolclip .header-search button {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  background: none;
  padding: 0;
  cursor: pointer;
  color: var(--color-gray-nav);
  line-height: 0;
}
.site-header--woolclip .header-search button svg {
  display: block;
}
.site-header--woolclip a.btn-header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: var(--font-size-sm);
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: var(--shadow-xs);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.site-header--woolclip a.btn-header-secondary {
  border: 1px solid var(--color-gray-md);
  background: var(--background-white);
  color: var(--color-gray-nav);
}
.site-header--woolclip a.btn-header-secondary:hover {
  border-color: var(--color-brand-500);
  color: var(--color-brand-700);
}
.site-header--woolclip .btn-header-primary {
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: var(--color-brand-600);
  color: var(--color-white);
}
.site-header--woolclip .btn-header-primary:hover {
  background: var(--color-brand-700);
}
.site-header--woolclip .btn-bars {
  display: none;
  color: var(--color-gray-nav);
  line-height: 0;
  padding: 12px;
  border: 0;
  background: none;
  border-radius: 8px;
  cursor: pointer;
}
.site-header--woolclip .bars .icon-close,
.nav-open .site-header--woolclip .bars .icon-bar {
  display: none;
}
.nav-open .site-header--woolclip .bars .icon-close {
  display: block;
}
body.nav-open {
  overflow: hidden;
}

@media (max-width: 1199px) {
  .site-header--woolclip .wrap-header {
    min-height: 64px;
    padding: 16px 0;
  }
  .site-header--woolclip .logo img {
    height: 32px;
    max-width: 188px;
  }
  .site-header--woolclip .logo__text {
    font-size: 18px;
  }
  .site-header--woolclip .btn-bars {
    display: block;
    margin-left: auto;
  }
  .site-header--woolclip .header-main {
    position: fixed;
    inset: 0;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 24px;
    padding: 16px 0 32px;
    background: var(--background-white);
    overflow-y: auto;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 120;
  }
  .nav-open .site-header--woolclip .header-main {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }
  .site-header--woolclip .header-main > .mobile-nav-search,
  .site-header--woolclip .header-main > .mobile-nav,
  .site-header--woolclip .header-main > .mobile-nav-brand {
    display: block;
  }
  .site-header--woolclip .navigation--desktop,
  .site-header--woolclip .header-search--desktop {
    display: none;
  }
  .site-header--woolclip .mobile-nav-search {
    padding: 0 16px;
  }
  .site-header--woolclip .header-search input[type="search"] {
    width: 100%;
    height: 44px;
  }
  .site-header--woolclip .mobile-nav {
    padding: 0 8px;
  }
  .site-header--woolclip .mobile-nav__group + .mobile-nav__group {
    border-top: 1px solid #e9eaeb;
  }
  .site-header--woolclip .mobile-nav__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 8px 12px;
    border: 0;
    background: none;
    font: inherit;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: var(--color-gray-nav);
    cursor: pointer;
    text-align: left;
  }
  .site-header--woolclip .mobile-nav__chevron {
    flex-shrink: 0;
    transition: transform 0.2s ease;
  }
  .site-header--woolclip .mobile-nav__group.is-open .mobile-nav__chevron {
    transform: rotate(180deg);
  }
  .site-header--woolclip .mobile-nav__submenu {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 0 0 4px;
  }
  .site-header--woolclip .mobile-nav__submenu[hidden] {
    display: none;
  }
  .site-header--woolclip .mobile-nav__submenu a {
    display: block;
    padding: 8px 12px 8px 42px;
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    color: var(--color-gray-nav);
    text-decoration: none;
  }
  .site-header--woolclip .mobile-nav__submenu a:hover {
    color: var(--color-brand-700);
  }
  .site-header--woolclip .header-utils {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    gap: 8px;
    padding: 0 16px;
    margin-top: auto;
  }
  .site-header--woolclip .btn-header {
    width: 100%;
  }
  .site-header--woolclip .mobile-nav-brand {
    display: flex;
    justify-content: center;
    padding: 16px;
  }
  .site-header--woolclip .mobile-nav-brand img {
    width: 128px;
    height: auto;
  }
  .nav-open .site-header--woolclip {
    position: fixed;
    inset: 0 auto auto 0;
    width: 100%;
    z-index: 130;
    background: var(--background-white);
    border-bottom-color: var(--color-gray-md);
  }
  .nav-open .site-header--woolclip .wrap-header {
    position: relative;
    z-index: 131;
    background: var(--background-white);
  }
}
@media (max-width: 991px) {
  .admin-bar .site-header--woolclip {
    top: 0;
  }
}
/* Footer */
.site-footer--woolclip {
  background: var(--color-brand-25);
  border-top: 6px solid var(--color-brand-500);
  padding: 48px 0 32px;
}
.site-footer--woolclip .footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.site-footer--woolclip .footer-brand img {
  height: 72px;
  width: auto;
  max-width: 165px;
  margin-bottom: 32px;
}
.site-footer--woolclip .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: var(--font-size-sm);
  line-height: 24px;
  color: var(--color-text);
}
.site-footer--woolclip .footer-col-title,
.site-footer--woolclip .footer-col-title a {
  font-size: var(--font-size-sm);
  font-weight: 600;
  line-height: 24px;
  color: var(--color-gray-brand);
  margin: 0 0 16px;
}
.site-footer--woolclip .footer-contactus .footer-col-title {
  margin-bottom: 0;
}
.site-footer--woolclip .footer-col-title a:hover {
  color: var(--color-brand-700);
}
.site-footer--woolclip .footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.site-footer--woolclip .footer-links a {
  font-size: var(--font-size-sm);
  line-height: 24px;
  color: var(--color-gray-brand);
  text-decoration: none;
}
.site-footer--woolclip .footer-links a:hover {
  color: var(--color-brand-700);
}
.site-footer--woolclip .footer-external-title {
  font-size: var(--font-size-md);
  font-weight: 500;
  line-height: 28px;
  color: var(--color-brand-700);
  margin: 0 0 24px;
}
.site-footer--woolclip .footer-bottom {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid var(--color-brand-200);
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: var(--font-size-xs);
  line-height: 20px;
  color: var(--color-gray-brand);
}
.site-footer--woolclip .footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 48px;
  flex-direction: column;
}
.site-footer--woolclip .footer-bottom-links a {
  color: var(--color-gray-brand);
  text-decoration: none;
}
.site-footer--woolclip .footer-bottom-links a:hover {
  color: var(--color-brand-700);
}

@media (min-width: 992px) {
  .site-footer--woolclip .footer-bottom-links {
    flex-direction: row;
  }
  .site-footer--woolclip {
    padding-top: 64px;
  }
  .site-footer--woolclip .footer-grid {
    grid-template-columns:
  minmax(auto, 1.4fr)
  repeat(4, minmax(auto, auto))
  minmax(auto, 1.2fr);
    gap: clamp(24px, 2vw, 53px);
  }
  .site-footer--woolclip .footer-bottom {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }
}

/* Breadcrumbs */
.wc-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  font-size: var(--font-size-sm);
  line-height: 24px;
  color: var(--color-gray-brand);
  margin-bottom: 12px;
}
.wc-breadcrumbs a {
  color: var(--color-gray-brand);
  text-decoration: none;
}
.wc-breadcrumbs a:hover {
  color: var(--color-brand-700);
}
.wc-breadcrumbs .sep {
  color: var(--color-gray-brand);
}

/* Still need help CTA */
.wc-still-need-help {
  padding: 64px 0;
}
.wc-still-need-help__inner {
  background: var(--color-brand-25);
  border-radius: var(--radius-lg);
  padding: 48px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  text-align: center;
}
.wc-still-need-help__title {
  font-size: var(--font-size-xl);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--color-brand-700);
  margin: 0;
}
.wc-still-need-help__text {
  font-size: var(--font-size-xmd);
  line-height: 30px;
  color: var(--color-gray-nav);
  margin: 0;
  max-width: 640px;
}
@media (min-width: 768px) {
  .wc-still-need-help__inner {
    background: var(--color-brand-25) url(../images/bg-union-2.png) bottom right no-repeat;
    background-size: 518px auto;
    padding: 64px 32px;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
    text-align: left;
  }
}
@media (min-width: 1200px) {
  .wc-still-need-help__title {
    font-size: 48px;
    line-height: 60px;
  }
  .wc-still-need-help a.btn-header,
  .wc-still-need-help button.btn-header {
    min-width: 256px;
  }
}
@media (max-width: 991px) {
  .wc-still-need-help {
    padding: 48px 0;
  }
}
@media (max-width: 767px) {
  .wc-still-need-help a.btn-header,
  .wc-still-need-help button.btn-header {
    width: 100%;
  }
}
/* Alert card — Figma node 6126:1369 */
.wc-alert-banner-root {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
  box-sizing: border-box;
  padding: 16px;
  pointer-events: none;
}
.wc-alert-banner-root.is-visible {
  display: flex;
  pointer-events: auto;
}
.wc-alert-banner__overlay {
  position: absolute;
  inset: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(24, 29, 39, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
html.wc-alert-banner-open {
  overflow: hidden;
}
.wc-alert-banner {
  --wc-alert-head-bg: #005649;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: min(512px, 100%);
  max-height: calc(100vh - 32px);
  margin: 0;
  background: var(--color-white);
  border: 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow:
    0 3px 3px -1.5px rgba(10, 13, 18, 0.04),
    0 8px 8px -4px rgba(10, 13, 18, 0.08),
    0 20px 24px -4px rgba(10, 13, 18, 0.08);
}
.wc-alert-banner.is-warning {
  --wc-alert-head-bg: #ce5334;
}

/* Mobile placement */
@media (max-width: 767px) {
  .wc-alert-banner-root--m-top {
    align-items: flex-start;
    justify-content: center;
    padding-top: calc(var(--header-height) + 12px);
  }
  .wc-alert-banner-root--m-center {
    align-items: center;
    justify-content: center;
  }
  .wc-alert-banner-root--m-bottom {
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 16px;
  }
  .wc-alert-banner {
    width: 100%;
    max-width: none;
  }
}

/* Desktop placement */
@media (min-width: 768px) {
  .wc-alert-banner-root {
    padding: 32px;
  }
  .wc-alert-banner-root--d-v-top {
    align-items: flex-start;
  }
  .wc-alert-banner-root--d-v-center {
    align-items: center;
  }
  .wc-alert-banner-root--d-v-bottom {
    align-items: flex-end;
  }
  .wc-alert-banner-root--d-h-left {
    justify-content: flex-start;
  }
  .wc-alert-banner-root--d-h-center {
    justify-content: center;
  }
  .wc-alert-banner-root--d-h-right {
    justify-content: flex-end;
  }
  .wc-alert-banner-root--d-v-top {
    padding-top: calc(var(--header-height) + 16px);
  }
}

.admin-bar .wc-alert-banner-root--m-top.is-visible {
  padding-top: calc(var(--header-height) + 12px + 32px);
}
.admin-bar .wc-alert-banner-root--d-v-top.is-visible {
  padding-top: calc(var(--header-height) + 16px + 32px);
}
@media (max-width: 782px) {
  .admin-bar .wc-alert-banner-root--m-top.is-visible {
    padding-top: calc(var(--header-height) + 12px + 46px);
  }
  .admin-bar .wc-alert-banner-root--d-v-top.is-visible {
    padding-top: calc(var(--header-height) + 16px + 46px);
  }
}
.wc-alert-banner__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  background: var(--wc-alert-head-bg);
  color: var(--color-white);
}
.wc-alert-banner__icon {
  flex-shrink: 0;
  display: flex;
  line-height: 0;
  color: var(--color-white);
}
.wc-alert-banner__title {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  font-size: 20px;
  font-weight: 500;
  line-height: 30px;
  color: inherit;
  word-break: break-word;
}
.wc-alert-banner__close {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 8px;
  margin: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--color-white);
  cursor: pointer;
  line-height: 0;
}
.wc-alert-banner__close:hover {
  background: rgba(255, 255, 255, 0.12);
}
.wc-alert-banner__body {
  padding: 24px 16px;
  border-bottom: 1px solid var(--color-gray-md);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  color: var(--color-gray-brand);
}
.wc-alert-banner__body p {
  margin: 0;
}
.wc-alert-banner__actions {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 16px;
  background: var(--color-white);
}
.wc-alert-banner__actions--solo {
  justify-content: flex-start;
}
.wc-alert-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  box-shadow: var(--shadow-xs);
}
.wc-alert-banner__btn--dismiss {
  flex-shrink: 0;
  min-width: 128px;
  border: 1px solid var(--color-gray-md);
  background: var(--color-white);
  color: var(--color-gray-nav);
}
.wc-alert-banner__btn--dismiss:hover {
  border-color: var(--color-brand-500);
  color: var(--color-brand-700);
}
a.wc-alert-banner__btn--primary {
  border: 2px solid rgba(255, 255, 255, 0.12);
  background: var(--color-brand-600);
  color: var(--color-white);
}
a.wc-alert-banner__btn--primary:hover {
  background: var(--color-brand-700);
  color: var(--color-white);
}
@media (max-width: 767px) {
  .wc-alert-banner__title {
    font-size: 18px;
    line-height: 28px;
  }
  .wc-alert-banner__body {
    padding: 20px 16px;
  }
  .wc-alert-banner__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .wc-alert-banner__btn {
    width: 100%;
    white-space: normal;
    text-align: center;
  }
  .wc-alert-banner__btn--dismiss {
    min-width: 0;
  }
}

/* Main offset for sticky header */
body.woolclip-theme #main {
  margin-top: 76px;
}
@media (min-width: 1200px) {
  body.woolclip-theme #main {
    margin-top: 94px;
  }
}
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* Homepage */
.woolclip-theme .wc-home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.woolclip-theme .wc-home-btn svg {
  flex-shrink: 0;
}
.woolclip-theme .wc-home-btn--hero {
  padding: 16px 22px;
  border-radius: 10px;
  font-size: 18px;
  line-height: 28px;
}
.woolclip-theme .wc-home-btn--block {
  width: 100%;
  padding: 12px 18px;
  font-size: 16px;
  line-height: 24px;
}
.woolclip-theme .wc-home-btn--outline {
  padding: 12px 18px;
  border: 1px solid var(--color-brand-200);
  color: var(--color-brand-600);
  background: var(--background-white);
  white-space: nowrap;
}
.woolclip-theme .wc-home-btn--outline:hover {
  background: var(--color-brand-25);
}
.woolclip-theme .wc-home-btn--live {
  flex-shrink: 0;
  width: 100%;
  padding: 12px 18px;
  font-size: 16px;
  line-height: 24px;
}
@media (min-width: 992px) {
  .woolclip-theme .wc-home-btn--live {
    max-width: 256px;
  }
}
/* Hero */
.wc-home-hero {
  padding: 0;
}
.wc-home-hero__container {
  display: grid;
  gap: 32px;
  align-items: start;
}
.wc-home-hero__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 32px 0 64px;
}
.wc-home-hero__badge img {
  display: block;
  width: 147px;
  height: auto;
}
.wc-home-hero__title {
  margin: 0;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--color-brand-900);
}
.wc-home-hero__text {
  margin: 0;
  font-size: 18px;
  line-height: 30px;
  color: var(--color-gray-nav);
  max-width: 640px;
}
.wc-home-hero__media {
  position: relative;
  min-height: 280px;
}
.wc-home-hero__picture {
  display: block;
  width: 100%;
  max-width: 512px;
  margin: 0 auto;
  aspect-ratio: 512 / 496;
}
.wc-home-hero__picture .wc-home-hero__image,
.wc-home-hero__picture picture.wc-media-placeholder--hero {
  display: block;
  width: 100%;
  height: 100%;
  -webkit-mask-image: url('../images/hero-mask-2.svg');
  mask-image: url('../images/hero-mask-2.svg');
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}
.wc-home-hero--align-top .wc-home-hero__picture .wc-home-hero__image {
  -webkit-mask-image: url('../images/hero-mask-rotate.svg');
  mask-image: url('../images/hero-mask-rotate.svg');
}
.wc-home-hero__picture picture.wc-media-placeholder--hero img,
.wc-home-hero__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (min-width: 992px) {
  .wc-home-hero__badge {
    margin-bottom: -14px;
  }
}
/* Hub cards */
.wc-home-hubs {
  padding: 0 32px;
}
.wc-home-hubs__panel {
  background: var(--color-brand-50);
  border-radius: 24px;
  padding: 64px 0;
}
.wc-home-hubs__title {
  margin: 0 0 48px;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-align: center;
  color: var(--color-brand-900);
}
.wc-home-hubs__grid {
  display: grid;
  gap: 12px;
}
.wc-home-hub__card {
  display: flex;
  flex-direction: column;
  gap: 32px;
  height: 100%;
  padding: 32px 20px 20px;
  background: var(--background-white);
  border: 1px solid var(--color-gray-md);
  border-radius: 16px;
}
.wc-home-hub__name {
  margin: 0;
  font-size: 24px;
  line-height: 38px;
  font-weight: 500;
  color: var(--color-text);
}
.wc-home-hub__desc {
  margin: 16px 0 0;
  font-size: 18px;
  line-height: 28px;
  color: var(--color-gray-nav);
}
.wc-home-hub__image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-brand-50);
}
.wc-home-hub__image img,
.wc-home-hub__image .wc-home-hub__image-media,
.wc-home-hub__image picture.wc-media-placeholder--card {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.wc-home-hub__image img,
.wc-home-hub__image picture.wc-media-placeholder--card img {
  object-fit: cover;
}
.wc-home-hub--featured .wc-home-hub__featured-wrap {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: 6px;
  border-radius: 22px;
  background: var(--color-brand-500);
}
.wc-home-hub__featured-logo {
  display: flex;
  justify-content: center;
  padding: 12px 16px;
}
.wc-home-hub__featured-logo img {
  max-width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .wc-home-hub:not(.wc-home-hub--featured) .wc-home-hub__card {
    margin-top: 57px;
    height: calc(100% - 63px);
  }
  .wc-home-hub__card {
    position: relative;
  }
  .wc-home-hub__card .btn {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    width: auto;
  }
}
@media (min-width: 1200px) {
  .wc-home-hub:not(.wc-home-hub--featured) .wc-home-hub__card {
    margin-top: 65px;
    height: calc(100% - 69px);
  }
}
/* News */
.wc-home-news {
  padding: 96px 0;
}
.wc-home-news__head {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 64px;
}
.wc-home-news__eyebrow {
  margin: 0 0 12px;
  font-size: 18px;
  line-height: 28px;
  font-weight: 600;
  color: var(--color-brand-600);
}
.wc-home-news__title {
  margin: 0;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--color-brand-900);
}
.wc-home-news__grid {
  display: grid;
  gap: 16px;
}
.wc-update-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px;
  background: var(--background-white);
  border: 1px solid var(--color-gray-md);
  border-radius: 12px;
}
.wc-update-card__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.wc-update-card__date {
  font-size: 16px;
  line-height: 24px;
  font-weight: 500;
  color: var(--color-brand-600);
}
.wc-update-card__tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: 16px;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  white-space: nowrap;
}
.wc-update-card__tag--update {
  color: var(--color-teal-700);
  background: var(--color-teal-50);
  border: 1px solid #99f6e0;
}
.wc-update-card__tag--training {
  color: var(--color-warning-700);
  background: var(--color-warning-50);
  border: 1px solid #fedf89;
}
.wc-update-card__title {
  margin: 0;
  font-size: 24px;
  line-height: 32px;
  font-weight: 500;
}
.wc-update-card__title a {
  color: var(--color-text);
  text-decoration: none;
}
.wc-update-card__title a:hover {
  color: var(--color-brand-600);
}
.wc-update-card__footer {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  margin-top: auto;
}
.wc-update-card__excerpt {
  flex: 1;
  margin: 0;
  font-size: 18px;
  line-height: 28px;
  color: var(--color-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.wc-update-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border: 1px solid var(--color-gray-md);
  border-radius: 8px;
  background: var(--background-white);
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.05);
  color: var(--color-text);
}
.wc-update-card__link:hover {
  border-color: var(--color-brand-200);
  color: var(--color-brand-600);
}

/* Live CTA */
.wc-home-live {
  padding: 0 32px 64px;
}
.wc-home-live__inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 64px 32px;
  border-radius: 24px;
  background: var(--color-brand-900) url(../images/bg-union.png) bottom right no-repeat;
  overflow: hidden;
}
.wc-home-live__logo {
  margin-bottom: 24px;
}
.wc-home-live__logo img {
  display: block;
  width: 165px;
  height: auto;
}
.wc-home-live__text {
  font-size: 24px;
  line-height: 38px;
  font-weight: 500;
  color: var(--background-white);
  max-width: 880px;
}

@media (min-width: 1200px) {
  .wc-home-hero__container {
    grid-template-columns: minmax(0, 1fr) minmax(0, 512px);
    gap: 64px;
    padding-left: 32px;
    padding-right: 32px;
    align-items: end;
  }
  .wc-home-hero--align-top .wc-home-hero__container {
    align-items: start;
  }
  .wc-home-hero__title {
    font-size: 60px;
    line-height: 72px;
  }
  .wc-home-hero__text {
    font-size: 20px;
  }
  .wc-home-hero__media {
    min-height: 489px;
  }
  .wc-home-hero__picture {
    margin: 0 0 0 auto;
  }
  .wc-home-hubs__title,
  .wc-home-news__title {
    font-size: 48px;
    line-height: 60px;
  }
  .wc-home-hub__name {
    font-size: 30px;
  }
  .wc-home-news__head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
  .wc-home-live__inner {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    gap: 48px;
  }
  .wc-home-live__text {
    font-size: 30px;
  }
  .wc-home-btn--live {
    width: 256px;
  }
}

@media (max-width: 1199px) {
  .wc-home-hero__media {
    display: none;
  }
}

@media (max-width: 767px) {
  .wc-home-hubs,
  .wc-home-live {
    padding-left: 16px;
    padding-right: 16px;
  }
  .wc-home-hubs__panel {
    padding: 48px 0;
  }
  .wc-home-news {
    padding: 64px 0;
  }
  .wc-home-live__inner {
    padding: 48px 24px;
  }
}

/* Media placeholders */
picture.wc-media-placeholder,
.wc-media-fit--cover {
  display: block;
  width: 100%;
  height: 100%;
}

picture.wc-media-placeholder img,
img.wc-media-fit--cover {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

picture.wc-media-fit--contain,
img.wc-media-fit--contain {
  display: block;
  width: auto;
  max-width: 100%;
  height: auto;
}

picture.wc-media-placeholder--hero,
picture.wc-media-placeholder--card,
picture.wc-media-placeholder--default {
  overflow: hidden;
}

picture.wc-media-placeholder--hero {
  min-height: 100%;
}

picture.wc-media-placeholder--card {
  border-radius: 8px;
}

picture.wc-media-placeholder--badge,
picture.wc-media-placeholder--logo,
picture.wc-media-placeholder--logo-banner {
  width: auto;
  height: auto;
}

.wc-home-live__logo picture.wc-media-placeholder--logo,
.wc-home-live__logo img.wc-media-fit--contain {
  max-width: 165px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  .wc-home-live__logo picture.wc-media-placeholder--logo,
  .wc-home-live__logo img.wc-media-fit--contain {
    margin-left: 0;
  }
}
/* Inner pages */
.wc-page-hero {
  padding: 32px 0 48px;
}
.wc-page-hero--muted,
.wc-page-hero--detail {
  background: var(--color-brand-25);
}
.wc-page-hero__title {
  margin: 16px 0 0;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: var(--color-brand-900);
}
.wc-page-hero__text {
  margin: 16px 0 0;
  max-width: 720px;
  font-size: 18px;
  line-height: 30px;
  color: var(--color-gray-nav);
}

/* Hero types (set via hero_type on content-page-hero) */
.wc-page-hero--centered,
.wc-page-hero--centered-lg {
  background: var(--background-white);
}
.wc-page-hero--centered {
  padding: 48px 0 0;
}
.wc-page-hero--centered-lg {
  padding: 64px 0 0;
}
.wc-page-hero--centered .container,
.wc-page-hero--centered-lg .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.wc-page-hero--centered .wc-page-hero__content,
.wc-page-hero--centered-lg .wc-page-hero__content {
  max-width: 832px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.wc-page-hero--centered .wc-breadcrumbs,
.wc-page-hero--centered-lg .wc-breadcrumbs {
  justify-content: center;
}
.wc-page-hero--centered .wc-page-hero__title,
.wc-page-hero--centered-lg .wc-page-hero__title {
  letter-spacing: -0.02em;
  color: var(--color-brand-900);
}
.wc-page-hero--centered .wc-page-hero__title {
  font-size: 36px;
  line-height: 44px;
}
.wc-page-hero--centered-lg .wc-page-hero__title {
  font-size: 60px;
  line-height: 72px;
}
.wc-page-hero--centered .wc-page-hero__text,
.wc-page-hero--centered-lg .wc-page-hero__text {
  margin-left: auto;
  margin-right: auto;
  color: var(--color-gray-nav);
}
.wc-page-hero--centered .wc-page-hero__text {
  font-size: 18px;
  line-height: 28px;
}
.wc-page-hero--centered-lg .wc-page-hero__text {
  font-size: 20px;
  line-height: 30px;
}

.wc-page-hero--archive {
  background: var(--background-white);
  padding: 48px 0 0;
}
.wc-page-hero--archive .wc-page-hero__title {
  font-size: 36px;
  line-height: 44px;
  letter-spacing: -0.02em;
}
.wc-page-hero--archive .wc-page-hero__text {
  font-size: 18px;
  line-height: 28px;
}
@media (max-width: 767px) {
  .wc-page-hero--centered .container, 
  .wc-page-hero--centered-lg .container {
    justify-content: flex-start;
  }
  .wc-page-hero--centered .wc-breadcrumbs, 
  .wc-page-hero--centered-lg .wc-breadcrumbs {
    justify-content: flex-start;  
  }
  .wc-page-hero--centered .wc-page-hero__content, 
  .wc-page-hero--centered-lg .wc-page-hero__content {
    text-align: left;
  }
}
/* Hub landing heroes (News & Events, Help & Resources) */
.wc-page-hero--hub {
  position: relative;
  overflow: hidden;
  background: var(--color-brand-25) url(../images/bg-hero-hub.png) bottom right no-repeat;
  padding: 160px 0 96px;
  margin-top: -96px;
  background-size: 350px auto;
}
.wc-page-hero--hub .wc-page-hero__content {
  max-width: 832px;
}
.wc-page-hero--hub .wc-page-hero__title {
  margin-top: 12px;
  font-size: 60px;
  line-height: 72px;
  letter-spacing: -0.02em;
  color: var(--color-brand-900);
}
.wc-page-hero--hub .wc-page-hero__text {
  font-size: 20px;
  line-height: 30px;
  max-width: none;
  color: var(--color-gray-nav);
}

@media (max-width: 991px) {
  .wc-page-hero--centered-lg .wc-page-hero__title {
    font-size: 48px;
    line-height: 60px;
  }
  .wc-page-hero--hub .wc-page-hero__title {
    font-size: 48px;
    line-height: 60px;
  }
  .wc-page-hero--hub {
    background-size: 144px auto;
  }
}

@media (max-width: 767px) {
  .wc-page-hero--centered-lg {
    padding: 16px 0 0;
  }
  .wc-page-hero--centered-lg .wc-page-hero__title {
    font-size: 36px;
    line-height: 44px;
  }
  .wc-page-hero--centered-lg .wc-page-hero__text {
    font-size: 18px;
    line-height: 28px;
  }
  .wc-page-hero--hub {
    padding: 100px 0 64px;
    margin-top: -76px;
  }
  .wc-page-hero--hub .wc-page-hero__title {
    font-size: 36px;
    line-height: 44px;
  }
  .wc-page-hero--hub .wc-page-hero__text {
    font-size: 18px;
    line-height: 28px;
  }
}

@media (min-width: 768px) {
  .wc-page-hero--centered,
  .wc-page-hero--archive {
    padding-top: 64px;
  }
  .wc-page-hero--centered .wc-page-hero__title,
  .wc-page-hero--archive .wc-page-hero__title {
    font-size: 48px;
    line-height: 60px;
  }
  .wc-page-hero--centered .wc-page-hero__text,
  .wc-page-hero--archive .wc-page-hero__text {
    font-size: 20px;
    line-height: 30px;
  }
}

@media (min-width: 992px) {
  .wc-page-hero--centered .wc-page-hero__title,
  .wc-page-hero--archive .wc-page-hero__title {
    font-size: 60px;
    line-height: 72px;
  }
}

.wc-section {
  padding: 64px 0;
}
.wc-section--muted {
  background: var(--color-brand-25);
}
.wc-section__head {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.wc-section__title {
  margin: 0;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 500;
  color: var(--color-brand-900);
}
.wc-section__text,
.wc-section__eyebrow {
  margin: 0;
  color: var(--color-gray-nav);
}
.wc-section__eyebrow {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--color-brand-600);
}
.wc-card-grid {
  display: grid;
  gap: 24px;
}
.wc-card-grid--3 {
  grid-template-columns: 1fr;
}
.wc-card-grid--4 {
  grid-template-columns: 1fr;
}
.wc-card-grid--list {
  grid-template-columns: 1fr;
}
.wc-tag {
  display: inline-flex;
  align-items: center;
  padding: 2px 10px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-brand-700);
  background: var(--color-brand-25);
  border: 1px solid var(--color-brand-200);
}
.wc-video-card,
.wc-guide-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
  padding: 20px;
  background: var(--background-white);
  border: 1px solid var(--color-gray-md);
  border-radius: 12px;
}
.wc-video-card__thumb,
.wc-guide-card__thumb {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  padding: 0;
  border: 0;
  border-radius: 8px;
  overflow: hidden;
  background: var(--color-brand-50);
  cursor: pointer;
}
.wc-video-card__thumb img,
.wc-guide-card__thumb img,
.wc-video-card__thumb picture.wc-media-placeholder,
.wc-guide-card__thumb picture.wc-media-placeholder {
  width: 100%;
  height: 100%;
}
.wc-video-card__thumb img,
.wc-guide-card__thumb img,
.wc-video-card__thumb picture.wc-media-placeholder img,
.wc-guide-card__thumb picture.wc-media-placeholder img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wc-video-card__play {
  position: absolute;
  inset: auto auto 16px 16px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
}
.wc-video-card__play::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent var(--color-brand-600);
}
.wc-video-card__meta,
.wc-guide-card__meta,
.wc-detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.wc-video-card__title,
.wc-guide-card__title {
  margin: 0;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 500;
}
.wc-video-card__title a,
.wc-guide-card__title a {
  color: var(--color-text);
  text-decoration: none;
}
.wc-video-card__excerpt,
.wc-guide-card__excerpt {
  margin: 0;
  color: var(--color-gray-nav);
  line-height: 1.6;
}
.wc-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}
@media (max-width: 767px) {
  .wc-filter-tabs {
    justify-content: start;
  }
}
.wc-filter-tabs__item {
  padding: 10px 16px;
  border: 1px solid var(--color-gray-md);
  border-radius: 999px;
  text-decoration: none;
  color: var(--color-gray-nav);
  background: var(--background-white);
}
.wc-filter-tabs__item.is-active {
  color: var(--background-white);
  background: var(--color-brand-600);
  border-color: var(--color-brand-600);
}
.wc-faq-list {
  display: grid;
  gap: 12px;
}
.wc-faq-item {
  border: 1px solid var(--color-gray-md);
  border-radius: 12px;
  background: var(--background-white);
  overflow: hidden;
}
.wc-faq-item__question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border: 0;
  background: none;
  text-align: left;
  font: inherit;
  font-weight: 500;
  cursor: pointer;
}
.wc-faq-item__icon::before {
  content: "+";
  font-size: 24px;
  line-height: 1;
  color: var(--color-brand-600);
}
.wc-faq-item.is-open .wc-faq-item__icon::before {
  content: "−";
}
.wc-faq-item__answer-inner {
  padding: 0 24px 24px;
  color: var(--color-gray-nav);
}
.wc-faq-layout {
  display: grid;
  gap: 32px;
}
.wc-faq-categories {
  list-style: none;
  margin: 0;
  padding: 0;
}
.wc-faq-categories a {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 0;
  text-decoration: none;
  color: var(--color-gray-nav);
}
.wc-faq-categories a.is-active {
  color: var(--color-brand-700);
  font-weight: 600;
}
.wc-news-columns {
  display: grid;
  gap: 48px;
}
.wc-list-stack {
  display: grid;
  gap: 16px;
}
.wc-featured-update__inner {
  display: grid;
  gap: 32px;
  padding: 32px;
  border-radius: 16px;
  background: var(--color-brand-50);
}
.wc-featured-update__media {
  min-height: 240px;
  border-radius: 12px;
  overflow: hidden;
}
.wc-featured-update__title {
  margin: 16px 0 0;
  font-size: 32px;
  line-height: 1.2;
}
.wc-training-group__title {
  margin: 0 0 24px;
  font-size: 24px;
  color: var(--color-brand-700);
}
.wc-training-event {
  display: grid;
  gap: 16px;
  padding: 24px;
  border: 1px solid var(--color-gray-md);
  border-radius: 12px;
  background: var(--background-white);
}
.wc-training-event__date {
  font-weight: 600;
  color: var(--color-brand-600);
}
.wc-training-event__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  color: var(--color-gray-nav);
}
.wc-detail-content {
  font-size: 18px;
  line-height: 1.7;
}
.wc-form-layout {
  display: grid;
  gap: 32px;
}
.wc-form-aside__inner {
  padding: 32px;
  border-radius: 16px;
  background: var(--color-brand-25);
}
.wc-search-form {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0 32px;
}
.wc-search-form input[type="search"] {
  flex: 1;
  min-width: 220px;
  height: 48px;
  padding: 0 16px;
  border: 1px solid var(--color-gray-md);
  border-radius: 8px;
}
.wc-search-result {
  padding: 24px 0;
  border-bottom: 1px solid var(--color-brand-200);
}
.wc-search-result__type {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-brand-600);
  text-transform: uppercase;
}
.wc-pagination {
  padding-top: 16px;
  text-align: center;
}

.wc-pagination ul {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.wc-pagination li {
  margin: 0;
}

.wc-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--color-gray-brand);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
}

.wc-pagination a.page-numbers {
  border: 1px solid var(--color-gray-md);
  background: var(--background-white);
  box-shadow: var(--shadow-xs);
}

.wc-pagination .current {
  background: var(--color-brand-50);
  border: 0;
  color: var(--color-brand-700);
}

.wc-pagination .prev,
.wc-pagination .next {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  width: 40px;
  padding: 10px;
  font-size: 0;
}

.wc-pagination .prev::before,
.wc-pagination .next::after {
  content: none;
  display: none;
}

.wc-pagination__icon {
  display: inline-flex;
  line-height: 0;
}

.wc-pagination__icon img {
  display: block;
  width: 20px;
  height: 20px;
}

.wc-pagination__item--mobile {
  display: none;
}

.wc-pagination .page-numbers.dots {
  min-width: auto;
  padding: 0 4px;
  border: 0;
  background: transparent;
  box-shadow: none;
  color: var(--color-gray-brand);
  pointer-events: none;
}

@media (max-width: 767px) {
  .wc-pagination .wc-pagination__item--desktop {
    display: none !important;
  }

  .wc-pagination .wc-pagination__item--mobile {
    display: list-item;
  }
}
.wc-video-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  align-items: center;
  justify-content: center;
  padding: 16px;
}
.wc-video-modal:not([hidden]) {
  display: flex;
}
.wc-video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(24, 29, 39, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.wc-video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(1024px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  border-radius: 16px;
  overflow: hidden;
  background: #000;
  box-shadow:
    0 12px 16px rgba(10, 13, 18, 0.08),
    0 4px 6px rgba(10, 13, 18, 0.03),
    0 2px 2px rgba(10, 13, 18, 0.04);
}
.wc-video-modal__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 8px;
  background: rgba(24, 29, 39, 0.72);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.wc-video-modal__close:hover {
  background: rgba(24, 29, 39, 0.92);
}
.wc-video-modal__close span {
  display: block;
  margin-top: -2px;
}
.wc-video-modal__frame-wrap {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}
.wc-video-modal__frame-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
body.wc-modal-open {
  overflow: hidden;
}
.wc-ex-hero {
  padding: 32px 0 64px;
}
.wc-ex-hero__grid {
  display: grid;
  gap: 32px;
  align-items: center;
}
.wc-benefit-card,
.wc-level-card {
  padding: 24px;
  border: 1px solid var(--color-gray-md);
  border-radius: 12px;
  background: var(--background-white);
}
.wc-benefit-card__number {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-brand-600);
}
.wc-level-grid {
  display: grid;
  gap: 24px;
}

@media (min-width: 768px) {
  .wc-card-grid--3,
  .wc-card-grid--list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .wc-card-grid--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .wc-news-columns {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .wc-featured-update__inner {
    grid-template-columns: 1.1fr 0.9fr;
    align-items: center;
  }
  .wc-training-event {
    grid-template-columns: 120px minmax(0, 1fr);
    align-items: start;
  }
  .wc-faq-layout {
    grid-template-columns: 240px minmax(0, 1fr);
    align-items: start;
  }
  .wc-form-layout {
    grid-template-columns: minmax(0, 1fr) 320px;
    align-items: start;
  }
}

@media (min-width: 992px) {
  .wc-page-hero--default .wc-page-hero__title,
  .wc-page-hero--muted .wc-page-hero__title,
  .wc-page-hero--detail .wc-page-hero__title {
    font-size: 48px;
    line-height: 60px;
  }
  .wc-section__head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
  .wc-card-grid--3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .wc-card-grid--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  .wc-ex-hero__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 480px);
  }
  .wc-level-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* 404 */
.wc-page-404 .wc-404 {
  padding: 32px 0 80px;
  background: var(--color-brand-25);
}
.wc-page-404 .wc-404__top {
  margin-bottom: 32px;
}
.wc-page-404 .wc-breadcrumbs a {
  color: var(--color-gray-nav);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.wc-page-404 .wc-breadcrumbs .sep {
  color: #a4a7ae;
}
.wc-page-404 .wc-breadcrumbs [aria-current="page"] {
  color: var(--color-brand-600);
  font-weight: 600;
}
.wc-page-404 .wc-404__inner {
  max-width: 560px;
  margin: 0 auto;
  text-align: center;
}
.wc-page-404 .wc-404__code {
  margin: 0 0 12px;
  font-size: 72px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.04em;
  color: var(--color-brand-600);
}
.wc-page-404 .wc-404__title {
  margin: 0 0 16px;
  font-size: 36px;
  font-weight: 500;
  line-height: 44px;
  letter-spacing: -0.02em;
  color: var(--color-brand-900);
}
.wc-page-404 .wc-404__text {
  margin: 0 0 32px;
  font-size: 18px;
  line-height: 28px;
  color: var(--color-gray-nav);
}
.wc-page-404 .wc-404__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}
.wc-page-404 .wc-404__actions .wc-home-btn {
  min-width: 0;
  padding: 12px 18px;
  font-size: 16px;
  line-height: 24px;
}
@media (min-width: 768px) {
  .wc-page-404 .wc-404 {
    padding: 48px 0 96px;
  }
  .wc-page-404 .wc-404__code {
    font-size: 96px;
  }
  .wc-page-404 .wc-404__title {
    font-size: 48px;
    line-height: 60px;
  }
  .wc-page-404 .wc-404__text {
    font-size: 20px;
    line-height: 30px;
  }
}
@media (max-width: 991px) {
  .wc-section__text br {
    display: none;
  }
}