:root {
  --hgaeh-primary: #1b5e20;
  --hgaeh-primary-light: #2e7d32;
  --hgaeh-accent: #fbc02d;
  --hgaeh-dark: #1a1a1a;
  --hgaeh-gray: #4a4a4a;
  --hgaeh-soft: #f8faf8;
  --hgaeh-border: #e0e0e0;
  --hgaeh-white: #ffffff;
  --hgaeh-shadow: 0 18px 44px rgba(12, 29, 14, 0.08);
}

.hgaeh-page {
  font-family: "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  color: var(--hgaeh-dark);
  line-height: 1.7;
  background: var(--hgaeh-white);
}

.hgaeh-shell {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.hgaeh-section {
  padding: 96px 0;
}

.hgaeh-section-head {
  margin-bottom: 40px;
}

.hgaeh-section-head h2,
.hgaeh-free-sidebar h2,
.hgaeh-learning-grid h2 {
  position: relative;
  margin: 0 0 30px;
  padding-bottom: 12px;
  font-size: clamp(1.625rem, 2vw, 1.875rem);
  line-height: 1.3;
  letter-spacing: -0.02em;
}

.hgaeh-section-head h2::after,
.hgaeh-free-sidebar h2::after,
.hgaeh-learning-grid h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: var(--hgaeh-primary);
}

.hgaeh-section-head h2 {
  display: inline-block;
}

.hgaeh-section-head h2::after {
  left: 50%;
  transform: translateX(-50%);
}

.hgaeh-free-sidebar h2::after,
.hgaeh-learning-grid h2::after {
  left: 0;
}

.hgaeh-section-head p {
  margin: 0;
  color: var(--hgaeh-gray);
  font-size: clamp(0.95rem, 1.2vw, 1rem);
  line-height: 1.75;
}

.hgaeh-section-head--center {
  text-align: center;
}

.hgaeh-section-head--center p {
  max-width: 42rem;
  margin-inline: auto;
}

.hgaeh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 2px;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.hgaeh-btn:hover {
  transform: translateY(-1px);
}

.hgaeh-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.2em;
  font-size: 0.8em;
  line-height: 1;
}

.hgaeh-btn--small {
  padding: 10px 16px;
  font-size: 0.875rem;
}

.hgaeh-btn--primary {
  color: var(--hgaeh-white);
  background: var(--hgaeh-primary);
  box-shadow: 0 12px 28px rgba(27, 94, 32, 0.18);
}

.hgaeh-btn--primary:hover {
  background: var(--hgaeh-primary-light);
}

.hgaeh-btn--ghost {
  color: var(--hgaeh-gray);
  background: var(--hgaeh-white);
  border-color: #d1d5db;
}

.hgaeh-btn--ghost-light {
  color: var(--hgaeh-white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.hgaeh-btn--accent {
  color: var(--hgaeh-dark);
  background: var(--hgaeh-accent);
  box-shadow: 0 12px 24px rgba(251, 192, 45, 0.22);
}

.hgaeh-btn--accent:hover {
  color: var(--hgaeh-white);
  background: #f6b90d;
}

.hgaeh-hero {
  padding: 72px 0 96px;
  background: var(--hgaeh-soft);
  border-bottom: 1px solid #f3f4f6;
}

.hgaeh-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hgaeh-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 9px 15px 9px 14px;
  margin-bottom: 30px;
  background: var(--hgaeh-white);
  border: 1px solid rgba(27, 94, 32, 0.16);
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--hgaeh-primary);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.05);
}

.hgaeh-kicker-dot {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--hgaeh-primary);
  box-shadow: 0 0 0 4px rgba(27, 94, 32, 0.08);
}

.hgaeh-kicker-dot::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: rgba(27, 94, 32, 0.38);
  animation: hgaeh-ping 1.8s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.hgaeh-page .hgaeh-hero-title {
  margin: 0 0 22px;
  font-size: clamp(2.5rem, 4.7vw, 3.65rem);
  line-height: 1.07;
  letter-spacing: -0.02em;
}

.hgaeh-hero-title__line-two {
  display: block;
}

.hgaeh-hero-title__prefix {
  color: var(--hgaeh-dark);
}

.hgaeh-hero-title__highlight {
  color: var(--hgaeh-primary);
  text-decoration: underline;
  text-decoration-color: rgba(251, 192, 45, 0.8);
  text-decoration-thickness: 4px;
  text-underline-offset: 8px;
}

.hgaeh-hero-text {
  max-width: 680px;
  margin: 0 0 44px;
  color: var(--hgaeh-gray);
  font-size: clamp(1rem, 1.32vw, 1.125rem);
  line-height: 1.75;
  opacity: 0.82;
}

.hgaeh-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hgaeh-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
  max-width: 600px;
  padding-top: 34px;
  margin-top: 48px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.hgaeh-stats strong {
  display: block;
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  color: var(--hgaeh-primary);
}

.hgaeh-stats span {
  display: block;
  margin-top: 6px;
  color: #9ca3af;
  font-size: 0.75rem;
  font-weight: 500;
}

.hgaeh-hero-visual {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin-left: auto;
}

.hgaeh-hero-visual::before,
.hgaeh-hero-visual::after {
  content: "";
  position: absolute;
  width: clamp(112px, 13vw, 160px);
  height: clamp(112px, 13vw, 160px);
  pointer-events: none;
  z-index: -1;
}

.hgaeh-hero-visual::before {
  top: -28px;
  right: -28px;
  border-top: 8px solid rgba(27, 94, 32, 0.12);
  border-right: 8px solid rgba(27, 94, 32, 0.12);
}

.hgaeh-hero-visual::after {
  bottom: -28px;
  left: -28px;
  border-bottom: 8px solid rgba(251, 192, 45, 0.28);
  border-left: 8px solid rgba(251, 192, 45, 0.28);
}

.hgaeh-hero-frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 18px;
  background: #ffffff;
  border: 1px solid rgba(226, 232, 240, 0.9);
  box-shadow: 0 30px 72px rgba(15, 23, 42, 0.12);
}

.hgaeh-hero-frame::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  pointer-events: none;
}

.hgaeh-hero-frame img {
  width: 100%;
  display: block;
  aspect-ratio: 1.42 / 1;
  object-fit: cover;
  filter: none;
  transition: transform 0.45s ease;
}

.hgaeh-hero-visual:hover .hgaeh-hero-frame img {
  transform: scale(1.01);
}

