:root {
  --navy: #0b2a6b;
  --blue: #1e4fd6;
  --blue-soft: #5c7fe0;
  --red: #d8203c;
  --red-deep: #ad1730;
  --paper: #f5f7fc;
  --ink: #101b33;
  --slate: #3a4258;
  --line: #e1e6f0;
  --white: #ffffff;
  --muted: var(--muted);
  --tag-bg: #e9edf7;
  --input-bg: #fbfcfe;
  --header-bg: rgba(245, 247, 252, 0.9);
  --shadow: 0 20px 50px -20px rgba(11, 42, 107, 0.3);
}
html[data-theme="dark"] {
  --navy: #0b2a6b;
  --blue: #5c8cff;
  --blue-soft: #7c9bf0;
  --red: #ff5470;
  --red-deep: #ff7a90;
  --paper: #0c1220;
  --ink: #f2f4fa;
  --slate: #c4cadc;
  --line: #242c42;
  --white: #141b2b;
  --muted: #9aa2bc;
  --tag-bg: #1b2338;
  --input-bg: #101728;
  --header-bg: rgba(12, 18, 32, 0.85);
  --shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.55);
}
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--paper);
  color: var(--slate);
  font-family: "Inter", sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition:
    background 0.25s ease,
    color 0.25s ease;
}
body,
header,
.drop,
.mobile-panel,
.instructor-chip,
.stat,
.rev-summary,
.rev-card,
.res-card,
.faq-item,
.lib-card,
.book-card,
.live-card,
.lib-tab,
.rev-search input,
.rev-pagination button,
.quiz-opt,
.prof-card,
.story-card,
.media-card,
.detail-toc,
.detail-main {
  transition:
    background 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease;
}
h1,
h2,
h3,
.serif {
  font-family: "Fraunces", serif;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  max-width: 100%;
  display: block;
}
button {
  font-family: inherit;
}
.wrap {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}
::selection {
  background: var(--red);
  color: var(--white);
}

/* ---------- WAVEFORM SIGNATURE (blue/red) ---------- */
.waveform {
  display: flex;
  align-items: center;
  gap: 3px;
  height: 26px;
}
.waveform span {
  display: block;
  width: 3px;
  border-radius: 2px;
  animation: wf 1.4s ease-in-out infinite;
}
.waveform span:nth-child(odd) {
  background: var(--blue);
}
.waveform span:nth-child(even) {
  background: var(--red);
}
@keyframes wf {
  0%,
  100% {
    transform: scaleY(0.35);
  }
  50% {
    transform: scaleY(1);
  }
}
.waveform span:nth-child(1) {
  height: 10px;
  animation-delay: 0s;
}
.waveform span:nth-child(2) {
  height: 22px;
  animation-delay: 0.15s;
}
.waveform span:nth-child(3) {
  height: 14px;
  animation-delay: 0.3s;
}
.waveform span:nth-child(4) {
  height: 26px;
  animation-delay: 0.45s;
}
.waveform span:nth-child(5) {
  height: 12px;
  animation-delay: 0.6s;
}
@media (prefers-reduced-motion: reduce) {
  .waveform span {
    animation: none;
    transform: scaleY(0.7);
  }
}

/* ---------- NAV ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--header-bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 9px;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 0.01em;
  color: var(--navy);
  flex-shrink: 0;
}
.logo-blocks {
  display: flex;
  gap: 2px;
}
.logo-blocks span {
  width: 26px;
  height: 26px;
  border-radius: 2px;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  font-family: "Inter", sans-serif;
  letter-spacing: 0;
}
.logo-blocks span:nth-child(2) {
  background: var(--red);
}
.logo-text {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 19px;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.foot-logo .logo-blocks span {
  background: var(--red);
}
.foot-logo .logo-blocks span:nth-child(2) {
  background: var(--white);
  color: var(--navy);
}
.foot-logo .logo-text {
  color: var(--white);
}
.navlinks {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 14.5px;
  font-weight: 600;
}
.navlinks a {
  opacity: 0.85;
  transition:
    opacity 0.2s,
    color 0.2s;
}
.navlinks a:hover {
  opacity: 1;
  color: var(--blue);
}
.has-drop {
  position: relative;
  display: inline-flex;
  align-items: center;
}
.has-drop::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 14px;
}
.drop {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  background: var(--card, #ffffff);
  border: 1px solid var(--line, #e2e8f0);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 8px;
  min-width: 240px;
  text-align: left;
  z-index: 1000;
}
.has-drop:hover .drop,
.has-drop:focus-within .drop {
  display: block;
}
.drop a {
  display: flex;
  flex-direction: column;
  padding: 8px 12px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--navy, #0b1b3b);
  opacity: 1;
  text-decoration: none;
  transition:
    background 0.15s ease,
    color 0.15s ease;
}
.drop a:hover {
  background: var(--paper, #f8fafc);
  color: var(--blue, #2563eb);
}
.drop a small {
  display: block;
  font-size: 11.5px;
  color: var(--slate, #64748b);
  font-weight: 400;
  margin-top: 2px;
}
.nav-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: nowrap;
  flex-shrink: 0;
}
.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 100px;
  border: 1.5px solid var(--line);
  background: var(--white);
  color: var(--navy);
  cursor: pointer;
  transition: 0.2s;
  flex-shrink: 0;
}
.theme-toggle:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.theme-toggle svg {
  width: 17px;
  height: 17px;
  display: block;
}
.theme-toggle .icon-moon {
  display: none;
}
html[data-theme="dark"] .theme-toggle .icon-sun {
  display: none;
}
html[data-theme="dark"] .theme-toggle .icon-moon {
  display: block;
}
.nav-cta {
  background: var(--red);
  color: var(--white);
  padding: 8px 16px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.2;
  white-space: nowrap;
  transition:
    transform 0.2s,
    background 0.2s,
    border-color 0.2s,
    color 0.2s;
  border: none;
  cursor: pointer;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.nav-cta:hover {
  background: var(--red-deep);
  transform: translateY(-1px);
}
.nav-cta-ghost {
  background: transparent !important;
  color: var(--navy) !important;
  border: 1.5px solid var(--line) !important;
  font-weight: 600 !important;
}
.nav-cta-ghost:hover {
  background: var(--paper) !important;
  border-color: var(--blue) !important;
  color: var(--blue) !important;
}
.nav-cta-user {
  background: var(--blue) !important;
  color: #ffffff !important;
  border: none !important;
}
.nav-cta-user:hover {
  background: var(--blue-deep, #1e4fd6) !important;
}

.burger {
  display: none;
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: 10px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;
}
.burger span {
  width: 18px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: 0.25s;
}
.burger.open span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}
.burger.open span:nth-child(2) {
  opacity: 0;
}
.burger.open span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}
.mobile-panel {
  display: none;
  flex-direction: column;
  gap: 2px;
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 10px 32px 18px;
}
.mobile-panel.open {
  display: flex;
}
.mobile-panel a {
  padding: 12px 4px;
  font-weight: 600;
  font-size: 15px;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}
.mobile-panel a:last-child {
  border-bottom: none;
}
.mobile-panel .mp-group-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-top: 10px;
  padding: 4px;
}

/* ---------- HERO ---------- */
.hero {
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 74px);
  display: flex;
  align-items: center;
  box-sizing: border-box;
}
@media (max-width: 991px) {
  .hero {
    min-height: auto;
    padding: 60px 0 48px;
  }
}
.hero::before {
  content: "";
  position: absolute;
  top: -140px;
  right: -140px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(30, 79, 214, 0.12), transparent 70%);
}
.hero::after {
  content: "";
  position: absolute;
  bottom: -160px;
  left: -120px;
  width: 480px;
  height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 32, 60, 0.1), transparent 70%);
}
.hero-inner {
  width: 100%;
  max-width: 1200px;
  position: relative;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 22px;
  background: #fdebee;
  padding: 8px 16px 8px 12px;
  border-radius: 100px;
}
.hero h1 {
  font-size: clamp(38px, 5.5vw, 68px);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--navy);
  margin-bottom: 22px;
  max-width: 980px;
}
.hero h1 em {
  font-style: italic;
  color: var(--blue);
  font-weight: 500;
}
.hero p.lead {
  font-size: clamp(17px, 2vw, 20px);
  max-width: 780px;
  color: var(--muted);
  margin-bottom: 34px;
  line-height: 1.6;
}

