/* ╔══════════════════════════════════════════════════════════════════╗
   ║  GIA REVAMP 2026 — HOMEPAGE HIGHLIGHT SECTION (2-column body)     ║
   ║  Deploy to: LKY.Web\assets\GIA\revamp\gia-article-highlight.css   ║
   ║  Paired view: GIARevampArticle\Detail.Highlight.cshtml            ║
   ║  Paired JS  : assets\GIA\revamp\gia-article-highlight.js          ║
   ║                                                                   ║
   ║  Col 1: Categories dropdown (burgundy glass panel — deliberately  ║
   ║  DIFFERENT from the listing page's white combobox) + 4 recent     ║
   ║  articles + Read more. Col 2: Subscribe card + Latest Podcast.    ║
   ║  Self-sufficient: shared --gia-rv-* tokens are referenced with    ║
   ║  literal fallbacks. All rules scoped under .gia-revamp-root       ║
   ║  .gia-hl* — zero bleed into the legacy page.                      ║
   ╚══════════════════════════════════════════════════════════════════╝ */

/* ── Section shell — light band between the dark hero above and the
      podcast promo below; faint brand geometry drifts in the corners */
.gia-revamp-root .gia-hl {
    position: relative;
    overflow: hidden;
    padding: 72px 0 80px;
    background: #fff url(../images/highlights-bg.png) fixed no-repeat bottom center;
    background-size: cover;
    font-family: var(--gia-rv-font, 'Inter', 'Helvetica Neue', Arial, sans-serif);
    color: var(--gia-rv-ink, #231f20);
}

.gia-revamp-root .gia-hl .gia-rv-container {
    position: relative;
    z-index: 1;
    margin: 0 auto;
    padding: 0 24px;
    width: 100% !important;
    max-width: 1170px;
}

.gia-revamp-root .gia-hl__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 56px;
  align-items: start;
}

/* ═══ COLUMN 1 — Categories dropdown + article list ═══════════════ */

/* ── Heading-dropdown: the section title IS the control.
      Trigger: bold ink heading + burgundy chevron coin + gradient
      underline that carries the whole width. Panel: burgundy glass,
      white options sliding in from the left — nothing like the white
      form combobox on the listing page. */