.hgaeh-news-poster-section {
  padding: 16px 0 24px;
  background: #ffffff;
  border-top: 1px solid rgba(15, 23, 42, 0.04);
  border-bottom: 1px solid rgba(15, 23, 42, 0.04);
}

.hgaeh-news-poster {
  position: relative;
  padding: clamp(4px, 0.6vw, 7px);
  background: #ffffff;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 22px;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.05);
}

.hgaeh-news-poster__viewport {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  line-height: 0;
  aspect-ratio: 16 / 9;
}

.hgaeh-news-poster__counter {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 8px 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(8, 16, 18, 0.46);
  color: var(--hgaeh-white);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  font-variant-numeric: tabular-nums;
  backdrop-filter: blur(12px);
  pointer-events: none;
}

.hgaeh-news-poster__track {
  display: flex;
  height: 100%;
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
}

.hgaeh-news-poster__slide {
  display: block;
  width: 100%;
  min-width: 100%;
  height: 100%;
  padding: 0;
  min-height: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: inherit !important;
  font: inherit;
  line-height: 0;
  text-align: left;
  appearance: none;
  -webkit-appearance: none;
  cursor: zoom-in;
  overflow: hidden;
  transition: transform 0.24s ease;
}

.hgaeh-news-poster__slide:focus-visible,
.hgaeh-news-poster__arrow:focus-visible,
.hgaeh-news-poster__dot:focus-visible,
.hgaeh-news-lightbox__close:focus-visible,
.hgaeh-news-lightbox__nav:focus-visible {
  outline: 3px solid rgba(251, 192, 45, 0.5);
  outline-offset: 3px;
}

.hgaeh-news-poster__slide:hover,
.hgaeh-news-poster__slide:focus,
.hgaeh-news-poster__slide:active {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: inherit !important;
}

.hgaeh-news-poster__image {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  vertical-align: top;
  object-fit: cover;
}

.hgaeh-news-poster__controls {
  position: absolute;
  left: 50%;
  bottom: 14px;
  z-index: 2;
  transform: translateX(-50%);
}

.hgaeh-news-poster__arrow,
.hgaeh-news-lightbox__nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(27, 94, 32, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: var(--hgaeh-primary);
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.hgaeh-news-poster__arrow:hover {
  transform: translateY(-1px);
  background: var(--hgaeh-primary);
  color: var(--hgaeh-white);
}

.hgaeh-news-poster__arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.96);
}

.hgaeh-news-poster__arrow--prev {
  left: 10px;
}

.hgaeh-news-poster__arrow--next {
  right: 10px;
}

.hgaeh-news-poster__arrow--prev:hover,
.hgaeh-news-poster__arrow--next:hover {
  transform: translateY(calc(-50% - 1px));
}

.hgaeh-news-poster__dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  background: rgba(8, 16, 18, 0.42);
  backdrop-filter: blur(12px);
}

.hgaeh-news-poster__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(27, 94, 32, 0.18);
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.hgaeh-news-poster__dot.is-active,
.hgaeh-news-poster__dot:hover {
  background: var(--hgaeh-primary);
  transform: scale(1.08);
}

.hgaeh-news-poster.is-single .hgaeh-news-poster__slide:hover {
  transform: scale(1.005);
}

.hgaeh-news-lightbox {
  position: fixed;
  inset: 0;
  z-index: 999999;
  display: grid;
  place-items: center;
}

.hgaeh-news-lightbox[hidden] {
  display: none;
}

.hgaeh-news-lightbox__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(8, 15, 18, 0.82);
}

.hgaeh-news-lightbox__dialog {
  position: relative;
  z-index: 1;
  width: min(1220px, calc(100% - 32px));
  max-height: calc(100vh - 32px);
  padding: 22px;
  border-radius: 28px;
  background: rgba(11, 18, 32, 0.92);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.32);
}

.hgaeh-news-lightbox__content {
  display: grid;
  gap: 14px;
}

.hgaeh-news-lightbox__image {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 120px);
  margin: 0 auto;
  border-radius: 18px;
  background: #ffffff;
}

.hgaeh-news-lightbox__caption {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.7;
  text-align: center;
}

.hgaeh-news-lightbox__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--hgaeh-white);
  font-size: 1.8rem;
  cursor: pointer;
}

.hgaeh-news-lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
}

.hgaeh-news-lightbox__nav:hover {
  transform: translateY(calc(-50% - 1px));
  background: var(--hgaeh-primary);
  color: var(--hgaeh-white);
}

.hgaeh-news-lightbox__nav--prev {
  left: 18px;
}

.hgaeh-news-lightbox__nav--next {
  right: 18px;
}

html.hgaeh-lightbox-open,
body.hgaeh-lightbox-open {
  overflow: hidden;
}

.hgaeh-video-section {
  background: var(--hgaeh-white);
}

.hgaeh-video-section .hgaeh-section-head {
  margin-bottom: 30px;
}

.hgaeh-video-section .hgaeh-section-head h2 {
  margin-bottom: 18px;
}

.hgaeh-video-carousel {
  position: relative;
  padding: clamp(22px, 3vw, 34px);
  background: linear-gradient(180deg, #fcfefd 0%, #f3f7f3 100%);
  border: 1px solid rgba(27, 94, 32, 0.12);
  border-radius: 28px;
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.08);
}

.hgaeh-video-toolbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 24px;
}

.hgaeh-video-toolbar__copy {
  max-width: 820px;
}

.hgaeh-video-toolbar__eyebrow {
  margin: 0 0 8px;
  color: var(--hgaeh-primary);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hgaeh-video-toolbar__title {
  margin: 0;
  font-size: clamp(1.3rem, 2.2vw, 1.95rem);
  line-height: 1.28;
  letter-spacing: -0.02em;
  overflow-wrap: anywhere;
}

.hgaeh-video-toolbar__nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
  padding: 8px;
  background: linear-gradient(135deg, rgba(10, 23, 16, 0.96), rgba(27, 94, 32, 0.92));
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  box-shadow: 0 18px 38px rgba(8, 20, 12, 0.22);
}

.hgaeh-video-toolbar__count {
  min-width: 86px;
  margin: 0;
  color: rgba(255, 255, 255, 0.96);
  font-size: 0.78rem;
  font-weight: 800;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.22em;
  text-align: center;
  text-transform: uppercase;
}