.instructor-chip {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 100px;
  padding: 8px 20px 8px 8px;
  box-shadow: var(--shadow);
  margin-bottom: 36px;
  max-width: 100%;
}
.instructor-chip .av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 18px;
  border: 2px solid var(--blue);
  overflow: hidden;
  flex-shrink: 0;
}
.instructor-chip .av img,
.av img,
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.instructor-chip .ic-name {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--ink);
}
.instructor-chip .ic-role {
  font-size: 12px;
  color: var(--muted);
}
.instructor-chip .ic-live {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11.5px;
  font-weight: 700;
  color: #1e8e4e;
  margin-left: 8px;
  padding-left: 14px;
  border-left: 1px solid var(--line);
}
.live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1e8e4e;
  animation: pulse 1.6s infinite;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(30, 142, 78, 0.5);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(30, 142, 78, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(30, 142, 78, 0);
  }
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.btn {
  padding: 15px 28px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  border: none;
  cursor: pointer;
}
.btn-primary {
  background: var(--red);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--red-deep);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-ghost {
  background: transparent;
  color: var(--navy);
  border: 1.5px solid var(--navy);
}
.btn-ghost:hover {
  background: var(--navy);
  color: var(--white);
}
.btn-blue {
  background: var(--blue);
  color: var(--white);
}
.btn-blue:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow);
}
.btn-sm {
  padding: 10px 18px;
  font-size: 13.5px;
}
.hero-stats {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
}
.hero-stats div {
  border-left: 3px solid var(--blue);
  padding-left: 12px;
}
.hero-stats div:nth-child(2) {
  border-left-color: var(--red);
}
.hero-stats div:nth-child(3) {
  border-left-color: var(--navy);
}
.hero-stats b {
  display: block;
  font-family: "Fraunces", serif;
  font-size: 23px;
  color: var(--navy);
}
.hero-stats span {
  font-size: 13px;
  color: var(--muted);
}

/* ---------- SECTION HEADERS ---------- */
section {
  padding: 80px 0;
}
.sec-head {
  max-width: 620px;
  margin-bottom: 48px;
}
.sec-eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
  display: block;
}
.sec-head h2 {
  font-size: clamp(27px, 3.4vw, 38px);
  color: var(--navy);
  font-weight: 600;
  line-height: 1.15;
}
.sec-head p {
  margin-top: 14px;
  font-size: 16.5px;
  color: var(--muted);
}

/* ---------- PROGRAMS ---------- */
.programs {
  background: var(--navy);
}
.programs .sec-eyebrow {
  color: #7fa0ff;
}
.programs .sec-head h2 {
  color: var(--white);
}
.programs .sec-head p {
  color: #b7c3e6;
}
.prog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
}
.prog-card {
  background: #13337f;
  border: 1px solid #23478f;
  border-radius: 20px;
  padding: 32px 28px;
  transition:
    transform 0.25s,
    border-color 0.25s;
  position: relative;
  overflow: hidden;
}
.prog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--red), var(--blue-soft));
}
.prog-card:hover {
  transform: translateY(-6px);
  border-color: var(--red);
}
.prog-num {
  font-family: "Fraunces", serif;
  font-size: 14px;
  color: #8fb0ff;
  font-weight: 600;
  margin-bottom: 18px;
  margin-top: 6px;
}
.prog-card h3 {
  color: var(--white);
  font-size: 21px;
  font-weight: 600;
  margin-bottom: 10px;
}
.prog-card p {
  color: #b7c3e6;
  font-size: 14.5px;
  margin-bottom: 22px;
}
.prog-formats {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}
.fmt-pill {
  font-size: 12px;
  font-weight: 700;
  padding: 6px 12px;
  border-radius: 100px;
  background: rgba(216, 32, 60, 0.18);
  color: #ff8fa0;
  border: 1px solid rgba(216, 32, 60, 0.4);
}
.prog-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--white);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1.5px solid var(--red);
  padding-bottom: 2px;
  cursor: pointer;
  background: none;
  border-top: none;
  border-left: none;
  border-right: none;
}