.gia-revamp-root .gia-hl-dd {
  position: relative;
  margin: 0 0 26px;
  padding-bottom: 16px;
}
.gia-revamp-root .gia-hl-dd::after {          /* full-width baseline */
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: #e6e6e6;
}
.gia-revamp-root .gia-hl-dd__trigger {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin: 0;
  padding: 0 0 6px;
  border: 0;
  background: none;
  cursor: pointer;
  font-family: inherit;
  text-align: left;
}
.gia-revamp-root .gia-hl-dd__label {
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--gia-rv-ink, #231f20);
  transition: color .25s ease;
}
.gia-revamp-root .gia-hl-dd__trigger:hover .gia-hl-dd__label { color: var(--gia-rv-maroon, #96002c); }
.gia-revamp-root .gia-hl-dd__coin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--gia-rv-maroon, #96002c);
  color: #ffffff;
  transition: background .25s ease, transform .35s cubic-bezier(.22, .61, .36, 1);
}
.gia-revamp-root .gia-hl-dd__coin svg { width: 13px; height: 13px; display: block; }
.gia-revamp-root .gia-hl-dd__trigger:hover .gia-hl-dd__coin { background: var(--gia-rv-burgundy, #63001d); }
.gia-revamp-root .gia-hl-dd.is-open .gia-hl-dd__coin { transform: rotate(180deg); }
.gia-revamp-root .gia-hl-dd__trigger::after {   /* gradient underline sweep */
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  height: 3px;
  width: 54px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gia-rv-brand-red, #af1d48), var(--gia-rv-burgundy, #63001d));
  transition: width .45s cubic-bezier(.22, .61, .36, 1);
}
.gia-revamp-root .gia-hl-dd__trigger:hover::after,
.gia-revamp-root .gia-hl-dd.is-open .gia-hl-dd__trigger::after { width: 132px; }
.gia-revamp-root .gia-hl-dd__trigger:focus-visible {
  outline: 2px solid var(--gia-rv-brand-red, #af1d48);
  outline-offset: 4px;
}

/* burgundy glass panel */
.gia-revamp-root .gia-hl-dd__panel {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  z-index: 80;
  min-width: 300px;
  padding: 10px;
  border-radius: 10px;
  background: linear-gradient(150deg, rgba(74, 2, 23, .97) 0%, rgba(122, 8, 41, .97) 100%);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  box-shadow: 0 24px 56px rgba(60, 0, 18, .35);
  opacity: 0;
  transform: translateY(-10px) scale(.98);
  transform-origin: top left;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .24s ease, transform .3s cubic-bezier(.22, .61, .36, 1), visibility 0s .3s;
}
.gia-revamp-root .gia-hl-dd.is-open .gia-hl-dd__panel {
  opacity: 1;
  transform: none;
  visibility: visible;
  pointer-events: auto;
  transition: opacity .24s ease, transform .3s cubic-bezier(.22, .61, .36, 1);
}
.gia-revamp-root .gia-hl-dd__option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  margin: 0;
  padding: 11px 14px;
  border: 0;
  border-radius: 6px;
  background: transparent;
  cursor: pointer;
  font: 500 14px/1.3 var(--gia-rv-font, 'Inter', Arial, sans-serif);
  color: rgba(255, 255, 255, .88);
  text-align: left;
  /* JITTER FIX (same as the nav submenu): transform-only hover — the
     old padding-left reflow + accent bar growing past the text line
     made the panel height shift while scanning the options. */
  transition: background .18s ease, color .18s ease, transform .22s cubic-bezier(.22, .61, .36, 1);
}
.gia-revamp-root .gia-hl-dd.is-open .gia-hl-dd__option {
  /* backwards (not both): a filled `to{transform:none}` would pin the
     option and block the hover translateX after the entrance ends */
  animation: gia-hl-opt .32s cubic-bezier(.22, .61, .36, 1) backwards;
  animation-delay: calc(var(--gia-hl-i, 0) * 30ms);
}
@keyframes gia-hl-opt {
  from { opacity: 0; transform: translateX(-14px); }
  to   { opacity: 1; transform: none; }
}
.gia-revamp-root .gia-hl-dd__option::before {   /* accent bar — fixed box,
  growth is a layout-free scaleY */
  content: "";
  flex: none;
  width: 4px;
  height: 18px;
  border-radius: 2px;
  background: rgba(255, 255, 255, .22);
  transform-origin: center;
  transition: background .18s ease, transform .22s cubic-bezier(.22, .61, .36, 1);
}
.gia-revamp-root .gia-hl-dd__option:hover,
.gia-revamp-root .gia-hl-dd__option:focus-visible {
  outline: none;
  background: rgba(255, 255, 255, .1);
  color: #ffffff;
  transform: translateX(4px);
}
.gia-revamp-root .gia-hl-dd__option:hover::before,
.gia-revamp-root .gia-hl-dd__option:focus-visible::before {
  background: var(--gia-rv-brand-red, #af1d48);
  transform: scaleY(1.33);
}
.gia-revamp-root .gia-hl-dd__option[aria-selected="true"] {
  color: #ffffff;
  font-weight: 700;
}
.gia-revamp-root .gia-hl-dd__option[aria-selected="true"]::before {
  background: var(--gia-rv-brand-red, #af1d48);
  transform: scaleY(1.33);
}
.gia-revamp-root .gia-hl-dd__option[aria-selected="true"]::after {
  content: "";
  margin-left: auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gia-rv-brand-red, #af1d48);
  box-shadow: 0 0 0 4px rgba(175, 29, 72, .28);
}

/* ── Article rows ─────────────────────────────────────────────────── */
.gia-revamp-root .gia-hl-list { min-height: 320px; }
.gia-revamp-root .gia-hl-row {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #ececec;
  opacity: 0;                              /* revealed by .gia-hl-in   */
}
.gia-revamp-root .gia-hl-row:last-of-type { border-bottom: 0; }
.gia-revamp-root .gia-hl-row.gia-hl-in {
  animation: gia-hl-rise .55s cubic-bezier(.22, .61, .36, 1) both;
  animation-delay: calc(var(--gia-hl-i, 0) * 90ms);
}
@keyframes gia-hl-rise {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}
.gia-revamp-root .gia-hl-row.is-leaving {
  animation: gia-hl-sink .22s ease both;
  animation-delay: calc(var(--gia-hl-i, 0) * 30ms);
}
@keyframes gia-hl-sink {
  to { opacity: 0; transform: translateY(-12px); }
}
.gia-revamp-root .gia-hl-row__thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  border-radius: 4px;
  background: #ece7e8;
}
.gia-revamp-root .gia-hl-row__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .55s cubic-bezier(.22, .61, .36, 1);
}
.gia-revamp-root .gia-hl-row:hover .gia-hl-row__thumb img { transform: scale(1.07) rotate(.4deg); }
.gia-revamp-root .gia-hl-row__byline {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  margin: 0 0 7px;
  font-size: 13px;
  color: var(--gia-rv-muted, #8c8c8c);
}
.gia-revamp-root .gia-hl-row__author {
  font-weight: 700;
  color: var(--gia-rv-burgundy, #63001d);
}
/* author names are BUTTONS (they open the author popup) — strip the
   button chrome so they read as byline names, and give them the shared
   fine-underline hover */
.gia-revamp-root button.gia-hl-row__author {
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  font: inherit;
  font-weight: 700;
  color: var(--gia-rv-burgundy, #63001d);
  cursor: pointer;
  background-image: linear-gradient(90deg, currentColor, currentColor);
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 1px;
  transition: color .22s ease, background-size .3s cubic-bezier(.22, .61, .36, 1);
}
.gia-revamp-root button.gia-hl-row__author:hover {
  color: var(--gia-rv-brand-red, #af1d48);
  background-size: 100% 1px;
}
.gia-revamp-root button.gia-hl-row__author:focus-visible {
  outline: 2px solid var(--gia-rv-brand-red, #af1d48);
  outline-offset: 2px;
}
.gia-revamp-root .gia-hl-row__title {
  margin: 0;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 700;
}
.gia-revamp-root .gia-hl-row__title a {
  color: var(--gia-rv-ink, #231f20);
  text-decoration: none;
  background-image: linear-gradient(90deg, var(--gia-rv-brand-red, #af1d48), var(--gia-rv-burgundy, #63001d));
  background-repeat: no-repeat;
  background-position: 0 100%;
  background-size: 0% 2px;
  transition: color .25s ease, background-size .4s cubic-bezier(.22, .61, .36, 1);
}
.gia-revamp-root .gia-hl-row:hover .gia-hl-row__title a,
.gia-revamp-root .gia-hl-row__title a:focus-visible {
  color: var(--gia-rv-maroon, #96002c);
  background-size: 100% 2px;
  outline: none;
}

/* empty / error state */
.gia-revamp-root .gia-hl-empty {
  padding: 46px 0;
  font-size: 14px;
  color: var(--gia-rv-body, #484848);
}

/* skeleton rows (anti-flash timer in JS) */
.gia-revamp-root .gia-hl-skel {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 20px 0;
  border-bottom: 1px solid #f0f0f0;
}
.gia-revamp-root .gia-hl-skel__thumb,
.gia-revamp-root .gia-hl-skel__line {
  border-radius: 4px;
  background: linear-gradient(90deg, #efecec 25%, #f8f6f6 45%, #efecec 65%);
  background-size: 400% 100%;
  animation: gia-hl-shimmer 1.4s ease infinite;
}
.gia-revamp-root .gia-hl-skel__thumb { aspect-ratio: 16 / 10; }
.gia-revamp-root .gia-hl-skel__line { height: 13px; margin: 7px 0; }
.gia-revamp-root .gia-hl-skel__line--sm { width: 40%; }
.gia-revamp-root .gia-hl-skel__line--lg { width: 92%; height: 17px; }
@keyframes gia-hl-shimmer {
  from { background-position: 100% 0; }
  to   { background-position: 0 0; }
}

/* ── Read more ────────────────────────────────────────────────────── */
.gia-revamp-root .gia-hl-more {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
/* Same look as the homepage promo's .gia-fs__cta (client rule: one
   primary-button language everywhere): pill radius, maroon fill, the
   burgundy→brand-red gradient sliding in on hover. The gradient rides
   background-position (no overlay), so the bare text node stays visible. */
.gia-revamp-root .gia-hl-more__btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  border: 1px solid transparent;
  border-radius: 999px;
  background-image: linear-gradient(90deg, var(--gia-rv-burgundy, #63001d), var(--gia-rv-brand-red, #af1d48), var(--gia-rv-maroon, #96002c), var(--gia-rv-maroon, #96002c));
  background-size: 320% 100%;
  background-position: 100% 0;
  color: #ffffff;
  font: 700 14px/1 var(--gia-rv-font, 'Inter', Arial, sans-serif);
  letter-spacing: .04em;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(99, 0, 29, .22);
  transition: background-position .45s cubic-bezier(.22, .61, .36, 1), box-shadow .3s ease, transform .2s ease;
}
.gia-revamp-root .gia-hl-more__btn svg {
  width: 15px;
  height: 15px;
  transition: transform .3s cubic-bezier(.22, .61, .36, 1);
}
.gia-revamp-root .gia-hl-more__btn:hover {
  background-position: 0 0;
}
.gia-revamp-root .gia-hl-more__btn:active { transform: scale(.98); }
.gia-revamp-root .gia-hl-more__btn:hover svg { transform: translateX(4px); }
.gia-revamp-root .gia-hl-more__btn:focus-visible {
  outline: 2px solid var(--gia-rv-brand-red, #af1d48);
  outline-offset: 3px;
}

/* ═══ COLUMN 2 — Subscribe card + Latest Podcast ══════════════════ */
.gia-revamp-root .gia-hl-side {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

/* ── Subscribe card — burgundy panel with drifting geometry + a light
      sweep on hover; success state swaps in an animated check ─────── */
.gia-revamp-root .gia-hl-sub {
  position: relative;
  overflow: hidden;
  padding: 30px 28px 32px;
  border-radius: 10px;
  background: linear-gradient(150deg, var(--gia-rv-burgundy, #63001d) 0%, #7c0f33 58%, var(--gia-rv-maroon, #96002c) 100%);
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(99, 0, 29, .25);
  opacity: 0;
}
.gia-revamp-root .gia-hl-side.is-revealed .gia-hl-sub {
  animation: gia-hl-rise .6s cubic-bezier(.22, .61, .36, 1) both;
}
.gia-revamp-root .gia-hl-sub::before,
.gia-revamp-root .gia-hl-sub::after {
  content: "";
  position: absolute;
  pointer-events: none;
  transform: rotate(45deg);
}
.gia-revamp-root .gia-hl-sub::before {
  right: -44px;
  top: -44px;
  width: 130px;
  height: 130px;
  background: rgba(255, 255, 255, .09);
}
.gia-revamp-root .gia-hl-sub::after {
  left: -30px;
  bottom: -52px;
  width: 100px;
  height: 100px;
  background: rgba(175, 29, 72, .4);
}
.gia-revamp-root .gia-hl-sub__shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 255, 255, .12) 48%, transparent 62%);
  background-size: 260% 100%;
  background-position: 120% 0;
}
.gia-revamp-root .gia-hl-sub:hover .gia-hl-sub__shine {
  animation: gia-hl-shine 1.1s ease forwards;
}
@keyframes gia-hl-shine {
  to { background-position: -60% 0; }
}
.gia-revamp-root .gia-hl-sub__wordmark {
  position: relative;
  margin: 0 0 12px;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.01em;
}
.gia-revamp-root .gia-hl-sub__wordmark em {
  font-style: italic;
  font-weight: 500;
}
.gia-revamp-root .gia-hl-sub__copy {
  position: relative;
  margin: 0 0 18px;
  font-size: 14px;
  line-height: 1.6;
  color: rgba(255, 255, 255, .88);
}
.gia-revamp-root .gia-hl-sub__field {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gia-revamp-root .gia-hl-sub__input {
  width: 100%;
  height: 46px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, .35);
  border-radius: 4px;
  background: rgba(255, 255, 255, .96);
  color: var(--gia-rv-ink, #231f20);
  font: 400 14px/1 var(--gia-rv-font, 'Inter', Arial, sans-serif);
  transition: border-color .2s ease, box-shadow .2s ease;
}
.gia-revamp-root .gia-hl-sub__input::placeholder { color: #9a8f92; }
.gia-revamp-root .gia-hl-sub__input:focus {
  outline: none;
  border-color: #ffffff;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .25);
}
.gia-revamp-root .gia-hl-sub__input.is-invalid {
  border-color: #ffb3c2;
  box-shadow: 0 0 0 3px rgba(255, 120, 150, .25);
  animation: gia-hl-shake .35s ease;
}
@keyframes gia-hl-shake {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-5px); }
  55% { transform: translateX(5px); }
  80% { transform: translateX(-3px); }
}
.gia-revamp-root .gia-hl-sub__btn {
  position: relative;
  height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 4px;
  background: var(--gia-rv-brand-red, #af1d48);
  color: #ffffff;
  font: 700 14px/1 var(--gia-rv-font, 'Inter', Arial, sans-serif);
  letter-spacing: .04em;
  cursor: pointer;
  transition: background .22s ease, transform .18s ease, opacity .2s ease;
}
.gia-revamp-root .gia-hl-sub__btn:hover:not(:disabled) {
  background: #c42355;
  transform: translateY(-1px);
}
.gia-revamp-root .gia-hl-sub__btn:disabled { opacity: .65; cursor: wait; }
.gia-revamp-root .gia-hl-sub__btn:focus-visible {
  outline: 2px solid #ffffff;
  outline-offset: 2px;
}
.gia-revamp-root .gia-hl-sub__msg {
  position: relative;
  display: none;
  margin: 12px 0 0;
  font-size: 13px;
  line-height: 1.5;
}
.gia-revamp-root .gia-hl-sub__msg.is-error {
  display: block;
  color: #ffd3dc;
  animation: gia-hl-rise .3s ease both;
}
.gia-revamp-root .gia-hl-sub__msg.is-success {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #ffffff;
  animation: gia-hl-rise .4s ease both;
}
.gia-revamp-root .gia-hl-sub__check {
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  color: var(--gia-rv-maroon, #96002c);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  animation: gia-hl-pop .5s cubic-bezier(.2, 1.4, .4, 1) both;
}
.gia-revamp-root .gia-hl-sub__check svg { width: 12px; height: 12px; }
@keyframes gia-hl-pop {
  from { opacity: 0; transform: scale(.3); }
  to   { opacity: 1; transform: scale(1); }
}

/* ── Latest Podcast card — cover + play badge, no iframe ─────────── */
.gia-revamp-root .gia-hl-pod { opacity: 0; }
.gia-revamp-root .gia-hl-side.is-revealed .gia-hl-pod {
  animation: gia-hl-rise .6s cubic-bezier(.22, .61, .36, 1) both;
  animation-delay: .12s;
}
.gia-revamp-root .gia-hl-pod__heading {
  position: relative;
  margin: 0 0 16px;
  padding-bottom: 12px;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: -.01em;
  color: var(--gia-rv-ink, #231f20);
}
.gia-revamp-root .gia-hl-pod__heading::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 54px;
  height: 3px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--gia-rv-brand-red, #af1d48), var(--gia-rv-burgundy, #63001d));
}
.gia-revamp-root .gia-hl-pod__card {
  display: block;
  overflow: hidden;
  border-radius: 10px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(35, 31, 32, .12);
  text-decoration: none;
  transition: transform .3s cubic-bezier(.22, .61, .36, 1), box-shadow .3s ease;
}
.gia-revamp-root .gia-hl-pod__card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(35, 31, 32, .18);
}
.gia-revamp-root .gia-hl-pod__card:focus-visible {
  outline: 2px solid var(--gia-rv-brand-red, #af1d48);
  outline-offset: 3px;
}
.gia-revamp-root .gia-hl-pod__media {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: #1b1214;
}
.gia-revamp-root .gia-hl-pod__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity .45s ease, transform .55s cubic-bezier(.22, .61, .36, 1);
}
.gia-revamp-root .gia-hl-pod__media.is-loaded img { opacity: 1; }
.gia-revamp-root .gia-hl-pod__card:hover .gia-hl-pod__media img { transform: scale(1.05); }
.gia-revamp-root .gia-hl-pod__shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, #4a0217 25%, #6d0a2b 45%, #4a0217 65%);
  background-size: 400% 100%;
  animation: gia-hl-shimmer 1.6s ease infinite;
}
.gia-revamp-root .gia-hl-pod__media.is-loaded .gia-hl-pod__shimmer { display: none; }
.gia-revamp-root .gia-hl-pod__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  opacity: 0;
  transition: opacity .35s ease;
}
.gia-revamp-root .gia-hl-pod__media.is-loaded .gia-hl-pod__play { opacity: 1; }
.gia-revamp-root .gia-hl-pod__play-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(20, 15, 16, .62);
  -webkit-backdrop-filter: blur(2px);
  backdrop-filter: blur(2px);
  box-shadow: 0 6px 18px rgba(20, 5, 10, .35);
  transition: background .25s ease, transform .25s ease;
}
.gia-revamp-root .gia-hl-pod__card:hover .gia-hl-pod__play-btn {
  background: var(--gia-rv-maroon, #96002c);
  transform: scale(1.1);
}
.gia-revamp-root .gia-hl-pod__play-btn svg {
  width: 20px;
  height: 20px;
  margin-left: 3px;
  color: #ffffff;
  display: block;
}
.gia-revamp-root .gia-hl-pod__body { display: block; padding: 16px 18px 18px; }
.gia-revamp-root .gia-hl-pod__episode {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--gia-rv-brand-red, #af1d48);
}
/* tiny equalizer that dances on hover */
.gia-revamp-root .gia-hl-pod__eq {
  display: inline-flex;
  align-items: flex-end;
  gap: 2px;
  height: 12px;
}
.gia-revamp-root .gia-hl-pod__eq span {
  width: 3px;
  border-radius: 1px;
  background: var(--gia-rv-brand-red, #af1d48);
}
.gia-revamp-root .gia-hl-pod__eq span:nth-child(1) { height: 6px; }
.gia-revamp-root .gia-hl-pod__eq span:nth-child(2) { height: 11px; }
.gia-revamp-root .gia-hl-pod__eq span:nth-child(3) { height: 8px; }
.gia-revamp-root .gia-hl-pod__card:hover .gia-hl-pod__eq span {
  animation: gia-hl-eq .9s ease-in-out infinite;
}
.gia-revamp-root .gia-hl-pod__card:hover .gia-hl-pod__eq span:nth-child(2) { animation-delay: .15s; }
.gia-revamp-root .gia-hl-pod__card:hover .gia-hl-pod__eq span:nth-child(3) { animation-delay: .3s; }
@keyframes gia-hl-eq {
  0%, 100% { transform: scaleY(.55); }
  50%      { transform: scaleY(1.15); }
}
.gia-revamp-root .gia-hl-pod__title {
  margin: 0;
  font-size: 15px;
  line-height: 1.45;
  font-weight: 700;
  color: var(--gia-rv-ink, #231f20);
  transition: color .22s ease;
}
.gia-revamp-root .gia-hl-pod__card:hover .gia-hl-pod__title { color: var(--gia-rv-maroon, #96002c); }

/* ── Reduced motion ──────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .gia-revamp-root .gia-hl *,
  .gia-revamp-root .gia-hl *::before,
  .gia-revamp-root .gia-hl *::after {
    animation-duration: .01ms !important;
    animation-delay: 0ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .gia-revamp-root .gia-hl-row,
  .gia-revamp-root .gia-hl-sub,
  .gia-revamp-root .gia-hl-pod { opacity: 1; }
}

/* ── Responsive ──────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .gia-revamp-root .gia-hl__grid {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 40px;
  }
}
@media (max-width: 900px) {
  .gia-revamp-root .gia-hl { padding: 52px 0 60px; }
  .gia-revamp-root .gia-hl__grid {
    grid-template-columns: 1fr;
    gap: 44px;
  }
  .gia-revamp-root .gia-hl-side {
    flex-direction: column;
  }
}
@media (max-width: 600px) {
  .gia-revamp-root .gia-hl-dd__label { font-size: 22px; }
  .gia-revamp-root .gia-hl-dd__panel { min-width: min(300px, calc(100vw - 48px)); }
  .gia-revamp-root .gia-hl-row {
    grid-template-columns: 116px minmax(0, 1fr);
    gap: 14px;
  }
  .gia-revamp-root .gia-hl-row__title { font-size: 16px; }
  .gia-revamp-root .gia-hl-skel { grid-template-columns: 116px minmax(0, 1fr); gap: 14px; }
}