.hgaeh-video-toolbar__divider {
  margin: 0 4px;
  color: rgba(255, 255, 255, 0.42);
}

.hgaeh-video-viewport {
  overflow: hidden;
  border-radius: 24px;
  background: #0f172a;
}

.hgaeh-video-track {
  display: flex;
  transition: transform 0.38s cubic-bezier(0.22, 1, 0.36, 1);
}

.hgaeh-video-slide {
  min-width: 100%;
}

.hgaeh-video-player {
  position: relative;
  padding: clamp(10px, 1.4vw, 16px);
  background: linear-gradient(180deg, #162338 0%, #0b1220 100%);
}

.hgaeh-video-player iframe,
.hgaeh-video-player .presto-block-video,
.hgaeh-video-fallback img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
}

.hgaeh-video-player iframe {
  border: 0;
}

.hgaeh-video-player .presto-block-video {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.34);
}

.hgaeh-video-player .presto-block-video:not(.presto-sticky-parent) {
  transform: none;
}

.hgaeh-video-fallback {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(2, 6, 23, 0.34);
}

.hgaeh-video-fallback::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 18, 32, 0.08) 0%, rgba(11, 18, 32, 0.44) 100%);
  pointer-events: none;
}

.hgaeh-video-play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  border-radius: 999px;
  background: rgba(27, 94, 32, 0.92);
  color: var(--hgaeh-white);
  font-size: 1.75rem;
  box-shadow: 0 14px 32px rgba(27, 94, 32, 0.28);
  z-index: 2;
}

.hgaeh-carousel-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--hgaeh-white);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12), 0 10px 22px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(10px);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.hgaeh-carousel-arrow:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(255, 255, 255, 0.96);
  color: var(--hgaeh-primary);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.16);
}

.hgaeh-carousel-arrow:focus-visible {
  outline: 3px solid rgba(251, 192, 45, 0.36);
  outline-offset: 2px;
}