/* ---------- HOW IT WORKS + BOOKING ---------- */
.booking .wrap {
  display: flex;
  justify-content: center;
}
.steps {
  list-style: none;
}
.steps li {
  display: flex;
  gap: 18px;
  padding: 22px 0;
  border-top: 1px solid var(--line);
}
.steps li:last-child {
  border-bottom: 1px solid var(--line);
}
.step-num {
  font-family: "Fraunces", serif;
  font-weight: 600;
  font-size: 20px;
  color: var(--red);
  min-width: 34px;
}
.step-text h4 {
  font-size: 16.5px;
  color: var(--navy);
  margin-bottom: 4px;
  font-weight: 600;
}
.step-text p {
  font-size: 14.5px;
  color: var(--muted);
}

.book-card {
  background: var(--white);
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  padding: 40px;
  width: 100%;
  max-width: 620px;
}
.book-card h3 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 6px;
}
.book-card > p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 26px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.field.full {
  grid-column: 1/-1;
}
label {
  font-size: 12.5px;
  font-weight: 700;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
input,
select,
textarea {
  font-family: "Inter", sans-serif;
  font-size: 14.5px;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: var(--input-bg);
  color: var(--slate);
  transition: border-color 0.2s;
}
input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--blue);
}
textarea {
  resize: vertical;
  min-height: 80px;
}
.format-toggle {
  display: flex;
  gap: 10px;
}
.format-opt {
  flex: 1;
  text-align: center;
  padding: 11px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  font-size: 13.5px;
  font-weight: 700;
  cursor: pointer;
  transition: 0.2s;
  background: var(--input-bg);
  user-select: none;
}
.format-opt.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.book-submit {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}
.book-note {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 14px;
  text-align: center;
}
.confirm-box {
  display: none;
  text-align: center;
  padding: 16px;
  border-radius: 14px;
  background: #eaf6ec;
  border: 1px solid #bfe3c6;
  color: #1e6b34;
  font-size: 13.5px;
  font-weight: 600;
  margin-top: 16px;
}
.error-box {
  display: none;
  text-align: center;
  padding: 14px;
  border-radius: 14px;
  background: #fdebee;
  border: 1px solid #f3c2cb;
  color: var(--red-deep);
  font-size: 13px;
  font-weight: 600;
  margin-top: 14px;
}

/* ---------- LIVE / IFRAME SECTION ---------- */
.live-strip {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #eaf6ec;
  color: #1e6b34;
  font-size: 12.5px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}
.live-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.live-card {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.live-card .live-frame-wrap {
  aspect-ratio: 16/9;
  background: #000;
}
.live-card iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}
.live-card .live-info {
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.live-card .live-info h4 {
  font-size: 15px;
  color: var(--navy);
  font-weight: 700;
}
.live-card .live-info p {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 2px;
}
.live-tag {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 5px 10px;
  border-radius: 6px;
  flex-shrink: 0;
}
.live-tag.blue {
  background: rgba(30, 79, 214, 0.1);
  color: var(--blue);
}
.live-tag.red {
  background: rgba(216, 32, 60, 0.1);
  color: var(--red);
}

/* ---------- LIBRARY ---------- */
.lib-tabs {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.lib-tab {
  padding: 11px 22px;
  border-radius: 100px;
  border: 1.5px solid var(--line);
  background: var(--white);
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s;
}
.lib-tab.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.lib-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}
.tag-pill {
  padding: 7px 14px;
  border-radius: 100px;
  background: var(--tag-bg);
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid transparent;
  transition: 0.2s;
}
.tag-pill.active {
  background: var(--red);
  color: var(--white);
  border-color: var(--red-deep);
}
.lib-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.lib-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  cursor: default;
  display: none;
}
.lib-card.show {
  display: block;
}
.lib-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.lib-thumb {
  aspect-ratio: 16/10;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.lib-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.lib-thumb.red-grad {
  background: linear-gradient(135deg, var(--red-deep), var(--red));
}
.lib-thumb .kind-icon {
  color: var(--white);
  opacity: 0.95;
}
.lib-thumb .len {
  position: absolute;
  bottom: 10px;
  right: 12px;
  background: rgba(16, 27, 51, 0.65);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 100px;
}
.lib-body {
  padding: 20px;
}
.lib-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.lib-tags span {
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--blue);
  background: rgba(30, 79, 214, 0.1);
  padding: 3px 8px;
  border-radius: 6px;
}
.lib-card h4 {
  font-size: 16.5px;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
  font-weight: 600;
}
.lib-card p {
  font-size: 13.5px;
  color: var(--muted);
}
.lib-card a.card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--red);
  border-bottom: 1.5px solid var(--red);
  padding-bottom: 2px;
}

/* ---------- HOMEPAGE REVIEWS PREVIEW ---------- */
.reviews-home {
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

/* ---------- ABOUT ---------- */
.about .wrap {
  display: flex;
  align-items: center;
  gap: 44px;
  flex-wrap: wrap;
}
.about-photo {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow);
  flex-shrink: 0;
  outline: 2px solid var(--blue);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  font-family: "Fraunces", serif;
  font-size: 54px;
  font-weight: 600;
}
.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  border-radius: 50%;
  display: block;
}
.about-text {
  flex: 1;
  min-width: 280px;
}
.about-quote {
  font-family: "Fraunces", serif;
  font-size: clamp(20px, 2.4vw, 27px);
  color: var(--navy);
  line-height: 1.35;
  margin-bottom: 18px;
  font-weight: 500;
}
.about-quote em {
  color: var(--red);
  font-style: italic;
}
.about-name {
  font-weight: 700;
  font-size: 15px;
  color: var(--navy);
}
.about-role {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 22px;
}
.about-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-list li {
  display: flex;
  gap: 12px;
  font-size: 14.5px;
  color: var(--muted);
}
.about-list .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  margin-top: 8px;
  flex-shrink: 0;
}