.hgaeh-free-zone {
  background: var(--hgaeh-soft);
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.hgaeh-free-layout {
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
  gap: 48px;
  align-items: start;
}

.hgaeh-free-sidebar h2,
.hgaeh-learning-grid h2,
.hgaeh-breadcrumb strong,
.hgaeh-free-intro-card h1,
.hgaeh-side-cta h3,
.hgaeh-side-list h3 {
  margin: 0;
}

.hgaeh-free-sidebar p,
.hgaeh-learning-grid p {
  color: var(--hgaeh-gray);
}

.hgaeh-free-sidebar p {
  margin: 0 0 40px;
  font-size: 0.95rem;
  line-height: 1.8;
}

.hgaeh-filter-stack,
.hgaeh-pill-filters,
.hgaeh-course-filters {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hgaeh-filter-stack {
  flex-direction: column;
  align-items: stretch;
}

.hgaeh-free-sidebar__overview {
  margin-top: 16px;
}

.hgaeh-free-sidebar__overview .hgaeh-btn {
  width: 100%;
}

.hgaeh-free-main {
  display: grid;
  gap: 20px;
}

.hgaeh-filter-stack button,
.hgaeh-pill-filters button,
.hgaeh-course-filters button {
  border: 1px solid var(--hgaeh-border);
  background: var(--hgaeh-white);
  color: var(--hgaeh-gray);
  border-radius: 2px;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.hgaeh-filter-stack button {
  padding: 16px 24px;
  text-align: left;
}

.hgaeh-pill-filters button,
.hgaeh-course-filters button {
  padding: 10px 18px;
  border-radius: 999px;
}

.hgaeh-filter-stack button.is-active,
.hgaeh-pill-filters button.is-active,
.hgaeh-course-filters button.is-active {
  color: var(--hgaeh-white);
  background: var(--hgaeh-primary);
  border-color: var(--hgaeh-primary);
  box-shadow: 0 10px 24px rgba(27, 94, 32, 0.14);
}

.hgaeh-filter-stack button:hover,
.hgaeh-filter-stack button:focus-visible,
.hgaeh-pill-filters button:hover,
.hgaeh-pill-filters button:focus-visible,
.hgaeh-course-filters button:hover,
.hgaeh-course-filters button:focus-visible {
  border-color: var(--hgaeh-primary);
  background: #f1f8e9;
  color: #184d1b;
  box-shadow: 0 10px 24px rgba(27, 94, 32, 0.08);
  outline: none;
}

.hgaeh-filter-stack button.is-active:hover,
.hgaeh-filter-stack button.is-active:focus-visible,
.hgaeh-pill-filters button.is-active:hover,
.hgaeh-pill-filters button.is-active:focus-visible,
.hgaeh-course-filters button.is-active:hover,
.hgaeh-course-filters button.is-active:focus-visible {
  color: var(--hgaeh-white);
  background: var(--hgaeh-primary-light);
  border-color: var(--hgaeh-primary-light);
  box-shadow: 0 12px 28px rgba(27, 94, 32, 0.2);
}

.hgaeh-free-list,
.hgaeh-resource-list {
  display: grid;
  gap: 16px;
}

.hgaeh-free-list__footer {
  display: flex;
  justify-content: center;
}

.hgaeh-free-row,
.hgaeh-resource-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  color: inherit;
  text-decoration: none;
  background: var(--hgaeh-white);
  border: 1px solid #e5e7eb;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.hgaeh-free-row:hover,
.hgaeh-course-card:hover,
.hgaeh-home-course-card:hover,
.hgaeh-featured-banner:hover,
.hgaeh-audio-block:hover {
  transform: translateY(-2px);
  border-color: rgba(27, 94, 32, 0.22);
  box-shadow: var(--hgaeh-shadow);
}

.hgaeh-free-row:hover {
  transform: none;
  background: #f1f8e9;
  box-shadow: none;
}

.hgaeh-resource-card:hover {
  transform: none;
  border-color: var(--hgaeh-primary);
  box-shadow: 0 16px 28px rgba(12, 29, 14, 0.08);
}

.hgaeh-free-row__main {
  display: flex;
  align-items: center;
  gap: 18px;
  flex: 1 1 auto;
  min-width: 0;
}

.hgaeh-free-row__index {
  color: #d1d5db;
  font-size: 1.75rem;
  font-weight: 700;
  flex: 0 0 54px;
  min-width: 54px;
  text-align: center;
  line-height: 1;
}

.hgaeh-free-row__main > div {
  flex: 1 1 auto;
  min-width: 0;
}

.hgaeh-free-row h3,
.hgaeh-resource-card h3,
.hgaeh-course-card h3,
.hgaeh-home-course-card h3 {
  margin: 0;
}

.hgaeh-free-row h3 {
  font-size: 1.05rem;
  line-height: 1.35;
}

.hgaeh-free-row p,
.hgaeh-resource-card p,
.hgaeh-course-meta,
.hgaeh-course-points,
.hgaeh-featured-copy p,
.hgaeh-page-hero p,
.hgaeh-side-cta p,
.hgaeh-free-intro-card p {
  color: var(--hgaeh-gray);
}

.hgaeh-free-row p {
  margin: 6px 0 0;
  font-size: 0.75rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.hgaeh-free-row__badge {
  padding: 7px 10px;
  background: #f3f4f6;
  color: #6b7280;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hgaeh-home-course-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

.hgaeh-home-course-card {
  display: grid;
  grid-template-columns: minmax(240px, 0.44fr) minmax(0, 0.56fr);
  overflow: hidden;
  border: 1px solid #f3f4f6;
  background: var(--hgaeh-white);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.hgaeh-home-course-card__image,
.hgaeh-course-card__image {
  position: relative;
  overflow: hidden;
  background: #f3f4f6;
}

.hgaeh-home-course-card__image {
  aspect-ratio: 1 / 1;
  align-self: start;
}

.hgaeh-home-course-card__image-link {
  display: block;
  min-height: 0;
  width: 100%;
  height: auto;
  align-self: start;
}

.hgaeh-home-course-card__image::after,
.hgaeh-course-card__image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(27, 94, 32, 0.08);
  pointer-events: none;
}

.hgaeh-home-course-card__image img,
.hgaeh-course-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(0.5);
  transition: transform 0.7s ease, filter 0.35s ease;
}

.hgaeh-home-course-card:hover .hgaeh-home-course-card__image img,
.hgaeh-course-card:hover .hgaeh-course-card__image img {
  filter: grayscale(0);
  transform: scale(1.06);
}

.hgaeh-home-course-card__body,
.hgaeh-course-card__body {
  padding: 32px 32px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 14px;
}

.hgaeh-home-course-card__content {
  display: grid;
  gap: 0;
}

.hgaeh-card-code {
  margin: 0;
  color: var(--hgaeh-primary);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hgaeh-home-course-card h3 {
  font-size: clamp(1.25rem, 1.8vw, 1.5rem);
  line-height: 1.3;
  margin: 0;
}

.hgaeh-home-course-card__title-link {
  color: inherit;
  text-decoration: none;
}

.hgaeh-home-course-card__title-link:hover {
  color: var(--hgaeh-primary);
}

.hgaeh-home-course-points,
.hgaeh-course-points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 10px;
}

.hgaeh-home-course-points li,
.hgaeh-course-points li {
  position: relative;
  padding-left: 0;
}

.hgaeh-home-course-points li {
  color: #a8b1c0;
  font-size: 0.95rem;
  font-style: italic;
  line-height: 1.65;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.hgaeh-course-points li {
  color: var(--hgaeh-gray);
  font-size: 0.8125rem;
  display: flex;
  align-items: flex-start;
  gap: 0;
  padding-left: 0;
}

.hgaeh-home-course-points li::before,
.hgaeh-course-points li::before {
  content: "✓";
  position: static;
  color: var(--hgaeh-primary);
  font-weight: 700;
  flex: none;
  line-height: 1.3;
}

.hgaeh-course-points li::before {
  margin-right: 8px;
}

.hgaeh-home-course-points li::before {
  color: #b8c2d3;
  font-size: 1.2rem;
  line-height: 1.35;
}

.hgaeh-cta {
  position: relative;
  overflow: hidden;
  color: var(--hgaeh-white);
  background: radial-gradient(circle at top, rgba(27, 94, 32, 0.4), transparent 55%), #101510;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hgaeh-cta::before {
  content: "";
  position: absolute;
  top: -120px;
  left: 50%;
  width: 800px;
  height: 400px;
  transform: translateX(-50%);
  background: rgba(27, 94, 32, 0.7);
  filter: blur(120px);
  opacity: 0.18;
  pointer-events: none;
}

.hgaeh-cta--green {
  background: var(--hgaeh-primary);
}

.hgaeh-cta-shell {
  max-width: 860px;
  position: relative;
  z-index: 1;
  text-align: center;
}

.hgaeh-cta h2 {
  margin: 0 0 16px;
  color: var(--hgaeh-white);
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.18;
}

.hgaeh-cta p {
  max-width: 720px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.95rem, 1.4vw, 1.0625rem);
  line-height: 1.8;
}

.hgaeh-cta-kicker {
  display: inline-block;
  margin: 0 0 18px;
  padding: 6px 16px;
  color: var(--hgaeh-accent);
  background: rgba(251, 192, 45, 0.1);
  border: 1px solid rgba(251, 192, 45, 0.2);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hgaeh-cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.hgaeh-page-hero {
  padding: 60px 0 62px;
  position: relative;
  overflow: hidden;
  border-bottom: 4px solid var(--hgaeh-primary);
}

.hgaeh-page-hero--dark {
  color: var(--hgaeh-white);
  background-image: linear-gradient(180deg, rgba(11, 17, 32, 0.92) 0%, rgba(20, 21, 24, 0.95) 100%), var(--hgaeh-page-hero-bg-image, none);
  background-size: cover;
  background-position: center;
}

.hgaeh-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top, rgba(146, 211, 83, 0.16), transparent 42%);
  pointer-events: none;
}

.hgaeh-page-hero .hgaeh-shell {
  position: relative;
  z-index: 1;
}

.hgaeh-page-hero__breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hgaeh-page-hero__breadcrumb a {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.hgaeh-page-hero__breadcrumb a:hover {
  color: var(--hgaeh-white);
}

.hgaeh-page-hero__breadcrumb strong {
  color: var(--hgaeh-accent);
  font-weight: 700;
}

.hgaeh-page-hero h1 {
  margin: 0 0 12px;
  color: var(--hgaeh-white);
  font-size: clamp(1.95rem, 2.8vw, 2.5rem);
  line-height: 1.18;
  letter-spacing: -0.02em;
}

.hgaeh-page-hero p {
  max-width: 760px;
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: clamp(0.95rem, 1.3vw, 1rem);
  line-height: 1.75;
}

.hgaeh-featured-banner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 26px;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 24px 32px;
  margin-bottom: 64px;
  background: var(--hgaeh-white);
  border: 1px solid rgba(251, 192, 45, 0.3);
  box-shadow: 0 18px 32px rgba(15, 23, 42, 0.08);
}

.hgaeh-featured-banner::after {
  content: "";
  position: absolute;
  top: -12px;
  right: -12px;
  width: 132px;
  height: 132px;
  background: rgba(251, 192, 45, 0.1);
  border-bottom-left-radius: 100%;
  z-index: 0;
  pointer-events: none;
}

.hgaeh-featured-banner > * {
  position: relative;
  z-index: 1;
}

.hgaeh-featured-badge {
  display: inline-flex;
  padding: 4px 12px;
  margin-bottom: 16px;
  background: var(--hgaeh-accent);
  color: var(--hgaeh-dark);
  border-radius: 2px;
  font-size: 0.75rem;
  font-weight: 700;
}

.hgaeh-featured-copy h2 {
  margin: 0 0 16px;
  font-size: clamp(1.5rem, 2.4vw, 1.875rem);
  line-height: 1.25;
}

.hgaeh-featured-copy p {
  margin: 0 0 24px;
  font-size: 0.95rem;
  line-height: 1.8;
}

.hgaeh-price-line {
  display: flex;
  gap: 18px;
  align-items: end;
  flex-wrap: wrap;
}

.hgaeh-price-line__old {
  color: #9ca3af;
  text-decoration: line-through;
}

.hgaeh-price-line__new {
  color: #dc2626;
  font-size: 1.7rem;
  font-weight: 700;
}

.hgaeh-featured-actions {
  display: grid;
  gap: 12px;
  min-width: 220px;
}

.hgaeh-featured-actions .hgaeh-btn {
  width: 100%;
}

.hgaeh-course-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
}

.hgaeh-course-card {
  overflow: hidden;
  border: 1px solid #f3f4f6;
  background: var(--hgaeh-white);
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.hgaeh-course-card__image {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #f3f4f6;
}

.hgaeh-course-card__image-link {
  display: block;
  color: inherit;
  text-decoration: none;
}

.hgaeh-course-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  padding: 4px 8px;
  color: var(--hgaeh-white);
  background: rgba(17, 24, 39, 0.84);
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hgaeh-course-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 !important;
  color: #9ca3af;
  font-size: 0.875rem;
}

.hgaeh-course-meta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  line-height: 0;
}

.hgaeh-course-meta__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.hgaeh-course-card__footer {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: end;
  padding-top: 16px;
  border-top: 1px solid #f3f4f6;
}

.hgaeh-course-price small {
  display: block;
  color: #9ca3af;
  text-decoration: line-through;
}

.hgaeh-course-price strong {
  display: block;
  margin-top: 4px;
  font-size: 1.125rem;
}

.hgaeh-course-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.hgaeh-course-actions__preview {
  color: var(--hgaeh-primary);
  padding: 8px 4px;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: none;
}

.hgaeh-course-card h3 {
  font-size: 1.25rem;
  line-height: 1.35;
}

.hgaeh-course-card__title-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.2s ease;
}

.hgaeh-course-card__title-link:hover,
.hgaeh-course-card:hover .hgaeh-course-card__title-link {
  color: var(--hgaeh-primary);
}

.hgaeh-course-card .hgaeh-course-points {
  margin: 2px 0 0 !important;
  margin-left: 0 !important;
  margin-bottom: 0 !important;
  padding-left: 0 !important;
}

.hgaeh-course-card .hgaeh-course-points li {
  margin: 0 !important;
  padding-left: 0 !important;
}

.hgaeh-learning-mode {
  padding: 40px 0;
  background: var(--hgaeh-white);
  border-bottom: 1px solid #e5e7eb;
}

.hgaeh-learning-grid {
  display: grid;
  grid-template-columns: 0.34fr 0.66fr;
  gap: 48px;
  align-items: center;
  max-width: 1000px;
  margin: 0 auto;
}

.hgaeh-learning-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.hgaeh-learning-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: start;
  padding: 22px;
  background: #f7f8f3;
  border: 1px solid rgba(15, 23, 42, 0.05);
  border-radius: 8px;
}

.hgaeh-learning-card--accent {
  background: #fff9eb;
}

.hgaeh-learning-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 999px;
  background: rgba(27, 94, 32, 0.12);
  color: var(--hgaeh-primary);
  font-size: 1.2rem;
  font-weight: 700;
}

.hgaeh-learning-card--accent .hgaeh-learning-card__icon {
  background: rgba(251, 192, 45, 0.22);
  color: #9a6700;
}

.hgaeh-learning-cards h3 {
  margin: 0 0 6px;
  font-size: 1rem;
}

.hgaeh-learning-cards p {
  margin: 0;
  color: #6b7280;
  font-size: 0.84rem;
  line-height: 1.7;
}

.hgaeh-resource-card__meta {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 0;
}

.hgaeh-resource-card__meta span {
  padding: 2px 8px;
  border-radius: 2px;
  background: rgba(27, 94, 32, 0.1);
  color: var(--hgaeh-primary);
  font-size: 0.625rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hgaeh-resource-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px 24px;
  align-items: center;
  border-radius: 8px;
}

.hgaeh-resource-card__meta {
  grid-column: 1;
}

.hgaeh-resource-card__meta span:last-child {
  padding: 0;
  background: none;
  color: #9ca3af;
  font-size: 0.6875rem;
}

.hgaeh-resource-card__copy {
  grid-column: 1;
}

.hgaeh-resource-card__copy h3 {
  font-size: 1.125rem;
  line-height: 1.35;
}