/* ---------- CONTACT / FOOTER ---------- */
footer {
  background: var(--navy);
  padding-top: 76px;
}
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding-bottom: 56px;
  border-bottom: 1px solid #23478f;
}
.contact-head span.sec-eyebrow {
  color: #ff8fa0;
}
.contact-head h2 {
  color: var(--white);
  font-size: clamp(25px, 3vw, 34px);
  font-weight: 600;
  margin-bottom: 16px;
}
.contact-head p {
  color: #b7c3e6;
  font-size: 15.5px;
  max-width: 420px;
}
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ccard {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #13337f;
  border: 1px solid #23478f;
  padding: 18px 20px;
  border-radius: 14px;
  transition: 0.2s;
  cursor: pointer;
}
.ccard:hover {
  border-color: var(--red);
}
.ccard .ic {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: rgba(216, 32, 60, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 18px;
}
.ccard b {
  display: block;
  color: var(--white);
  font-size: 14.5px;
}
.ccard span {
  color: #aeb8cc;
  font-size: 13px;
}
.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  flex-wrap: wrap;
  gap: 14px;
}
.foot-bottom p {
  color: #7c89a4;
  font-size: 13px;
}
.foot-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-weight: 700;
}
.foot-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  padding: 20px 0 0;
  border-top: 1px solid #23478f;
}
.foot-links a {
  color: #b7c3e6;
  font-size: 13px;
  font-weight: 600;
}
.foot-links a:hover {
  color: var(--white);
}

/* ---------- TOAST ---------- */
.toast {
  position: fixed;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  z-index: 200;
  background: var(--navy);
  color: var(--white);
  padding: 14px 24px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: var(--shadow);
  transition: transform 0.35s ease;
  display: flex;
  align-items: center;
  gap: 10px;
}
.toast.show {
  transform: translateX(-50%) translateY(0);
}
.toast .dotgreen {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #3fcb6d;
}

/* ---------- STATS SECTION ---------- */
.stats {
  background: var(--white);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px 40px;
}
.stat {
  padding: 28px 24px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--paper);
  position: relative;
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}
.stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.stat::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, var(--red), var(--blue));
}
.stat .num {
  font-family: "Fraunces", serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
}
.stat .num .suffix {
  color: var(--red);
}
.stat .lbl {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--muted);
}
.stat .desc {
  font-size: 12.5px;
  color: var(--muted);
  margin-top: 4px;
}

/* ---------- PAGE BANNER (sub pages) ---------- */
.page-banner {
  padding: 60px 0 40px;
  background: var(--navy);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.page-banner::after {
  content: "";
  position: absolute;
  top: -100px;
  right: -100px;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(216, 32, 60, 0.18), transparent 70%);
}
.page-banner .wrap {
  position: relative;
}
.breadcrumb {
  font-size: 12.5px;
  font-weight: 600;
  color: #8fb0ff;
  margin-bottom: 14px;
  display: flex;
  gap: 8px;
  align-items: center;
}
.breadcrumb a {
  color: #8fb0ff;
}
.breadcrumb a:hover {
  color: var(--white);
}
.page-banner h1 {
  font-size: clamp(32px, 4.4vw, 48px);
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 14px;
  max-width: 780px;
}
.page-banner h1 em {
  color: #ff8fa0;
  font-style: italic;
  font-weight: 500;
}
.page-banner p.lead {
  font-size: 17px;
  color: #b7c3e6;
  max-width: 620px;
}

/* ---------- REVIEWS ---------- */
.rev-summary {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  padding: 48px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: var(--shadow);
  margin-bottom: 48px;
}
.rev-score {
  text-align: center;
  border-right: 1px solid var(--line);
  padding-right: 20px;
}
.rev-score .big {
  font-family: "Fraunces", serif;
  font-size: 78px;
  font-weight: 600;
  color: var(--navy);
  line-height: 1;
}
.rev-score .big small {
  font-size: 30px;
  color: var(--red);
}
.stars {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin: 10px 0 8px;
  color: #f5a623;
  font-size: 22px;
}
.stars span {
  color: #e1e6f0;
}
.rev-score .count {
  font-size: 13.5px;
  color: var(--muted);
}
.rev-breakdown {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.rev-row {
  display: grid;
  grid-template-columns: 60px 1fr 50px;
  gap: 12px;
  align-items: center;
  font-size: 13px;
}
.rev-row .stars-lbl {
  color: var(--muted);
  font-weight: 600;
}
.rev-bar {
  height: 8px;
  background: var(--tag-bg);
  border-radius: 100px;
  overflow: hidden;
}
.rev-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #f5a623, #d8203c);
  border-radius: 100px;
}
.rev-row .pct {
  font-weight: 700;
  color: var(--navy);
  text-align: right;
}

.rev-controls {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  margin-bottom: 28px;
  align-items: center;
}
.rev-search {
  position: relative;
}
.rev-search input {
  width: 100%;
  padding: 12px 14px 12px 42px;
  border-radius: 100px;
  border: 1.5px solid var(--line);
  background: var(--white);
  font-size: 14px;
}
.rev-search input:focus {
  outline: none;
  border-color: var(--blue);
}
.rev-search svg {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--muted);
}
.rev-cat {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.rev-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.rev-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 24px;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.rev-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.rev-card.featured {
  border-color: var(--red);
  background: linear-gradient(180deg, var(--tag-bg), var(--white));
}
.rev-card.featured::before {
  content: "Featured";
  position: absolute;
  top: 14px;
  right: 14px;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--red);
  background: #fdebee;
  padding: 4px 10px;
  border-radius: 100px;
}
.rev-card {
  position: relative;
}
.rev-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.rev-av {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  font-size: 18px;
  flex-shrink: 0;
}
.rev-card.featured .rev-av {
  background: linear-gradient(135deg, var(--red-deep), var(--red));
}
.rev-meta b {
  display: block;
  font-size: 15px;
  color: var(--navy);
}
.rev-meta span {
  font-size: 13px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.rev-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.rev-tags span {
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--blue);
  background: rgba(30, 79, 214, 0.1);
  padding: 3px 8px;
  border-radius: 6px;
}
.rev-tags span.goal {
  color: var(--red);
  background: rgba(216, 32, 60, 0.1);
}
.rev-stars {
  color: #f5a623;
  font-size: 15px;
  margin-bottom: 10px;
  display: flex;
  gap: 2px;
}
.rev-stars span {
  color: #e1e6f0;
}
.rev-body {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
  flex: 1;
}
.rev-date {
  font-size: 11.5px;
  color: var(--muted);
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.rev-pagination {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 48px;
}
.rev-pagination button {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: var(--white);
  font-weight: 700;
  font-size: 14px;
  color: var(--navy);
  cursor: pointer;
  transition: 0.2s;
}
.rev-pagination button.active {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.rev-pagination button:hover:not(.active) {
  border-color: var(--navy);
}

/* ---------- SUCCESS STORIES ---------- */
.story-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.story-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.story-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.story-cover {
  aspect-ratio: 16/9;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: "Fraunces", serif;
  font-size: 22px;
  font-weight: 500;
  text-align: center;
  padding: 20px;
  position: relative;
}
.story-cover .badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: rgba(255, 255, 255, 0.2);
  padding: 5px 12px;
  border-radius: 100px;
}
.story-body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.story-body h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 600;
}
.story-body p {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 14px;
  flex: 1;
}
.story-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}
.story-tags span {
  font-size: 11px;
  font-weight: 700;
  color: var(--blue);
  background: rgba(30, 79, 214, 0.1);
  padding: 4px 10px;
  border-radius: 100px;
}
.story-quote {
  background: var(--paper);
  border-left: 3px solid var(--red);
  padding: 12px 14px;
  border-radius: 8px;
  font-size: 13px;
  color: var(--muted);
  font-style: italic;
  margin-bottom: 14px;
}
.story-link {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1.5px solid var(--red);
  padding-bottom: 2px;
  align-self: flex-start;
}

/* ---------- PROFESSIONALS ---------- */
.prof-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.prof-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 28px;
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
}
.prof-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--blue);
}
.prof-card .ic {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 22px;
  margin-bottom: 16px;
}
.prof-card.org .ic {
  background: linear-gradient(135deg, var(--red-deep), var(--red));
}
.prof-card h3 {
  font-size: 18px;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 600;
}
.prof-card p {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.55;
}
.prof-card .tag {
  display: inline-block;
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--red);
  background: #fdebee;
  padding: 4px 10px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.prof-card.org .tag {
  color: var(--blue);
  background: rgba(30, 79, 214, 0.1);
}