.hgaeh-resource-card__copy p {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.hgaeh-resource-card__cta {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
  padding: 10px 24px;
  border: 2px solid var(--hgaeh-primary);
  border-radius: 999px;
  color: var(--hgaeh-primary);
  font-size: 0.875rem;
  font-weight: 700;
}

.hgaeh-resource-card__cta::after {
  content: "▶";
  margin-left: 8px;
  font-size: 0.75rem;
}

.hgaeh-resource-card:hover .hgaeh-resource-card__cta {
  background: var(--hgaeh-primary);
  color: var(--hgaeh-white);
}

.hgaeh-note {
  margin-top: 24px;
  color: #9ca3af;
  text-align: center;
  font-size: 0.75rem;
}

.hgaeh-breadcrumb {
  padding: 12px 0;
  background: var(--hgaeh-white);
  border-bottom: 1px solid #e5e7eb;
}

.hgaeh-breadcrumb .hgaeh-shell {
  display: flex;
  gap: 10px;
  align-items: center;
  color: #6b7280;
  font-size: 0.75rem;
}

.hgaeh-breadcrumb a {
  color: inherit;
  text-decoration: none;
}

body.single-free-course .content-area {
  margin-top: 0;
  margin-bottom: 0;
}

body.single-free-course .hgaeh-section:first-of-type {
  padding-top: clamp(40px, 5vw, 48px);
  padding-bottom: clamp(40px, 5vw, 48px);
}

.hgaeh-free-single {
  background: var(--hgaeh-soft);
}

.hgaeh-free-lock {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(440px, 62vh, 640px);
  padding: clamp(20px, 5vw, 40px);
  overflow: hidden;
  background:
    repeating-linear-gradient(135deg, rgba(27, 94, 32, 0.04) 0 2px, transparent 2px 42px),
    linear-gradient(180deg, #f8faf8 0%, #eef6ea 100%);
  border: 1px solid rgba(27, 94, 32, 0.08);
  border-radius: 4px;
}

.hgaeh-free-lock::before,
.hgaeh-free-lock::after {
  content: "";
  position: absolute;
  border-radius: 999px;
  filter: blur(40px);
  opacity: 0.22;
}

.hgaeh-free-lock::before {
  top: -48px;
  right: -56px;
  width: 220px;
  height: 220px;
  background: rgba(27, 94, 32, 0.34);
}

.hgaeh-free-lock::after {
  left: -44px;
  bottom: -24px;
  width: 180px;
  height: 180px;
  background: rgba(251, 192, 45, 0.3);
}

.hgaeh-free-lock__card {
  position: relative;
  z-index: 1;
  width: min(100%, 560px);
  background: var(--hgaeh-white);
  border: 1px solid #e5e7eb;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.12);
}

.hgaeh-free-lock__bar {
  height: 6px;
  background: linear-gradient(90deg, var(--hgaeh-primary) 0%, var(--hgaeh-primary-light) 65%, var(--hgaeh-accent) 100%);
}

.hgaeh-free-lock__content {
  padding: clamp(32px, 4vw, 48px);
  text-align: center;
}

.hgaeh-free-lock__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 84px;
  height: 84px;
  margin-bottom: 24px;
  color: var(--hgaeh-primary);
  background: var(--hgaeh-soft);
  border: 1px solid #edf1ea;
  border-radius: 999px;
  box-shadow: inset 0 2px 12px rgba(27, 94, 32, 0.08);
}

.hgaeh-free-lock__icon svg {
  width: 42px;
  height: 42px;
}

.hgaeh-free-lock__content h1 {
  margin: 0 0 14px;
  font-size: clamp(1.8rem, 3vw, 2.25rem);
  line-height: 1.2;
}

.hgaeh-free-lock__description {
  max-width: 34rem;
  margin: 0 auto 28px;
  color: #5b6470;
  font-size: 0.975rem;
  line-height: 1.85;
}

.hgaeh-free-lock__actions {
  display: grid;
  gap: 14px;
  width: min(100%, 320px);
  margin: 0 auto;
}

.hgaeh-free-lock__actions .hgaeh-btn {
  width: 100%;
}

.hgaeh-free-lock__footer {
  padding: 18px 24px 22px;
  text-align: center;
  background: #f9fafb;
  border-top: 1px solid #f1f5f9;
}

.hgaeh-free-lock__footer p {
  margin: 0;
  color: #6b7280;
  font-size: 0.875rem;
}

.hgaeh-free-lock__footer a {
  color: var(--hgaeh-primary);
  font-weight: 700;
  text-decoration: none;
}

.hgaeh-free-lock__footer a:hover {
  text-decoration: underline;
}

.hgaeh-free-single-layout {
  display: grid;
  grid-template-columns: minmax(0, 2fr) minmax(300px, 1fr);
  gap: 40px;
  align-items: start;
}

.hgaeh-free-single-main,
.hgaeh-free-single-side {
  display: grid;
  gap: 24px;
}

.hgaeh-free-intro-card,
.hgaeh-audio-block,
.hgaeh-side-list {
  padding: 24px 28px;
  background: var(--hgaeh-white);
  border: 1px solid #e5e7eb;
  border-radius: 2px;
  box-shadow: 0 4px 16px rgba(15, 23, 42, 0.04);
}

.hgaeh-side-cta {
  padding: 24px 28px;
  color: var(--hgaeh-white);
  background: linear-gradient(180deg, #171717 0%, #0f172a 100%);
  border-top: 4px solid var(--hgaeh-accent);
  box-shadow: 0 20px 36px rgba(0, 0, 0, 0.16);
}

.hgaeh-free-intro-card__summary {
  margin: 0;
}

.hgaeh-free-intro-card__summary p {
  margin: 0 0 12px;
}

.hgaeh-free-intro-card__summary p:last-child {
  margin-bottom: 0;
}

.hgaeh-free-intro-card h1 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 2.6vw, 1.875rem);
  line-height: 1.25;
}

.hgaeh-free-intro-card__info {
  display: grid;
  gap: 16px;
}

.hgaeh-free-intro-card__eyebrow {
  display: block;
  margin-bottom: 8px;
  color: var(--hgaeh-primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hgaeh-free-intro-card__speaker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: var(--hgaeh-soft);
  border: 1px solid #e5e7eb;
  border-radius: 4px;
}

.hgaeh-free-intro-card__speaker .hgaeh-free-intro-card__eyebrow {
  margin-bottom: 0;
}

.hgaeh-free-intro-card__speaker strong {
  font-size: 0.9375rem;
  color: var(--hgaeh-dark);
}

.hgaeh-free-intro-card p {
  font-size: 0.875rem;
  line-height: 1.75;
}

.hgaeh-audio-block h2 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 1.25rem;
}

.hgaeh-audio-block h2 span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--hgaeh-white);
  background: var(--hgaeh-primary);
  border-radius: 999px;
  font-size: 0.875rem;
}

.hgaeh-audio-panel {
  padding: 16px;
  margin-bottom: 18px;
  background: var(--hgaeh-soft);
  border: 1px solid rgba(27, 94, 32, 0.2);
  border-radius: 4px;
}

.hgaeh-audio-panel strong {
  display: block;
  margin-bottom: 10px;
  color: var(--hgaeh-primary);
  font-size: 0.875rem;
}

.hgaeh-audio-panel audio {
  width: 100%;
}

.hgaeh-audio-placeholder {
  margin-top: 12px;
  color: #6b7280;
  font-size: 0.95rem;
}

.hgaeh-audio-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.hgaeh-audio-content--split {
  grid-template-columns: minmax(0, 1.1fr) minmax(260px, 0.9fr);
  align-items: start;
}

.hgaeh-audio-content.is-text-only {
  grid-template-columns: 1fr;
}

.hgaeh-audio-content.is-image-only {
  display: block;
}

.hgaeh-audio-content__text p:last-child {
  margin-bottom: 0;
}

.hgaeh-audio-content__text {
  padding-left: 8px;
  border-left: 2px solid #f3f4f6;
}

.hgaeh-audio-content__text p {
  color: var(--hgaeh-gray);
  font-size: 0.875rem;
  line-height: 1.8;
}

.hgaeh-audio-content__image {
  padding: 8px;
  background: #f9fafb;
  border: 1px solid #e5e7eb;
}

.hgaeh-audio-content.is-image-only .hgaeh-audio-content__image {
  padding: 0;
  background: transparent;
  border: 0;
}

.hgaeh-audio-content__image img {
  width: 100%;
  display: block;
}

.hgaeh-side-cta {
  position: sticky;
  top: 110px;
}

.hgaeh-side-cta h3 {
  margin: 0 0 8px;
  color: var(--hgaeh-white);
  font-size: 1.25rem;
}

.hgaeh-side-cta p {
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.875rem;
  line-height: 1.75;
}

.hgaeh-side-cta .hgaeh-btn {
  width: 100%;
}

.hgaeh-side-list {
  padding: 0;
  overflow: hidden;
}

.hgaeh-side-list h3 {
  padding: 16px;
  margin: 0;
  font-size: 0.875rem;
  background: #f9fafb;
  border-bottom: 1px solid #f3f4f6;
}

.hgaeh-side-list a {
  display: block;
  padding: 16px;
  color: inherit;
  text-decoration: none;
  border-top: 1px solid #f3f4f6;
  border-left: 4px solid transparent;
}

.hgaeh-side-list a:first-of-type {
  border-top: 0;
}

.hgaeh-side-list a:hover {
  background: var(--hgaeh-soft);
}

.hgaeh-side-list strong {
  display: block;
  color: var(--hgaeh-gray);
  font-size: 0.875rem;
  line-height: 1.4;
}

.hgaeh-side-list strong em {
  display: inline-flex;
  align-items: center;
  margin-left: 10px;
  padding: 3px 8px;
  border-radius: 999px;
  background: rgba(27, 94, 32, 0.08);
  color: var(--hgaeh-primary);
  font-size: 0.65rem;
  font-style: normal;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hgaeh-side-list span {
  display: block;
  margin-top: 6px;
  color: #9ca3af;
  font-size: 0.6875rem;
}

.hgaeh-side-list a.is-current {
  background: #f4f8ef;
  border-left-color: var(--hgaeh-primary);
}

.hgaeh-side-list a.is-current strong {
  color: var(--hgaeh-primary);
}

.hgaeh-courses-page,
.hgaeh-free-resources-page,
.hgaeh-free-single {
  background: var(--hgaeh-soft);
}

.hgaeh-free-resources-page .hgaeh-page-hero .hgaeh-shell {
  text-align: center;
}

.hgaeh-free-resources-page .hgaeh-page-hero--dark {
  background-image: linear-gradient(180deg, rgba(11, 17, 32, 0.72) 0%, rgba(20, 21, 24, 0.84) 100%), var(--hgaeh-page-hero-bg-image, none);
  background-position: center 34%;
}

.hgaeh-free-resources-page .hgaeh-page-hero h1 {
  color: var(--hgaeh-white);
}

.hgaeh-free-resources-page .hgaeh-page-hero p {
  margin-inline: auto;
  color: rgba(255, 255, 255, 0.88);
}

.hgaeh-free-resources-page .hgaeh-pill-filters {
  margin-bottom: 12px;
}

.hgaeh-free-resources-page .hgaeh-cta--green {
  background: var(--hgaeh-primary);
  border-top: 0;
  border-bottom: 0;
}

.hgaeh-free-resources-page .hgaeh-cta--green::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: none;
  background-image:
    repeating-linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 40px),
    repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.08) 0 2px, transparent 2px 40px);
  background-size: 40px 40px;
  background-color: transparent;
  filter: none;
  opacity: 1;
}

.hgaeh-free-resources-page .hgaeh-cta-shell {
  max-width: 800px;
}

.hgaeh-free-resources-page .hgaeh-cta h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
}

.hgaeh-free-resources-page .hgaeh-cta p {
  max-width: 800px;
  margin: 0 auto 32px;
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.6vw, 1.125rem);
}

.hgaeh-free-resources-page .hgaeh-cta-actions {
  margin-top: 0;
}

.hgaeh-free-resources-page .hgaeh-cta .hgaeh-btn {
  padding: 16px 40px;
  border-radius: 2px;
  font-size: clamp(1rem, 1.5vw, 1.125rem);
}

.hgaeh-free-resources-page .hgaeh-cta .hgaeh-btn--accent {
  border-color: var(--hgaeh-accent);
  box-shadow: none;
}

.hgaeh-free-resources-page .hgaeh-cta .hgaeh-btn--accent:hover {
  background: #f6c843;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.14);
}

.hgaeh-free-resources-page .hgaeh-cta .hgaeh-btn--ghost-light {
  color: var(--hgaeh-white);
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.3);
}

.hgaeh-free-resources-page .hgaeh-cta .hgaeh-btn--ghost-light:hover {
  background: rgba(255, 255, 255, 0.2);
}

.hgaeh-inline-highlight {
  color: var(--hgaeh-accent);
  font-weight: 700;
}

.hgaeh-course-filters {
  justify-content: flex-start;
  padding-bottom: 24px;
  margin-bottom: 40px;
  border-bottom: 1px solid #e5e7eb;
}