/* ---------- PODCASTS / VIDEOS / ARTICLES LIST ---------- */
.media-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.media-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.media-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}
.media-cover {
  aspect-ratio: 16/10;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  color: var(--white);
  padding: 0;
  text-align: center;
  overflow: hidden;
}
.media-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.media-cover.blue {
  background: linear-gradient(135deg, var(--navy), var(--blue));
}
.media-cover.red {
  background: linear-gradient(135deg, var(--red-deep), var(--red));
}
.media-cover.green {
  background: linear-gradient(135deg, #0b6b4f, #1e8e4e);
}
.media-cover.amber {
  background: linear-gradient(135deg, #8a4b0f, #d8901e);
}
.media-cover.purple {
  background: linear-gradient(135deg, #3a2a6b, #5c3fb0);
}
.media-cover .ic {
  font-size: 42px;
  opacity: 0.9;
}
.media-cover .len {
  position: absolute;
  bottom: 10px;
  right: 12px;
  background: rgba(16, 27, 51, 0.65);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 9px;
  border-radius: 100px;
}
.media-cover .diff {
  position: absolute;
  top: 10px;
  left: 12px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 10px;
  border-radius: 100px;
}
.media-body {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.media-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.media-tags span {
  font-size: 10.5px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--blue);
  background: rgba(30, 79, 214, 0.1);
  padding: 3px 8px;
  border-radius: 6px;
}
.media-card h4 {
  font-size: 16.5px;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.3;
  font-weight: 600;
}
.media-card p {
  font-size: 13.5px;
  color: var(--muted);
  flex: 1;
}
.media-card .media-link {
  font-size: 13.5px;
  font-weight: 700;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  border-bottom: 1.5px solid var(--red);
  padding-bottom: 2px;
  align-self: flex-start;
}

/* ---------- DETAIL PAGE (podcast/video/article) ---------- */
.detail-wrap {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 48px;
  align-items: start;
}
.detail-main {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 40px;
  box-shadow: var(--shadow);
}
.detail-embed {
  aspect-ratio: 16/9;
  background: #000;
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 28px;
}
.detail-embed iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.detail-embed.podcast {
  aspect-ratio: auto;
  height: 232px;
}
.detail-main h1 {
  font-size: clamp(26px, 3.2vw, 34px);
  color: var(--navy);
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 12px;
}
.detail-meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 20px;
  align-items: center;
}
.detail-meta .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c5cad6;
}
.detail-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.detail-tags span {
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--blue);
  background: rgba(30, 79, 214, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
}
.detail-section {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.detail-section h2 {
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 14px;
  font-weight: 600;
}
.detail-section h3 {
  font-size: 16px;
  color: var(--navy);
  margin: 18px 0 8px;
  font-weight: 600;
}
.detail-section p {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 12px;
  line-height: 1.7;
}
.detail-section ul {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}
.detail-section ul li {
  padding: 8px 0 8px 24px;
  position: relative;
  font-size: 14.5px;
  color: var(--muted);
  border-bottom: 1px solid var(--line);
}
.detail-section ul li::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 16px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
}
.vocab-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.vocab-item {
  padding: 14px;
  background: var(--paper);
  border-radius: 10px;
  border: 1px solid var(--line);
}
.vocab-item b {
  display: block;
  color: var(--navy);
  font-size: 14.5px;
  margin-bottom: 2px;
}
.vocab-item span {
  font-size: 13px;
  color: var(--muted);
}
.quiz-q {
  padding: 16px;
  background: var(--paper);
  border-radius: 12px;
  border: 1px solid var(--line);
  margin-bottom: 12px;
}
.quiz-q p {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
  font-size: 14.5px;
}
.quiz-opts {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.quiz-opt {
  padding: 10px 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-size: 14px;
  cursor: pointer;
  transition: 0.2s;
}
.quiz-opt:hover {
  border-color: var(--blue);
}
.quiz-opt.selected {
  border-color: var(--blue);
  background: var(--paper);
  font-weight: 600;
  box-shadow: 0 0 0 1px var(--blue);
}
.quiz-opt.correct {
  border-color: #1e8e4e;
  background: #eaf6ec;
  color: #1e6b34;
  font-weight: 600;
}
.quiz-opt.wrong {
  border-color: var(--red);
  background: #fdebee;
  color: var(--red-deep);
  font-weight: 600;
}
.quiz-input-field {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.quiz-input-field:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue);
}
.quiz-input-field.correct {
  border-color: #1e8e4e;
  background: #eaf6ec;
  color: #1e6b34;
  font-weight: 600;
}
.quiz-input-field.wrong {
  border-color: var(--red);
  background: #fdebee;
  color: var(--red-deep);
  font-weight: 600;
}
.quiz-word-chip {
  padding: 8px 14px;
  border: 1.5px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  color: var(--navy);
  font-size: 13.5px;
  cursor: pointer;
  transition: 0.2s;
}
.quiz-word-chip:hover {
  border-color: var(--blue);
  color: var(--blue);
}
.quiz-word-chip.selected {
  border-color: var(--blue);
  background: var(--paper);
  font-weight: 600;
  color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue);
}
.quiz-word-chip.correct {
  border-color: #1e8e4e;
  background: #eaf6ec;
  color: #1e6b34;
  font-weight: 600;
}
.quiz-word-chip.wrong {
  border-color: var(--red);
  background: #fdebee;
  color: var(--red-deep);
  font-weight: 600;
}
.quiz-tf-btn {
  padding: 8px 18px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s;
}
.quiz-tf-btn:hover {
  border-color: var(--blue);
}
.quiz-tf-btn.selected {
  border-color: var(--blue);
  background: var(--paper);
  box-shadow: 0 0 0 1px var(--blue);
}
.quiz-tf-btn.correct {
  border-color: #1e8e4e;
  background: #eaf6ec;
  color: #1e6b34;
}
.quiz-tf-btn.wrong {
  border-color: var(--red);
  background: #fdebee;
  color: var(--red-deep);
}
.quiz-feedback-text {
  font-size: 13px;
  margin-top: 6px;
  font-weight: 600;
  line-height: 1.4;
}
.provider-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 11.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
.provider-badge.voa {
  background: #e1f5fe;
  color: #0277bd;
  border: 1px solid #b3e5fc;
}
.provider-badge.bbc {
  background: #fff3e0;
  color: #e65100;
  border: 1px solid #ffe0b2;
}
.detail-toc {
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  position: sticky;
  top: 90px;
}
.detail-toc h4 {
  font-size: 13px;
  color: var(--navy);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
  font-weight: 700;
}
.detail-toc ol {
  list-style: none;
  padding: 0;
  counter-reset: toc;
}
.detail-toc li {
  padding: 7px 0;
  font-size: 13.5px;
  counter-increment: toc;
}
.detail-toc li::before {
  content: counter(toc) ". ";
  color: var(--red);
  font-weight: 700;
  margin-right: 6px;
}
.detail-toc a {
  color: var(--muted);
}
.detail-toc a:hover {
  color: var(--blue);
}
.related {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 14px;
}
.related-card {
  display: flex;
  gap: 12px;
  padding: 10px;
  border-radius: 10px;
  transition: 0.2s;
  border: 1px solid transparent;
}
.related-card:hover {
  background: var(--paper);
  border-color: var(--line);
}
.related-card .rc-thumb {
  width: 60px;
  height: 42px;
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 18px;
}
.related-card .rc-thumb.blue {
  background: linear-gradient(135deg, var(--navy), var(--blue));
}
.related-card .rc-thumb.red {
  background: linear-gradient(135deg, var(--red-deep), var(--red));
}
.related-card b {
  display: block;
  font-size: 13px;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 2px;
}
.related-card span {
  font-size: 11.5px;
  color: var(--muted);
}
.share-row {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.share-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1.5px solid var(--line);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.2s;
  font-size: 16px;
}
.share-btn:hover {
  border-color: var(--red);
  background: #fdebee;
}
.dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 100px;
  background: var(--navy);
  color: var(--white);
  font-size: 13.5px;
  font-weight: 700;
  transition: 0.2s;
  border: none;
  cursor: pointer;
}
.dl-btn:hover {
  background: var(--blue);
}

/* ---------- FAQ ---------- */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 820px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
}
.faq-q {
  padding: 18px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 700;
  color: var(--navy);
  font-size: 15.5px;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
}
.faq-q .ic {
  transition: transform 0.25s;
  color: var(--red);
  font-size: 20px;
}
.faq-item.open .faq-q .ic {
  transform: rotate(45deg);
}
.faq-a {
  display: none;
  padding: 0 22px 20px;
  font-size: 14.5px;
  color: var(--muted);
  line-height: 1.65;
}
.faq-item.open .faq-a {
  display: block;
}