@media (max-width: 1100px) {
  .hgaeh-hero-grid,
  .hgaeh-free-layout,
  .hgaeh-learning-grid,
  .hgaeh-free-single-layout {
    grid-template-columns: 1fr;
  }

  .hgaeh-featured-banner {
    grid-template-columns: 1fr;
  }

  .hgaeh-course-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hgaeh-hero-visual {
    display: none;
  }
}

@media (min-width: 821px) and (max-width: 1180px) {
  .hgaeh-home-course-grid {
    gap: 22px;
  }

  .hgaeh-home-course-card {
    grid-template-columns: minmax(190px, 0.4fr) minmax(0, 0.6fr);
  }

  .hgaeh-home-course-card__body {
    padding: 24px 22px;
    gap: 12px;
  }

  .hgaeh-home-course-card h3 {
    font-size: clamp(1.18rem, 1.55vw, 1.35rem);
  }

  .hgaeh-home-course-points {
    gap: 8px;
  }

  .hgaeh-home-course-points li {
    font-size: 0.9rem;
    line-height: 1.55;
  }
}

@media (max-width: 820px) {
  .hgaeh-shell {
    width: min(1200px, calc(100% - 28px));
  }

  .hgaeh-free-lock {
    min-height: auto;
    padding: 16px;
  }

  .hgaeh-free-lock__content {
    padding: 28px 22px;
  }

  .hgaeh-free-lock__icon {
    width: 72px;
    height: 72px;
    margin-bottom: 20px;
  }

  .hgaeh-section {
    padding: 56px 0;
  }

  .hgaeh-hero {
    padding: 56px 0;
  }

  .hgaeh-hero-actions,
  .hgaeh-cta-actions,
  .hgaeh-course-card__footer {
    flex-direction: column;
    align-items: stretch;
  }

  .hgaeh-home-course-card,
  .hgaeh-course-grid,
  .hgaeh-home-course-grid {
    grid-template-columns: 1fr;
  }

  .hgaeh-hero-copy {
    text-align: center;
  }

  .hgaeh-hero-actions {
    justify-content: center;
  }

  .hgaeh-stats {
    margin-inline: auto;
  }

  .hgaeh-page-hero {
    padding: 44px 0;
  }

  .hgaeh-video-carousel {
    padding: 20px 16px 16px;
    border-radius: 22px;
  }

  .hgaeh-news-poster-section {
    padding: 12px 0 18px;
  }

  .hgaeh-news-poster {
    padding: 4px;
    border-radius: 16px;
  }

  .hgaeh-news-poster__image {
    border-radius: 14px;
  }

  .hgaeh-news-poster__counter {
    top: 8px;
    right: 8px;
    padding: 7px 10px;
    font-size: 0.72rem;
  }

  .hgaeh-news-poster__controls {
    bottom: 10px;
  }

  .hgaeh-news-poster__arrow,
  .hgaeh-news-lightbox__nav {
    width: 42px;
    height: 42px;
  }

  .hgaeh-news-lightbox__dialog {
    width: min(100%, calc(100% - 20px));
    padding: 18px 12px 12px;
    border-radius: 20px;
  }

  .hgaeh-news-poster__arrow--prev {
    left: 10px;
  }

  .hgaeh-news-poster__arrow--next {
    right: 10px;
  }

  .hgaeh-news-poster__dots {
    gap: 8px;
    padding: 7px 10px;
  }

  .hgaeh-news-lightbox__nav--prev {
    left: 10px;
  }

  .hgaeh-news-lightbox__nav--next {
    right: 10px;
  }

  .hgaeh-news-lightbox__image {
    max-height: calc(100vh - 120px);
  }

  .hgaeh-video-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }

  .hgaeh-video-toolbar__nav {
    justify-content: center;
    align-self: center;
    width: auto;
    max-width: 100%;
  }

  .hgaeh-video-toolbar__count {
    min-width: 0;
    flex: 1 1 auto;
  }

  .hgaeh-video-player {
    padding: 8px;
  }

  .hgaeh-video-play {
    width: 64px;
    height: 64px;
    font-size: 1.5rem;
  }

  .hgaeh-home-course-card__body,
  .hgaeh-course-card__body,
  .hgaeh-free-intro-card,
  .hgaeh-audio-block,
  .hgaeh-side-cta {
    padding: 20px;
  }

  .hgaeh-home-course-card {
    grid-template-columns: 1fr;
  }

  .hgaeh-home-course-card__image {
    aspect-ratio: 16 / 10;
  }

  .hgaeh-filter-stack {
    gap: 10px;
  }

  .hgaeh-free-row,
  .hgaeh-resource-card,
  .hgaeh-featured-banner {
    padding: 18px;
  }

  .hgaeh-free-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hgaeh-free-row__main {
    width: 100%;
    align-items: start;
  }

  .hgaeh-resource-card {
    grid-template-columns: 1fr;
  }

  .hgaeh-resource-card__cta {
    grid-column: 1;
    grid-row: auto;
    width: 100%;
    text-align: center;
    justify-self: stretch;
  }

  .hgaeh-learning-cards {
    grid-template-columns: 1fr;
  }

  .hgaeh-audio-content--split {
    grid-template-columns: 1fr;
  }

  .hgaeh-course-filters,
  .hgaeh-pill-filters {
    justify-content: center;
  }

  .hgaeh-carousel-arrow {
    display: inline-flex;
    width: 40px;
    height: 40px;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
  }
}

.wp-block-kadence-header-row2707_dc772a-17 {
  background: var(--hgaeh-primary);
  color: var(--hgaeh-white);
}

.wp-block-kadence-header-row2707_dc772a-17 .kadence-header-row-inner {
  min-height: 36px;
}

@keyframes hgaeh-ping {
  0% {
    transform: scale(1);
    opacity: 0.7;
  }

  75%,
  100% {
    transform: scale(2.4);
    opacity: 0;
  }
}

@media (max-width: 767px) {
  .hgaeh-kicker {
    margin-bottom: 24px;
    font-size: 0.76rem;
  }

  .hgaeh-page .hgaeh-hero-title {
    font-size: clamp(1.72rem, 8.2vw, 2.18rem);
    line-height: 1.08;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .hgaeh-video-section .hgaeh-section-head {
    margin-bottom: 24px;
  }

  .hgaeh-video-toolbar__eyebrow {
    font-size: 0.74rem;
  }

  .hgaeh-video-toolbar__title {
    font-size: clamp(1.1rem, 5.6vw, 1.34rem);
  }

  .hgaeh-carousel-arrow {
    width: 42px;
    height: 42px;
  }

}