/* ---------- RESOURCES ---------- */
.res-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.res-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 24px;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.res-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}
.res-card .ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 14px;
}
.res-card .ic.blue {
  background: rgba(30, 79, 214, 0.12);
  color: var(--blue);
}
.res-card .ic.red {
  background: rgba(216, 32, 60, 0.12);
  color: var(--red);
}
.res-card .ic.green {
  background: rgba(30, 142, 78, 0.12);
  color: #1e8e4e;
}
.res-card .ic.amber {
  background: rgba(216, 144, 30, 0.12);
  color: #d8901e;
}
.res-card h4 {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 6px;
  font-weight: 600;
}
.res-card p {
  font-size: 13px;
  color: var(--muted);
  flex: 1;
  margin-bottom: 14px;
}
.res-card .res-meta {
  font-size: 11.5px;
  color: var(--muted);
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.res-card .dl {
  font-size: 13px;
  font-weight: 700;
  color: var(--red);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  border-bottom: 1.5px solid var(--red);
  padding-bottom: 2px;
  align-self: flex-start;
}

/* ---------- CTA STRIP ---------- */
.cta-strip {
  background: linear-gradient(135deg, var(--navy), var(--blue));
  color: var(--white);
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  margin: 60px 0;
}
.cta-strip h2 {
  font-size: clamp(26px, 3.2vw, 34px);
  margin-bottom: 12px;
  font-weight: 600;
}
.cta-strip p {
  color: #b7c3e6;
  max-width: 540px;
  margin: 0 auto 26px;
  font-size: 16px;
}
.cta-strip .btn-primary {
  background: var(--red);
}
.cta-strip .btn-ghost {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
}
.cta-strip .btn-ghost:hover {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

/* ---------- ARTICLE BODY ---------- */
.article-body {
  font-size: 17px;
  line-height: 1.8;
  color: var(--slate);
}
.article-body p {
  margin-bottom: 18px;
}
.article-body h2 {
  font-size: 26px;
  color: var(--navy);
  margin: 32px 0 14px;
  font-weight: 600;
}
.article-body h3 {
  font-size: 20px;
  color: var(--navy);
  margin: 24px 0 10px;
  font-weight: 600;
}
.article-body ul,
.article-body ol {
  margin: 0 0 18px 22px;
}
.article-body li {
  margin-bottom: 8px;
}
.article-body blockquote {
  border-left: 4px solid var(--red);
  padding: 16px 20px;
  background: var(--paper);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--muted);
  margin: 18px 0;
}
.article-body code {
  background: var(--tag-bg);
  padding: 2px 6px;
  border-radius: 4px;
  font-size: 14px;
  color: var(--navy);
}
.article-meta {
  display: flex;
  gap: 14px;
  align-items: center;
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.article-meta .av {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 800;
  overflow: hidden;
  flex-shrink: 0;
}

/* ---------- MOBILE ---------- */
@media (max-width: 900px) {
  nav {
    padding: 12px 0;
  }
  .navlinks {
    display: none;
  }
  .burger {
    display: flex;
  }
  .nav-right {
    gap: 8px;
  }
  /* Hide top-bar auth links on mobile/tablet because they are inside mobilePanel */
  .nav-right [data-auth-link] {
    display: none !important;
  }
  /* Hide secondary CTA buttons on top bar on mobile/tablet */
  .nav-cta-secondary,
  .nav-cta-level {
    display: none !important;
  }
  .nav-cta {
    padding: 7px 13px;
    font-size: 12.5px;
    line-height: 1.2;
    white-space: nowrap;
  }
  .mobile-panel {
    padding: 14px 20px 24px;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
  }
  .prog-grid {
    grid-template-columns: 1fr;
  }
  .booking .wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .form-row {
    grid-template-columns: 1fr;
  }
  .lib-grid {
    grid-template-columns: 1fr 1fr;
  }
  .live-grid {
    grid-template-columns: 1fr;
  }
  .contact-wrap {
    grid-template-columns: 1fr;
  }
  .about .wrap {
    flex-direction: column;
    text-align: center;
  }
  .about-list {
    text-align: left;
  }
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  .rev-summary {
    grid-template-columns: 1fr;
    padding: 32px;
    gap: 28px;
  }
  .rev-score {
    border-right: none;
    border-bottom: 1px solid var(--line);
    padding: 0 0 20px;
  }
  .rev-grid {
    grid-template-columns: 1fr;
  }
  .rev-controls {
    grid-template-columns: 1fr;
  }
  .story-grid {
    grid-template-columns: 1fr;
  }
  .prof-grid {
    grid-template-columns: 1fr;
  }
  .media-grid {
    grid-template-columns: 1fr;
  }
  .res-grid {
    grid-template-columns: 1fr 1fr;
  }
  .detail-wrap {
    grid-template-columns: 1fr;
  }
  .detail-toc {
    position: static;
  }
  .vocab-grid {
    grid-template-columns: 1fr;
  }
  .cta-strip {
    padding: 32px 24px;
  }
}

@media (max-width: 560px) {
  .wrap {
    padding: 0 16px;
  }
  nav {
    padding: 10px 0;
  }
  .logo {
    gap: 6px;
  }
  .logo-blocks span {
    width: 22px;
    height: 22px;
    font-size: 12px;
  }
  .logo-text {
    font-size: 16px;
  }
  .nav-right {
    gap: 6px;
  }
  .nav-cta {
    padding: 6.5px 11px;
    font-size: 12px;
    border-radius: 100px;
  }
  .theme-toggle {
    width: 34px;
    height: 34px;
  }
  .theme-toggle svg {
    width: 15px;
    height: 15px;
  }
  .burger {
    width: 36px;
    height: 36px;
  }
  .burger span {
    width: 16px;
  }
  .lib-grid {
    grid-template-columns: 1fr;
  }
  .hero-stats {
    gap: 22px;
  }
  section {
    padding: 60px 0;
  }
  .book-card {
    padding: 26px;
  }
  .detail-main {
    padding: 24px;
  }
  .res-grid {
    grid-template-columns: 1fr;
  }
  .stats-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {
  .wrap {
    padding: 0 12px;
  }
  nav {
    padding: 8px 0;
  }
  .logo-text {
    font-size: 15px;
  }
  .nav-cta {
    padding: 6px 9px;
    font-size: 11.5px;
  }
}

/* Level Assessment Section */
.level-test {
  padding: 80px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.level-nav {
  display: flex;
  gap: 10px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.level-tab-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 99px;
  font-weight: 600;
  font-size: 14.5px;
  color: var(--slate);
  cursor: pointer;
  transition: all 0.2s ease;
}
.level-tab-btn:hover {
  border-color: var(--blue-soft);
  color: var(--navy);
  transform: translateY(-1px);
}
.level-tab-btn.active {
  background: var(--navy);
  color: #ffffff;
  border-color: var(--navy);
  box-shadow: 0 4px 14px rgba(11, 42, 107, 0.25);
}

.level-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 36px;
  box-shadow: var(--shadow);
}
.level-panel {
  display: none;
}
.level-panel.active {
  display: block;
  animation: levelFadeIn 0.3s ease-in-out;
}

@keyframes levelFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.level-passage {
  background: var(--paper);
  border-left: 4px solid var(--blue);
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  margin-bottom: 28px;
  font-size: 15.5px;
  line-height: 1.7;
  color: var(--ink);
}

.test-q-block {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.test-q-block:last-child {
  border-bottom: none;
}
.test-q-title {
  font-weight: 700;
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 14px;
}
.test-options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.test-opt {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 12px;
  font-size: 14.5px;
  color: var(--slate);
  cursor: pointer;
  transition: all 0.15s ease;
  user-select: none;
}
.test-opt:hover {
  border-color: var(--blue-soft);
  background: var(--tag-bg);
}
.test-opt.selected {
  border-color: var(--blue);
  background: rgba(30, 79, 214, 0.08);
  color: var(--navy);
  font-weight: 600;
}
.test-opt.correct {
  border-color: #1e8e4e !important;
  background: rgba(30, 142, 78, 0.12) !important;
  color: #115e32 !important;
  font-weight: 600;
}
.test-opt.incorrect {
  border-color: var(--red) !important;
  background: rgba(216, 32, 60, 0.1) !important;
  color: var(--red-deep) !important;
}

.test-submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  background: var(--blue);
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  font-size: 15px;
  transition: all 0.2s ease;
}
.test-submit-btn:hover {
  background: var(--navy);
  transform: translateY(-2px);
}

.test-result-card {
  margin-top: 24px;
  padding: 24px;
  border-radius: 16px;
  background: var(--paper);
  border: 2px solid var(--blue);
  display: none;
}
.test-result-card.show {
  display: block;
  animation: levelFadeIn 0.3s ease;
}

.audio-player-box {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  margin-bottom: 24px;
}
.audio-play-btn {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.audio-play-btn:hover {
  transform: scale(1.05);
  background: var(--navy);
}

.writing-textarea {
  width: 100%;
  min-height: 140px;
  padding: 16px;
  background: var(--input-bg);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--ink);
  font-family: inherit;
  font-size: 15px;
  line-height: 1.6;
  resize: vertical;
  outline: none;
  transition: border-color 0.2s ease;
}
.writing-textarea:focus {
  border-color: var(--blue);
}
.word-count-badge {
  display: inline-block;
  margin-top: 8px;
  font-size: 13px;
  color: var(--slate);
  font-weight: 500;
}

.speaking-trial-box {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 28px;
  background: linear-gradient(135deg, rgba(30, 79, 214, 0.08) 0%, rgba(11, 42, 107, 0.04) 100%);
  border: 2px dashed var(--blue);
  border-radius: 18px;
  margin-top: 32px;
}
.st-icon {
  font-size: 38px;
  line-height: 1;
}
.st-content h3 {
  font-size: 20px;
  color: var(--navy);
  margin-bottom: 8px;
}
.st-content p {
  font-size: 15px;
  line-height: 1.6;
  color: var(--slate);
  margin-bottom: 16px;
}

@media (max-width: 640px) {
  .speaking-trial-box {
    flex-direction: column;
    padding: 20px;
  }
  .level-card {
    padding: 20px;
  }
}

/* Intro Video Modal & Component Styles */
.btn-watch-intro {
  cursor: pointer;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}
.btn-watch-intro:hover {
  transform: translateY(-2px);
}

.video-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(11, 27, 59, 0.85);
  backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}
.video-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.video-modal-card {
  background: var(--white, #ffffff);
  border: 1px solid var(--line, #e2e8f0);
  border-radius: 20px;
  width: 100%;
  max-width: 900px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4);
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.video-modal-overlay.active .video-modal-card {
  transform: scale(1);
}

.video-modal-header {
  padding: 16px 24px;
  background: var(--paper, #f8fafc);
  border-bottom: 1px solid var(--line, #e2e8f0);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.video-modal-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy, #0b1b3b);
  margin-bottom: 2px;
}
.video-modal-subtitle {
  font-size: 13px;
  color: var(--slate, #64748b);
}
.video-modal-close {
  background: var(--tag-bg, #e2e8f0);
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 700;
  color: var(--navy, #0b1b3b);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    background 0.2s ease,
    transform 0.2s ease;
}
.video-modal-close:hover {
  background: var(--red, #ef4444);
  color: #ffffff;
  transform: scale(1.08);
}

.video-modal-body {
  padding: 0;
  background: #000000;
}

.vimeo-aspect-ratio {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  background: #000000;
}
.vimeo-aspect-ratio iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* About Section Video Card */
.about-video-card {
  margin-top: 24px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  background: var(--card, #ffffff);
}
.about-video-poster {
  position: relative;
  width: 100%;
  height: 240px;
  overflow: hidden;
  cursor: pointer;
}
.about-video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.about-video-poster:hover img {
  transform: scale(1.04);
}
.poster-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 42, 107, 0.3) 0%, rgba(11, 42, 107, 0.85) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  color: #ffffff;
}
.play-pulse-btn {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--red, #d8203c);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 10px;
  box-shadow: 0 0 0 0 rgba(216, 32, 60, 0.6);
  animation: pulse-play 2s infinite;
}
@keyframes pulse-play {
  0% {
    box-shadow: 0 0 0 0 rgba(216, 32, 60, 0.6);
  }
  70% {
    box-shadow: 0 0 0 16px rgba(216, 32, 60, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(216, 32, 60, 0);
  }
}
.poster-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
}
.poster-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  margin-top: 4px;
}
