@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
/* ===========================
   Tokens (SCSS Maps)
=========================== */
/* ===========================
   Helpers
=========================== */
/* ===========================
   CSS Variables (runtime token)
=========================== */
:root {
  --ET-Gold: #c9a84c;
  --ET-DeepBlue: #0a1931;
  --ET-DeepBlue-rgb: 10, 25, 49;
  --ET-Gold-Light: #e8c96a;
  --ET-OffWhite: #f9f8f6;
  --ET-Red: #dc2626;
  
}

body * {
  box-sizing: border-box;
}

html, body {
  max-width: 100vw;
  color: var(--text-primary);
  background: var(--background);
  overflow-x: hidden;
  padding: 0;
  margin: 0;
  font-family: "Outfit", sans-serif;
  box-sizing: border-box;
}

p, span {
  font-family: "Inter", sans-serif;
}

h1,h2,h3,h4,h5,h6 {
  margin-top: 0px;
}

/* ===========================
   Header Base
=========================== */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
}
.site-header.is-scrolled,
.site-header.is-guru-mega-open {
  background-color: #06091a;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

/* ===========================
   Header Container
=========================== */
.header-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* ===========================
   Logo
=========================== */
.logo-link {
  flex-shrink: 0;
}

.logo-img {
  height: 32px;
  width: auto;
  transition: all 0.3s ease;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.2));
}

/* ===========================
   Desktop Navigation
=========================== */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 32px;
}

.nav-dropdown-wrap {
  position: relative;
  height: 80px;
  display: flex;
  align-items: center;
}

.nav-btn,
.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s ease;
  position: relative;
}
.nav-btn:hover,
.nav-link:hover {
  color: #c9a84c;
}

.nav-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--ET-Gold);
}

.chevron-icon {
  transition: transform 0.2s ease;
}

.crown-icon {
  stroke: var(--ET-Gold);
}

.nav-link--underline .nav-underline {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--ET-Gold);
  transition: width 0.3s ease;
}
.nav-link--underline:hover .nav-underline {
  width: 100%;
}

/* ===========================
   Right Action Area
=========================== */
.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.action-icon {
  display: none;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.2s ease;
}
.action-icon:hover {
  color: #ffffff;
}

.action-divider {
  display: none;
  height: 20px;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.15);
}

.btn-login {
  display: none;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  text-decoration: none;
  transition: all 0.2s ease;
}
.btn-login:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

/* ===========================
   Mobile Menu Button
=========================== */
.mobile-menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  color: #ffffff;
  background: none;
  border: none;
  cursor: pointer;
}

/* ===========================
   Responsive — Desktop
=========================== */
@media (min-width: 1024px) {
  .logo-img {
    height: 40px;
  }
  .desktop-nav {
    display: flex;
  }
  .action-icon,
  .action-divider,
  .btn-login {
    display: flex;
  }
  .mobile-menu-btn {
    display: none;
  }
}
/* ===========================
   Hero Section — Base
=========================== */
.hero-section {
  position: relative;
  min-height: 100dvh;
  display: flex;
  align-items: flex-start;
  overflow: hidden;
  background-color: #06091a;
  padding-top: 96px;
  padding-bottom: 48px;
}

/* ===========================
   Background Layers
=========================== */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg__radial-top-right {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(197, 160, 89, 0.12), transparent 55%);
}
.hero-bg__radial-bottom-left {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at bottom left, rgba(37, 99, 235, 0.07), transparent 55%);
}
.hero-bg__grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(197, 160, 89, 0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(197, 160, 89, 0.02) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* ===========================
   Hero Container & Grid
=========================== */
.container {
  max-width: 1280px;
  padding: 0 2rem;
  margin: 0 auto;
}

.hero-container {
  position: relative;
  z-index: 10;
  padding-top: 16px;
  width: 100%;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  align-items: center;
}

/* ===========================
   LEFT: Content Column
=========================== */
.hero-content {
  grid-column: span 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 9999px;
  border: 1px solid rgba(245, 158, 11, 0.3);
  background-color: rgba(245, 158, 11, 0.1);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  margin-top: 16px;
  margin-bottom: 20px;
}
.hero-badge__icon {
  stroke: #fbbf24;
  flex-shrink: 0;
}
.hero-badge__text {
  color: #fbbf24;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero-heading {
  font-size: clamp(2.25rem, 5vw, 4.2rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.07;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  margin-top: 0px;
}
.hero-heading__gradient {
  display: inline-block;
  padding-bottom: 8px;
  background: linear-gradient(to right, #fcd34d, #fef9c3, #fcd34d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtext {
  font-size: 1rem;
  color: #d1d5db;
  max-width: 560px;
  margin-bottom: 28px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  column-gap: 32px;
  row-gap: 12px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stat__value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ET-Gold);
}
.hero-stat__label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
}

.hero-cta {
  display: flex;
  align-items: center;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--ET-Gold);
  color: #000000;
  padding: 16px 48px;
  border-radius: 9999px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  box-shadow: 0 10px 30px rgba(120, 80, 10, 0.2);
  transition: all 0.2s ease;
}
.btn-primary:hover {
  background-color: #fbbf24;
}

/* ===========================
   RIGHT: Speaker Cards Area
=========================== */
.hero-cards-outer {
  position: relative;
  margin-top: 64px;
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
  -webkit-mask-image: linear-gradient(transparent, black 10%, black 90%, transparent);
  mask-image: linear-gradient(transparent, black 10%, black 90%, transparent);
  transform: rotate(-2deg) scale(1.05);
}

.hero-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  height: 150%;
  /*transform: rotate(-2deg) scale(1.05);*/
}

.hero-cards-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
  animation: scrollUp 70s linear infinite;
}
.hero-cards-col--1 {
  margin-top: -20%;
  animation-duration: 75s;
}
.hero-cards-col--2 {
  animation-duration: 85s;
}
.hero-cards-col--3 {
  margin-top: -10%;
  animation-duration: 65s;
}

@keyframes scrollUp {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-50%);
  }
}
/* ===========================
   Speaker Card
=========================== */
.speaker-card {
  position: relative;
  background-color: #06091a;
  aspect-ratio: 3/4;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.speaker-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  opacity: 0.9;
}
.speaker-card__info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  background: linear-gradient(to top, #000000, rgba(0, 0, 0, 0.8), transparent);
}
.speaker-card__tag {
  font-size: 10px;
  color: var(--ET-Gold);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}
.speaker-card__name {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.25;
}

@media(max-width:1200px){
 
  .speaker-card__name{
    font-weight: 600;
    font-size: 0.8rem;
  }
  .speaker-card__info{
    padding: 16px 8px 8px 8px;
  }
  .w-100.d-inline-block.gm-btn-wrap {
    width: 100%;
    text-align: center;
  }
  div#mcv4-grandmasters-avatars {
    margin-bottom: 0px;
}
section.et-paths-section {
  padding-top: 60px;
  padding-bottom: 60px;
}
.sfb-container {
  box-sizing: border-box;
}
.sfb-controls {
  display: inline-block !important;
  box-sizing: border-box;
}input#mcv4-library-search {
  width: 100%;
  box-sizing: border-box;
}
.et-paths-panel {
  padding: 40px 30px !important;
}
.uw-section {
  padding: 60px 0px 0px 0px !important;
}
.wew-cta {
  margin-top: 50px;
}
.wh-stats {
  justify-content: flex-start;
}
.wh-stat {
  text-align: center;
  width: 46%;
}
.wh-stat:last-child {
  width: 100%;
}
section#workshops-hero, section.wh-section {
  padding-bottom: 0px !important;
}
.agenda-number {
  display: none !important;
}

.agenda-desc ul {
  padding-left: 15px;
}
.agenda-list {
  flex-direction: column !important;
}
}

/* ===========================
   Responsive — md (768px+)
=========================== */
@media (min-width: 768px) {
  .hero-section {
    align-items: center;
    padding-top: 0;
    padding-bottom: 0;
  }
  .hero-container {
    padding-top: 0;
  }
  .hero-grid {
    grid-template-columns: repeat(12, 1fr);
    gap: 48px;
  }
  .hero-content {
    grid-column: span 6;
  }
  .hero-cards-outer {
    grid-column: span 6;
    margin-top: 0;
    height: 650px;
  }
  .hero-badge {
    padding: 8px 16px;
    margin-top: 0;
    margin-bottom: 24px;
  }
  .hero-badge__text {
    font-size: 12px;
  }
  .hero-subtext {
    font-size: 1.125rem;
  }
  .hero-cards-grid,
  .hero-cards-col {
    gap: 16px;
  }
}
/* ===========================
   Responsive — lg (1024px+)
=========================== */
@media (min-width: 1024px) {
  .hero-content {
    grid-column: span 7;
  }
  .hero-cards-outer {
    grid-column: span 5;
  }
  .hero-badge {
    margin-top: 50px;
  }
}
/* ===========================
   Programs Section
=========================== */
.programs-section {
  padding-top: 80px;
  padding-bottom: 80px;
  position: relative;
  z-index: 20;
}

/* ===========================
   Section Header
=========================== */
.programs-header {
  margin-bottom: 40px;
  text-align: center;
}
.programs-header__eyebrow {
  font-size: 10px;
  color: var(--ET-Gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: 8px;
}
.programs-header__title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  color: var(--ET-DeepBlue);
}

/* ===========================
   Cards Grid
=========================== */
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

@media (max-width: 1200px) {
  .programs-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}

/* ===========================
   Program Card — Base
=========================== */
.program-card {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  border: 1px solid #f3f4f6;
  padding: 28px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.program-card--gold {
  border-top: 4px solid var(--ET-Gold);
}
.program-card--gold:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(201, 168, 76, 0.4);
  border-top-color: var(--ET-Gold);
}
.program-card--blue {
  border-top: 4px solid var(--ET-DeepBlue);
}
.program-card--blue:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-color: rgba(var(--ET-DeepBlue-rgb), 0.3);
  border-top-color: var(--ET-DeepBlue);
}
.program-card--link {
  text-decoration: none;
  cursor: pointer;
}
.program-card__head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.program-card__icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.program-card__icon-wrap--gray {
  background-color: #f9fafb;
}
.program-card__icon-wrap--amber {
  background-color: #fffbeb;
}
.program-card__icon--gold {
  stroke: var(--ET-Gold);
}
.program-card__icon--blue {
  stroke: var(--ET-DeepBlue);
}
.program-card__title {
  font-weight: 700;
  color: var(--ET-DeepBlue);
  font-size: 1.125rem;
}
.program-card__subtitle {
  font-size: 10px;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.program-card__desc {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 20px;
  line-height: 1.65;
}
.program-card__links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.program-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}
.program-card__cta {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 700;
}
.program-card__cta--gold {
  color: var(--ET-Gold);
}
.program-card__cta--blue {
  color: var(--ET-DeepBlue);
}

/* ===========================
   Sub-links (Card 1 only)
=========================== */
.program-sublink {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 16px;
  border-radius: 12px;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  text-decoration: none;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}
.program-sublink:hover {
  background-color: #f3f4f6;
  border-color: #9ca3af;
}
.program-sublink__left {
  display: flex;
  align-items: center;
  gap: 8px;
}
.program-sublink__icon {
  stroke: #6b7280;
}
.program-sublink__text {
  font-size: 0.875rem;
  font-weight: 700;
  color: #374151;
}
.program-sublink__arrow {
  stroke: #9ca3af;
  transition: transform 0.2s ease;
}
.program-sublink:hover .program-sublink__arrow {
  transform: translateX(4px);
}

/* ===========================
   Tag Pills (Cards 2 & 3)
=========================== */
.program-tag {
  font-size: 10px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 9999px;
  background-color: #f9fafb;
  color: #4b5563;
  border: 1px solid #e5e7eb;
}

/* ===========================
   Gurus Section
=========================== */
.gurus-section {
  padding-top: 0px;
  padding-bottom: 80px;
  background-color: #ffffff;
  position: relative;
  z-index: 20;
  border-bottom: 1px solid #f3f4f6;
}

/* ===========================
   Top Row: Intro + CTA
=========================== */
.gurus-top-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 48px;
}

.gurus-intro {
  max-width: 672px;
}
.gurus-intro__eyebrow {
  font-size: 10px;
  color: var(--ET-Gold);
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 900;
  margin-bottom: 12px;
}
.gurus-intro__heading {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--ET-DeepBlue);
  line-height: 1.2;
}
.gurus-intro__subtext {
  color: #6b7280;
  font-size: 1.125rem;
  margin-top: 12px;
  line-height: 1.65;
}

  .btn-outline-blue {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ET-DeepBlue);
    border: 2px solid #f3f4f6;
    padding: 14px 32px;
    border-radius: 9999px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }
  .btn-outline-blue-2 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.75rem;
    font-weight: 700;
    color: white;
    padding: 14px 32px;
    border-radius: 9999px;
    text-decoration: none;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    background-color: var(--ET-DeepBlue);
    border: 1px solid var(--ET-DeepBlue);
  }
  .btn-outline-blue-2:hover {
    background-color: white;
    color:var(--ET-DeepBlue);

  }
.btn-outline-blue:hover {
  background-color: var(--ET-DeepBlue);
  color: #ffffff;
  border-color: var(--ET-DeepBlue);
}
.btn-outline-blue__arrow {
  transition: transform 0.2s ease;
}
.btn-outline-blue:hover .btn-outline-blue__arrow {
  transform: translateX(4px);
}

/* ===========================
   Speakers Grid
=========================== */
.speakers-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}

/* ===========================
   Speaker Thumbnail
=========================== */
.speaker-thumb {
  cursor: pointer;
}
.speaker-thumb a {
  text-decoration: none;
  display: block;
}
.speaker-thumb__card {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  background-color: #f3f4f6;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.speaker-thumb:hover .speaker-thumb__card {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(201, 168, 76, 0.6);
}
.speaker-thumb__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: grayscale(20%);
  transition: filter 0.5s ease, transform 0.5s ease;
}
.speaker-thumb:hover .speaker-thumb__img {
  filter: grayscale(0%);
  transform: scale(1.05);
}
.speaker-thumb__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.1) 50%, transparent);
}
.speaker-thumb__badge {
  position: absolute;
  top: 6px;
  left: 6px;
  font-size: 7px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #ffffff;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  padding: 2px 6px;
  border-radius: 4px;
}
.speaker-thumb__name-overlay {
  position: absolute;
  bottom: 8px;
  left: 8px;
  right: 8px;
  color: #ffffff;
  font-weight: 700;
  font-size: 10px;
  line-height: 1.3;
}
.speaker-thumb__meta {
  margin-top: 6px;
}
.speaker-thumb__meta-name {
  font-weight: 700;
  font-size: 12px;
  color: #1f2937;
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  transition: color 0.2s ease;
}
.speaker-thumb:hover .speaker-thumb__meta-name {
  color: var(--ET-Red);
}
.speaker-thumb__meta-role {
  color: #9ca3af;
  font-size: 11px;
  margin-top: 2px;
  line-height: 1.3;
  overflow: hidden;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

/* ===========================
   Responsive — sm (640px+)
=========================== */
@media (min-width: 640px) {
  .speakers-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
/* ===========================
   Responsive — md (768px+)
=========================== */
@media (min-width: 768px) {
  .gurus-intro__heading {
    font-size: 2.25rem;
  }
  .speakers-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
/* ===========================
   Responsive — lg (1024px+)
=========================== */
@media (min-width: 1024px) {
  .speakers-grid {
    grid-template-columns: repeat(8, 1fr);
  }
}
/* ===========================
   Stats Section — Base
=========================== */
.stats-section {
  padding-top: 96px;
  padding-bottom: 96px;
  background-color: #0a0f25;
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* ===========================
   Background Layers
=========================== */
.stats-bg__texture {
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/stardust.png");
  opacity: 0.2;
  pointer-events: none;
}
.stats-bg__glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle at center, rgba(212, 175, 55, 0.05), transparent 60%);
  pointer-events: none;
}

/* ===========================
   Content Wrapper
=========================== */
.stats-container {
  position: relative;
  z-index: 10;
  text-align: center;
}

.stats-inner {
  max-width: 896px;
  margin: 0 auto;
}

/* ===========================
   Badge
=========================== */
.stats-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  border-radius: 9999px;
  border: 1px solid rgba(201, 168, 76, 0.5);
  background-color: rgba(201, 168, 76, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 32px;
}
.stats-badge__icon {
  stroke: var(--ET-Gold);
  flex-shrink: 0;
}
.stats-badge__text {
  color: var(--ET-Gold);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

/* ===========================
   Heading
=========================== */
.stats-heading {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 32px;
  line-height: 1.15;
}
.stats-heading__gradient {
  background: linear-gradient(to right, var(--ET-Gold), #fef9c3, var(--ET-Gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===========================
   Subtext
=========================== */
.stats-subtext {
  font-size: 1rem;
  color: #9ca3af;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.7;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}

/* ===========================
   Stats Grid
=========================== */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 64px;
}

/* ===========================
   Individual Stat Item
=========================== */
.stats-item {
  text-align: center;
  position: relative;
}
.stats-item__divider {
  display: none;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 48px;
  background-color: rgba(255, 255, 255, 0.1);
}
.stats-item__value {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 12px;
}
.stats-item__label {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ET-Gold);
  text-transform: uppercase;
  letter-spacing: 0.15em;
}
.stats-item--divider .stats-item__divider {
  display: none;
}

/* ===========================
   Responsive — md (768px+)
=========================== */
@media (min-width: 768px) {
  .stats-heading {
    font-size: 3.75rem;
  }
  .stats-subtext {
    font-size: 1.25rem;
    margin-bottom: 64px;
  }
  .stats-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .stats-item__value {
    font-size: 3rem;
  }
  .stats-item--divider .stats-item__divider {
    display: block;
  }
}
/* ======================================
   SECTION
====================================== */
.et-leadership-section {
  padding: 80px 0;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid #f3f4f6;
}

/* ======================================
   CONTAINER
====================================== */
.et-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 10;
  box-sizing: border-box;
}

/* ======================================
   SECTION HEADER
====================================== */
.et-section-header {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 64px;
  gap: 24px;
}

.et-header-content {
  max-width: 672px;
}

.et-eyebrow {
  color: var(--ET-Gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 13px;
  margin: 0 0 12px 0;
}

.et-heading {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--ET-DeepBlue);
  line-height: 1.15;
  margin: 0;
  font-family: var(--font-heading, inherit);
}

.et-subtext {
  color: #6b7280;
  margin-top: 16px;
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 0;
}

/* ======================================
   CARDS GRID
====================================== */
.et-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

/* ======================================
   CARD
====================================== */
.et-card {
  position: relative;
  padding: 32px;
  border-radius: 16px;
  background-color: #f9fafb;
  border: 1px solid #f3f4f6;
  overflow: hidden;
  transition: background-color 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}
.et-card:hover {
  background-color: #ffffff;
  border-color: var(--ET-Gold);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* ======================================
   CARD — Background Decorative Icon
====================================== */
.et-card-bg-icon {
  position: absolute;
  top: 0;
  right: 0;
  padding: 32px;
  color: var(--ET-DeepBlue);
  opacity: 0.05;
  transform: scale(1);
  transform-origin: top right;
  transition: opacity 0.3s ease, transform 0.5s ease;
  pointer-events: none;
}
.et-card-bg-icon svg {
  width: 64px;
  height: 64px;
}

.et-card:hover .et-card-bg-icon {
  opacity: 0.1;
  transform: scale(1.1);
}

/* ======================================
   CARD — Foreground Icon Box
====================================== */
.et-card-icon {
  position: relative;
  z-index: 10;
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ET-DeepBlue);
  margin-bottom: 24px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.et-card:hover .et-card-icon {
  background-color: var(--ET-DeepBlue);
  color: var(--ET-Gold);
}

/* ======================================
   CARD — Text
====================================== */
.et-card-title {
  position: relative;
  z-index: 10;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--ET-DeepBlue);
  margin: 0 0 12px 0;
}

.et-card-text {
  position: relative;
  z-index: 10;
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.7;
  font-weight: 300;
  margin: 0;
  transition: color 0.3s ease;
}

.et-card:hover .et-card-text {
  color: #4b5563;
}

@media (min-width: 768px) {
  .et-section-header {
    flex-direction: row;
    align-items: flex-end;
  }
  .et-cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .et-cards-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* =============================================
   SECTION WRAPPER
============================================= */
.gm-section {
  padding: 80px 0;
  background-color: #190836;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.gm-bg-texture {
  position: absolute;
  inset: 0;
  opacity: 0.1;
  background-image: url("https://img.etb2bimg.com/files/cp/275f04637e939971b60c.png");
  mix-blend-mode: overlay;
  pointer-events: none;
}

.gm-blob {
  position: absolute;
  width: 384px;
  height: 384px;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  opacity: 0.2;
}
.gm-blob--gold {
  top: 0;
  right: 0;
  background-color: var(--ET-Gold);
}
.gm-blob--blue {
  bottom: 0;
  left: 0;
  background-color: #3b82f6;
}

/* =============================================
   CONTAINER
============================================= */
.gm-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 10;
  box-sizing: border-box;
}

/* =============================================
   HEADER ROW
============================================= */
.gm-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 64px;
  gap: 24px;
}

.gm-eyebrow {
  color: var(--ET-Gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  margin: 0 0 12px 0;
}

.gm-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  margin: 0;
  line-height: 1.2;
}

.gm-subtitle {
  color: #d1d5db;
  margin: 16px 0 0 0;
  font-size: 1.125rem;
  max-width: 576px;
}

.gm-btn {
  display: inline-block;
  background-color: #c5a059;
  color: var(--ET-DeepBlue);
  font-weight: 700;
  padding: 12px 32px;
  border-radius: 4px;
  text-decoration: none;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  transition: background-color 0.2s;
}
.gm-btn:hover {
  background-color: #facc15;
}

/* =============================================
   AVATARS STRIP
============================================= */
.gm-avatars {
  display: flex;
  justify-content: center;
  margin-bottom: 64px;
  padding: 0 16px 64px;
  flex-wrap: wrap;
  gap: 0;
}

.gm-avatar-wrap {
  position: relative;
  cursor: pointer;
  margin-left: -16px;
  z-index: 1;
}
.gm-avatar-wrap:first-child {
  margin-left: 0;
}
.gm-avatar-wrap:hover {
  z-index: 20;
}
.gm-avatar-wrap:hover .gm-avatar-img {
  opacity: 1;
}
.gm-avatar-wrap:hover .gm-avatar-tooltip {
  opacity: 1;
}

.gm-avatar-img-wrap {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 4px solid var(--ET-DeepBlue);
  overflow: hidden;
  background-color: #1f2937;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.gm-avatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.9;
  transition: opacity 0.2s;
}

.gm-avatar-tooltip {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  width: 144px;
  text-align: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s;
  padding-top: 8px;
  z-index: 50;
}

.gm-tooltip-inner {
  background-color: var(--ET-DeepBlue);
  color: #fff;
  font-size: 10px;
  padding: 8px;
  border-radius: 8px;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(201, 168, 76, 0.3);
}

.gm-tooltip-name {
  font-weight: 700;
  color: var(--ET-Gold);
  font-size: 12px;
  margin-bottom: 2px;
}

.gm-tooltip-desc {
  color: #d1d5db;
  line-height: 1.4;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.gm-avatar-more {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 4px solid var(--ET-DeepBlue);
  background-color: #c5a059;
  color: var(--ET-DeepBlue);
  font-weight: 700;
  font-size: 10px;
  text-decoration: none;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  margin-left: -16px;
  position: relative;
  z-index: 10;
  line-height: 1.2;
  transition: background-color 0.2s;
}
.gm-avatar-more:hover {
  background-color: #fff;
}

/* =============================================
   PROGRAM CARDS GRID
============================================= */
.gm-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.gm-card-link {
  display: block;
  height: 100%;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  backdrop-filter: blur(8px);
  transition: background-color 0.3s;
}
.gm-card-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.gm-card-link:hover .gm-card-hover-overlay {
  opacity: 1;
}
.gm-card-link:hover .gm-card-cta {
  color: var(--ET-Gold);
}

.gm-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gm-card-hover-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(201, 168, 76, 0) 0%, rgba(201, 168, 76, 0.05) 50%, rgba(201, 168, 76, 0) 100%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}

.gm-card-body {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  position: relative;
  z-index: 10;
}

.gm-card-avatar {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background-color: #1f2937;
  border: 2px solid var(--ET-Gold);
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}
.gm-card-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
}

section#workshops-hero {
  background: #1a0936;
}

.gm-card-speaker {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--ET-Gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.gm-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px 0;
  line-height: 1.3;
}

.gm-card-desc {
  color: #d1d5db;
  font-size: 0.875rem;
  margin: 0 0 16px 0;
}

.gm-card-cta {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #fff;
  text-decoration: underline;
  text-decoration-color: var(--ET-Gold);
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
  transition: color 0.2s;
}

@media (min-width: 768px) {
  .gm-header {
    flex-direction: row;
  }
  .gm-title {
    font-size: 3rem;
  }
  .gm-avatars {
    flex-wrap: nowrap;
  }
  .gm-avatar-img-wrap {
    width: 96px;
    height: 96px;
  }
  .gm-avatar-more {
    width: 96px;
    height: 96px;
    font-size: 12px;
  }
  .gm-grid {
    grid-template-columns: 1fr 1fr;
  }
}
/* =============================================
   SECTION
============================================= */
.bp-section {
  padding: 80px 0;
  background-color: #fff;
}

/* =============================================
   CONTAINER
============================================= */
.bp-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* =============================================
   SECTION HEADER
============================================= */
.bp-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}

.bp-eyebrow {
  display: block;
  color: var(--ET-Gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.7rem;
  margin-bottom: 12px;
}

.bp-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--ET-DeepBlue);
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.bp-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  margin: 0;
}

/* =============================================
   CARDS GRID
============================================= */
.bp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

@media (min-width: 768px) {
  .bp-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .bp-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* =============================================
   CARD
============================================= */
.bp-card-link {
  display: block;
  height: 100%;
  text-decoration: none;
}

.bp-card {
  background-color: #fff;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s, transform 0.3s;
}
.bp-card:hover {
  box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}
.bp-card:hover .bp-card-title {
  color: var(--ET-DeepBlue);
}

.bp-card-bar {
  height: 6px;
  width: 100%;
  flex-shrink: 0;
}
.bp-card-bar--deep-blue {
  background-color: var(--ET-DeepBlue);
}
.bp-card-bar--gold {
  background-color: var(--ET-Gold);
}

.bp-card-body {
  padding: 32px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.bp-card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 16px;
}

.bp-badge {
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.bp-badge--default {
  background-color: #f3f4f6;
  color: var(--ET-DeepBlue);
}
.bp-badge--gold {
  background-color: rgba(232, 201, 106, 0.2);
  color: var(--ET-Gold);
}

.bp-card-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: #111827;
  margin: 0 0 12px 0;
  line-height: 1.4;
  min-height: 3.5rem;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}

.bp-card-speaker {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
  margin-bottom: 24px;
}
.bp-card-speaker svg {
  color: #9ca3af;
  flex-shrink: 0;
}

.bp-card-footer {
  margin-top: auto;
  padding-top: 24px;
}

/* =============================================
   SECTION
============================================= */
.ci-section {
  padding: 0px 0 80px 0px;
  background: linear-gradient(to bottom, #ffffff, var(--ET-OffWhite));
}

/* =============================================
   CONTAINER
============================================= */
.ci-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* =============================================
   SECTION HEADER
============================================= */
.ci-header {
  text-align: center;
  margin-bottom: 64px;
  max-width: 896px;
  margin-left: auto;
  margin-right: auto;
}

.ci-eyebrow {
  color: var(--ET-Gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.875rem;
  margin: 0 0 12px 0;
}

.ci-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--ET-DeepBlue);
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.ci-subtitle {
  font-size: 1.125rem;
  color: #6b7280;
  margin: 0;
}

/* =============================================
   GRID
============================================= */
.ci-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  max-width: 1152px;
  margin: 0 auto;
}

/* =============================================
   CARD
============================================= */
.ci-card {
  position: relative;
  padding: 32px;
  border-radius: 16px;
  border: 1px solid #ebebeb;
  background-color: #fff;
  overflow: hidden;
  display: block;
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.ci-card:hover {
  border-color: var(--ET-Gold);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.18);
}
.ci-card:hover .ci-card-bg-icon {
  opacity: 0.08;
}
.ci-card:hover .ci-card-icon {
  background-color: var(--ET-DeepBlue);
  color: var(--ET-Gold);
  transform: scale(1.1);
}
.ci-card:hover .ci-card-cta {
  color: var(--ET-Gold);
}
.ci-card:hover .ci-cta-arrow {
  transform: translateX(4px);
}
@media (min-width: 1024px) {
  .ci-card:not(.ci-card--wide) {
    grid-column: span 2;
  }
}
@media (min-width: 768px) {
  .ci-card--wide {
    grid-column: span 1;
  }
}
@media (min-width: 1024px) {
  .ci-card--wide {
    grid-column: span 3;
  }
}

.ci-card-bg-icon {
  position: absolute;
  top: 0;
  right: 0;
  padding: 32px;
  color: var(--ET-DeepBlue);
  opacity: 0.03;
  transform: scale(3);
  transform-origin: top right;
  pointer-events: none;
  transition: opacity 0.3s;
}

.ci-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #f9fafb;
  color: #4b5563;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background-color 0.3s, color 0.3s, transform 0.3s;
  flex-shrink: 0;
}

.ci-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ET-DeepBlue);
  margin: 0 0 8px 0;
}

.ci-card-desc {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0 0 24px 0;
}

.ci-card-cta {
  display: flex;
  align-items: center;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
  gap: 8px;
  transition: color 0.2s;
}

.ci-cta-arrow {
  transition: transform 0.2s;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .ci-title {
    font-size: 3rem;
  }
  .ci-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .ci-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}
/* =============================================
   MARQUEE KEYFRAME ANIMATION
============================================= */
@keyframes lm-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
/* =============================================
   SECTION
============================================= */
.lm-section {
  padding: 80px 0;
  background-color: #06091a;
  overflow: hidden;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.lm-bg-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at bottom, rgba(197, 160, 89, 0.05), transparent 60%);
  pointer-events: none;
}

/* =============================================
   CONTAINER
============================================= */
.lm-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 10;
  box-sizing: border-box;
}

/* =============================================
   SECTION HEADER
============================================= */
.lm-header {
  text-align: center;
}

.lm-eyebrow {
  color: var(--ET-Gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-size: 10px;
  margin: 0 0 16px 0;
}

.lm-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.025em;
  margin: 0 0 24px 0;
  line-height: 1.15;
}

.lm-subtitle {
  color: #9ca3af;
  font-size: 1rem;
  max-width: 672px;
  margin: 0 auto;
  line-height: 1.75;
}

/* =============================================
   MARQUEE
============================================= */
.lm-marquee-wrap {
  position: relative;
  overflow: hidden;
  margin-bottom: 48px;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}
.lm-marquee-wrap:hover .lm-marquee-track {
  animation-play-state: paused;
}

.lm-marquee-track {
  display: flex;
  gap: 24px;
  width: max-content;
  animation: lm-marquee 40s linear infinite;
}

.lm-pill {
  flex-shrink: 0;
  padding: 14px 32px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 9999px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  backdrop-filter: blur(8px);
  cursor: default;
  transition: border-color 0.2s, color 0.2s;
}
.lm-pill:hover {
  border-color: rgba(201, 168, 76, 0.5);
  color: #fff;
}

/* =============================================
   ROLE TAGS ROW
============================================= */
.lm-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.lm-tag {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.7rem;
  font-weight: 700;
  cursor: default;
  transition: background-color 0.2s, color 0.2s;
}
.lm-tag:hover {
  background-color: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.lm-tag-icon {
  color: var(--ET-Gold);
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .lm-title {
    font-size: 3rem;
  }
}
/* =============================================
   FOOTER
============================================= */
.ft-footer {
  background-color: #06091a;
  color: #fff;
  padding-top: 64px;
  padding-bottom: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* =============================================
   CONTAINER
============================================= */
.ft-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
}

/* =============================================
   MAIN GRID
============================================= */
.ft-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

/* =============================================
   BRAND COLUMN
============================================= */
.ft-logo {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: 24px;
}

.ft-brand-desc {
  color: #9ca3af;
  font-size: 0.875rem;
  line-height: 1.75;
  margin: 0 0 24px 0;
  max-width: 288px;
}

.ft-socials {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.ft-social-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  text-decoration: none;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  flex-shrink: 0;
}
.ft-social-btn:hover {
  background-color: var(--ET-Gold);
  color: #000;
  border-color: var(--ET-Gold);
}

/* =============================================
   NAV COLUMNS
============================================= */
.ft-col-heading {
  color: var(--ET-Gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.7rem;
  margin: 0 0 20px 0;
}

.ft-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ft-nav-link {
  display: flex;
  align-items: flex-start;
  gap: 6px;
  font-size: 0.875rem;
  color: #9ca3af;
  text-decoration: none;
  transition: color 0.2s;
}
.ft-nav-link:hover {
  color: #fff;
}
.ft-nav-link--bold {
  color: #fff;
  font-weight: 700;
}
.ft-nav-link--bold:hover {
  color: var(--ET-Gold);
}

.ft-arrow {
  color: var(--ET-Gold);
  margin-top: 1px;
  flex-shrink: 0;
  line-height: 1;
}

.ft-badge {
  display: inline-block;
  font-size: 9px;
  background-color: rgba(201, 168, 76, 0.1);
  color: var(--ET-Gold);
  padding: 2px 6px;
  border-radius: 4px;
  margin-left: 4px;
  font-weight: 600;
  white-space: nowrap;
  align-self: center;
}

/* =============================================
   CONTACT INFO
============================================= */
.ft-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 24px;
}

.ft-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: #9ca3af;
}
.ft-contact-item--top {
  align-items: flex-start;
}

.ft-contact-icon {
  color: var(--ET-Gold);
  flex-shrink: 0;
  margin-top: 1px;
}

/* =============================================
   NEWSLETTER FORM
============================================= */
.ft-newsletter {
  margin-top: 16px;
}

.ft-newsletter-label {
  display: block;
  font-size: 0.7rem;
  color: #6b7280;
  margin-bottom: 8px;
}

.ft-newsletter-row {
  display: flex;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 4px;
  transition: border-color 0.2s;
}
.ft-newsletter-row:focus-within {
  border-color: var(--ET-Gold);
}

.ft-newsletter-input {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  font-size: 0.875rem;
  padding: 8px 12px;
  width: 100%;
  min-width: 0;
}
.ft-newsletter-input::placeholder {
  color: #4b5563;
}

.ft-newsletter-btn {
  background-color: var(--ET-Gold);
  border: none;
  border-radius: 6px;
  padding: 8px;
  cursor: pointer;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background-color 0.2s;
}
.ft-newsletter-btn:hover {
  background-color: #f59e0b;
}

/* =============================================
   BOTTOM BAR
============================================= */
.ft-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  font-size: 0.7rem;
  color: #4b5563;
}

.ft-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.ft-legal-link {
  color: #4b5563;
  text-decoration: none;
  transition: color 0.2s;
}
.ft-legal-link:hover {
  color: #fff;
}
.ft-legal-link--gold {
  color: #6b7280;
  font-weight: 500;
}
.ft-legal-link--gold:hover {
  color: var(--ET-Gold);
}
.ft-legal-link--admin {
  opacity: 0.4;
}
.ft-legal-link--admin:hover {
  opacity: 0.7;
  color: #fff;
}

@media (min-width: 768px) {
  .ft-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ft-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
}
@media (min-width: 1024px) {
  .ft-grid {
    grid-template-columns: 2fr 1fr 1fr 2fr;
  }
}
/* =============================================
   SECTION
============================================= */
.wh-section {
  position: relative;
  background: #06091a;
  padding-top: 128px;
  padding-bottom: 80px;
  overflow: hidden;
  color: #fff;
}

.wh-bg-texture {
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/stardust.png");
  opacity: 0.1;
  pointer-events: none;
}

.wh-bg-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.08), transparent 60%);
  pointer-events: none;
}

/* =============================================
   CONTAINER
============================================= */
.wh-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 10;
  text-align: center;
  box-sizing: border-box;
}

/* =============================================
   BADGE
============================================= */
.wh-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(255, 255, 255, 0.08);
  margin-bottom: 24px;
  color: var(--ET-Gold);
}
.wh-badge svg {
  flex-shrink: 0;
  color: var(--ET-Gold);
}
.wh-badge span {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--ET-Gold);
}

/* =============================================
   HEADING
============================================= */
.wh-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 20px 0;
  letter-spacing: -0.02em;
}

.wh-title-gradient {
  background: linear-gradient(to right, var(--ET-Gold) 0%, #fef08a 50%, var(--ET-Gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

/* =============================================
   SUBTITLE
============================================= */
.wh-subtitle {
  color: #d1d5db;
  font-size: 1.25rem;
  max-width: 735px;
  margin: 0 auto 32px auto;
  line-height: 1.75;
  font-weight: 300;
}

/* =============================================
   STATS ROW
============================================= */
.wh-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  padding: 32px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.wh-stat {
  text-align: center;
}

.wh-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ET-Gold);
  line-height: 1.2;
}

.wh-stat-label {
  font-size: 0.65rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 2px;
}

/* Grandmasters hero — mobile stats layout (scoped; does not affect other wh-stats) */
@media (max-width: 767px) {
  .wh-section--grandmasters .wh-stats--grandmasters {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    padding: 20px 0 8px;
    margin-top: 8px;
  }

  .wh-section--grandmasters .wh-stats--grandmasters .wh-stat {
    padding: 16px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .wh-section--grandmasters .wh-stats--grandmasters .wh-stat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .wh-section--grandmasters .wh-stats--grandmasters .wh-stat-value {
    font-size: 1.875rem;
    letter-spacing: -0.02em;
  }

  .wh-section--grandmasters .wh-stats--grandmasters .wh-stat-label {
    font-size: 0.6875rem;
    line-height: 1.45;
    letter-spacing: 0.08em;
    max-width: 20rem;
    margin: 4px auto 0;
  }
}

@media (min-width: 768px) {
  .wh-title {
    font-size: 4.5rem;
  }
}
/* =============================================
   SECTION
============================================= */
.uw-section {
  padding: 80px 0 30px 0px;
  background-color: #f9fafb;
}

/* =============================================
   CONTAINER
============================================= */
.uw-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* =============================================
   SECTION HEADER ROW
============================================= */
.uw-header {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 40px;
}

.uw-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ET-DeepBlue);
  margin: 0;
}

.uw-subtitle {
  color: #6b7280;
  font-size: 0.875rem;
  margin: 4px 0 0 0;
}

.uw-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.uw-filter-btn {
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 0.7rem;
  font-weight: 700;
  border: 1px solid #e5e7eb;
  background: transparent;
  color: #6b7280;
  cursor: pointer;
  transition: all 0.2s;
  font-size: 12px;
}
.uw-filter-btn:hover {
  border-color: var(--ET-DeepBlue);
  color: white;
  background-color: var(--ET-DeepBlue);
}
.uw-filter-btn--active {
  background-color: var(--ET-DeepBlue);
  color: #fff;
  border-color: transparent;
}

/* =============================================
   GRID
============================================= */
.uw-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* =============================================
   CARD
============================================= */
.uw-card {
  background-color: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.3s, border-color 0.3s;
}
.uw-card:hover {
  box-shadow: 0 20px 40px -8px rgba(0, 0, 0, 0.15);
  border-color: rgba(201, 168, 76, 0.3);
}
.uw-card:hover .uw-card-img {
  transform: scale(1.05);
}
.uw-card:hover .uw-card-title {
  color: var(--ET-DeepBlue);
}

/* =============================================
   CARD IMAGE AREA
============================================= */
.uw-card-img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
}
@media(max-width: 1200px) {
  .uw-card-img-wrap {
    height: 190px;
  }
}
.uw-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.uw-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.1), transparent);
}

.uw-format-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.uw-format-badge--inperson {
  background-color: rgba(120, 53, 15, 0.6);
  color: #fde68a;
}
.uw-format-badge--virtual {
  background-color: rgba(30, 58, 138, 0.6);
  color: #bfdbfe;
}

.uw-format-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.uw-format-dot--amber {
  background-color: #fbbf24;
}
.uw-format-dot--blue {
  background-color: #60a5fa;
}

.uw-card-speaker {
  position: absolute;
  bottom: 12px;
  left: 12px;
  right: 12px;
}

.uw-speaker-name {
  color: var(--ET-Gold);
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 2px;
}

.uw-speaker-role {
  color: rgba(255, 255, 255, 0.7);
  font-size: 9px;
}

/* =============================================
   CARD BODY
============================================= */
.uw-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.uw-card-title {
  font-weight: 700;
  color: #111827;
  font-size: 1rem;
  margin: 0 0 4px 0;
  line-height: 1.35;
  transition: color 0.2s;
}

.uw-card-tagline {
  color: #6b7280;
  font-size: 0.7rem;
  font-style: italic;
  margin: 0 0 16px 0;
  line-height: 1.6;
}

.uw-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.75rem;
  color: #6b7280;
  margin-bottom: 16px;
}

.uw-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

.uw-meta-icon {
  color: var(--ET-Gold);
  flex-shrink: 0;
}
.uw-meta-icon--blue {
  color: #60a5fa;
}

.uw-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 16px;
}

.uw-tag {
  font-size: 9px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 9999px;
  background-color: #f3f4f6;
  color: #6b7280;
}

/* =============================================
   CARD FOOTER
============================================= */
.uw-card-footer {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.uw-price {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ET-DeepBlue);
  line-height: 1.2;
}

.uw-price-note {
  font-size: 10px;
  color: #9ca3af;
  margin-top: 2px;
}

.uw-register-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--ET-DeepBlue);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  padding: 8px 16px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  transition: background-color 0.2s, color 0.2s;
}
.uw-register-btn:hover {
  background-color: var(--ET-Gold);
  color: #000;
}

@media (min-width: 768px) {
  .uw-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .uw-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* =============================================
   SECTION
============================================= */
.wew-section {
  padding: 66px 0;
  background-color: #fff;
  position: relative;
  overflow: hidden;
}

/* =============================================
   CONTAINER
============================================= */
.wew-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  box-sizing: border-box;
}

/* =============================================
   HEADING BLOCK
============================================= */
.wew-heading-wrap {
  max-width: 896px;
  margin: 0 auto 64px auto;
  text-align: center;
}

.wew-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--ET-DeepBlue);
  margin: 0 0 24px 0;
  line-height: 1.15;
}

.wew-desc {
  color: #6b7280;
  font-size: 1.125rem;
  line-height: 1.75;
  margin: 0;
}

.wew-highlight {
  color: var(--ET-Red);
  font-weight: 700;
}

/* =============================================
   FEATURE CARDS GRID
============================================= */
.wew-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

.wew-card {
  padding: 40px;
  border-radius: 24px;
  background-color: #f9fafb;
  border: 1px solid #e8eaed;
  transition: border-color 0.3s;
}
.wew-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
}
.wew-card:hover .wew-icon-wrap {
  transform: scale(1.1);
}

.wew-icon-wrap {
  width: 48px;
  height: 48px;
  background-color: #fff;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  margin-bottom: 24px;
  transition: transform 0.3s;
}

.wew-icon {
  color: var(--ET-Gold);
}

.wew-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ET-DeepBlue);
  margin: 0 0 12px 0;
}

.wew-card-desc {
  color: #6b7280;
  font-size: 0.875rem;
  line-height: 1.75;
  margin: 0;
}

/* =============================================
   ENTERPRISE CTA BANNER
============================================= */
.wew-cta {
  margin-top: 80px;
  padding: 48px;
  border-radius: 48px;
  background: linear-gradient(to bottom right, #06091a, var(--ET-DeepBlue));
  color: #fff;
  position: relative;
  overflow: hidden;
}

.wew-cta-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 384px;
  height: 384px;
  background-color: rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  filter: blur(60px);
  transform: translate(50%, -50%);
  pointer-events: none;
}

.wew-cta-inner {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.wew-cta-text {
  max-width: 576px;
}

.wew-cta-title {
  font-size: 1.875rem;
  font-weight: 700;
  margin: 0 0 16px 0;
  line-height: 1.2;
}

.wew-cta-desc {
  color: #9ca3af;
  font-style: italic;
  line-height: 1.75;
  margin: 0;
}

.wew-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #fff;
  color: #000;
  font-weight: 700;
  font-size: 1rem;
  padding: 16px 40px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  transition: background-color 0.2s, color 0.2s;
  flex-shrink: 0;
}
.wew-cta-btn:hover {
  background-color: var(--ET-Gold);
  color: #000;
}

@media (min-width: 768px) {
  .wew-title {
    font-size: 3rem;
  }
  .wew-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .wew-cta-inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
/* =============================================
   SECTION
============================================= */
.wib-section {
  padding: 56px 0;
  background-color: #f9fafb;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

/* =============================================
   CONTAINER
============================================= */
.wib-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  box-sizing: border-box;
}

/* =============================================
   ITEMS WRAPPER
============================================= */
.wib-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px;
}

/* =============================================
   SINGLE ITEM
============================================= */
.wib-item {
  display: flex;
  align-items: center;
  gap: 12px;
}

.wib-icon-wrap {
  background-color: #fff;
  padding: 10px;
  border-radius: 50%;
  color: var(--ET-Gold);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wib-item-title {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--ET-DeepBlue);
  line-height: 1.3;
}

.wib-item-desc {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 2px;
}

/* =============================================
   CTA BUTTON
============================================= */
.wib-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--ET-DeepBlue);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  padding: 12px 28px;
  border-radius: 9999px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  box-shadow: 0 8px 24px rgba(10, 25, 49, 0.1);
  transition: background-color 0.2s;
}
.wib-cta:hover {
  background-color: #000;
}

@media (min-width: 768px) {
  .wib-container {
    flex-direction: row;
    justify-content: space-between;
  }
  .wib-items {
    justify-content: flex-start;
  }
}
/* =============================================
   SECTION
============================================= */


/* =============================================
   CONTAINER
============================================= */

/* =============================================
   CARDS STACK (vertical list)
============================================= */
.gm-stack {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* =============================================
   CARD
============================================= */
.gm-card {
 /*  background: linear-gradient(to right, #0f0f0f, #181818);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s;*/

}
.gm-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
}
.gm-card:hover .gm-img {
  transform: scale(1.05);
}

/* =============================================
   IMAGE COLUMN
============================================= */
.gm-img-wrap {
  position: relative;
  width: 100%;
  height: 256px;
  flex-shrink: 0;
  overflow: hidden;
}

.gm-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: right;
  transition: transform 0.7s ease;
}

.gm-img-fade--right {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, transparent, #0f0f0fd9);
  display: none;
}

section#signature-hero {
  background: #1a0936;
}
.filter-grayscale {
  filter: brightness(0.5);
}

#mcv4-grandmasters-avatars img.gm-avatar-img {
  object-position: right;
}

.gm-img-fade--bottom {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0f0f0f, transparent);
  display: block;
}

.gm-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background-color: var(--ET-Gold);
  color: #000;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  padding: 4px 10px;
  border-radius: 9999px;
}

/* =============================================
   CONTENT COLUMN
============================================= */
.gm-body {
  flex: 1;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}

.gm-category {
  color: var(--ET-Gold);
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 8px;
}

.gm-name {
  font-size: 1.875rem;
  font-weight: 700;
  margin: 0 0 6px 0;
  line-height: 1.15;
}

.gm-role {
  color: var(--ET-Gold);
  font-size: 0.875rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.gm-accolade {
  color: #6b7280;
  font-size: 0.75rem;
  margin-bottom: 20px;
}

.gm-quote {
  border-left: 2px solid var(--ET-Gold);
  padding: 8px 0 8px 20px;
  margin: 0 0 20px 0;
}
.gm-quote p {
  color: #d1d5db;
  font-size: 0.875rem;
  font-style: italic;
  line-height: 1.75;
  margin: 0;
}

/* =============================================
   CARD FOOTER ROW
============================================= */
.gm-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.gm-perks {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.gm-perk {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  color: #9ca3af;
}

.gm-perk-icon {
  color: var(--ET-Gold);
  flex-shrink: 0;
}

.gm-enroll-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--ET-Gold);
  color: #000;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 9999px;
  text-decoration: none;
  transition: background-color 0.2s;
}
.gm-enroll-btn:hover {
  background-color: #fbbf24;
}

.gm-bottom {
  text-align: center;
  margin-top: 40px;
}
.gm-bottom a.gm-explore-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background-color: var(--ET-Gold);
  color: #000;
  font-size: 1.05rem;
  font-weight: 700;
  padding: 10px 20px;
  border-radius: 9999px;
  text-decoration: none;
  transition: background-color 0.2s;
  margin-top: 1rem;
}
.gm-bottom a.gm-explore-btn:hover {
  background-color: #fbbf24;
}

@media (min-width: 768px) {
  .gm-card {
    flex-direction: row;
  }
  .gm-img-wrap {
    width: 256px;
    height: auto;
  }
  .gm-img-fade--right {
    display: block;
  }
  .gm-img-fade--bottom {
    display: none;
  }
}
/* =============================================
   SECTION
============================================= */
.sm-section {
  position: relative;
  padding-top: 128px;
  padding-bottom: 96px;
  background-color: var(--ET-DeepBlue);
  color: #fff;
  overflow: hidden;
}

.sm-bg-texture {
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/dark-matter.png");
  opacity: 0.2;
  pointer-events: none;
}

.sm-bg-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 600px;
  height: 600px;
  background-color: var(--ET-Gold);
  opacity: 0.1;
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
}

/* =============================================
   CONTAINER
============================================= */
.sm-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 64px;
  box-sizing: border-box;
}

/* =============================================
   LEFT: TEXT CONTENT
============================================= */
.sm-content {
  flex: 1;
}

.sm-badge-wrap {
  margin-bottom: 24px;
}

.sm-badge {
  display: inline-block;
  background-color: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--ET-Gold);
  color: var(--ET-Gold);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.sm-title {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 24px 0;
  color: #fff;
}

.sm-title-gradient {
  background: linear-gradient(to right, var(--ET-Gold) 0%, #fde68a 50%, var(--ET-Gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.sm-desc {
  font-size: 1.25rem;
  color: #e5e7eb;
  margin: 0 0 32px 0;
  max-width: 560px;
  line-height: 1.75;
  font-weight: 300;
}

.sm-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.sm-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
  border: none;
}
.sm-btn--gold {
  background-color: var(--ET-Gold);
  color: var(--ET-DeepBlue);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.sm-btn--gold:hover {
  background-color: #fcd34d;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transform: scale(1.05);
}
.sm-btn--outline {
  border: 2px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}
.sm-btn--outline:hover {
  background-color: #fff;
  color: var(--ET-DeepBlue);
}

.sm-stats {
  display: flex;
  gap: 32px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.sm-stat-value {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
}

.sm-stat-label {
  font-size: 10px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-top: 2px;
}

/* =============================================
   RIGHT: VISUAL GRID
============================================= */
.sm-visual {
  flex: 1;
  position: relative;
}

.sm-ring {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  z-index: -1;
  pointer-events: none;
}

.sm-grid {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.sm-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.sm-col--offset {
  padding-top: 48px;
}

.sm-img-card--portrait {
  background-color: #1f2937;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.sm-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sm-gold-card {
  background-color: var(--ET-Gold);
  color: var(--ET-DeepBlue);
  padding: 24px;
  border-radius: 16px;
}

.sm-gold-value {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 8px;
}

.sm-gold-label {
  font-size: 0.875rem;
  font-weight: 500;
}

.sm-review-card {
  background-color: #1f2937;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  padding: 0 0 16px 0;
}

.sm-stars {
  display: flex;
  gap: 2px;
  padding: 16px 16px 8px 16px;
}

.sm-star {
  color: var(--ET-Gold);
  fill: var(--ET-Gold);
  flex-shrink: 0;
}

.sm-review-text {
  font-size: 0.875rem;
  font-style: italic;
  color: #d1d5db;
  padding: 0 16px;
  margin: 0;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .sm-container {
    flex-direction: row;
    align-items: center;
  }
  .sm-title {
    font-size: 4.5rem;
  }
}
/* =============================================
   SECTION
============================================= */
.us-section {
  padding: 80px 0;
  border-bottom: 1px solid #f3f4f6;
  background-color: #fff;
}

/* =============================================
   CONTAINER
============================================= */
.us-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

/* =============================================
   HEADER ROW
============================================= */
.us-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 24px;
}

.us-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--ET-DeepBlue);
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.us-subtitle {
  color: #4b5563;
  margin: 0;
  font-size: 1rem;
}

.us-view-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: var(--ET-Gold);
  color: var(--ET-DeepBlue);
  font-weight: 700;
  font-size: 0.875rem;
  padding: 12px 24px;
  border-radius: 10px;
  text-decoration: none;
  border: none;
  white-space: nowrap;
  transition: background-color 0.2s;
  flex-shrink: 0;
}
.us-view-btn:hover {
  background-color: #eab308;
}

/* =============================================
   GRID
============================================= */
.us-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

/* =============================================
   CARD LINK WRAPPER
============================================= */
.us-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s;
}
.us-card-link:hover {
  transform: translateY(-8px);
}
.us-card-link:hover .us-card {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}
.us-card-link:hover .us-thumb-img {
  transform: scale(1.05);
}
.us-card-link:hover .us-card-title {
  color: var(--ET-DeepBlue);
}

/* =============================================
   CARD
============================================= */
.us-card {
  position: relative;
  background-color: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.3s, transform 0.3s;
}

.us-card-bar {
  height: 6px;
  width: 100%;
  background-color: var(--ET-Gold);
  flex-shrink: 0;
}

/* =============================================
   THUMBNAIL
============================================= */
.us-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background-color: #f3f4f6;
  overflow: hidden;
}

.us-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.us-format-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background-color: rgba(201, 168, 76, 0.9);
  color: #fff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* =============================================
   CARD BODY
============================================= */
.us-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.us-speaker {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
}

.us-speaker-icon {
  color: var(--ET-Gold);
  flex-shrink: 0;
}

.us-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ET-DeepBlue);
  margin: 0 0 8px 0;
  line-height: 1.35;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s;
}

.us-card-tagline {
  font-size: 0.875rem;
  color: #6b7280;
  margin: 0 0 16px 0;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =============================================
   CARD FOOTER
============================================= */
.us-card-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #f3f4f6;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.us-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.us-meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #4b5563;
}
.us-meta-row svg {
  flex-shrink: 0;
  color: #4b5563;
}

.us-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
}

.us-price {
  font-weight: 700;
  font-size: 1.125rem;
  color: #111827;
}

.us-details-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ET-Gold);
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  transition: color 0.2s;
}
.us-details-btn:hover {
  color: #b45309;
}

@media (min-width: 768px) {
  .us-header {
    flex-direction: row;
  }
  .us-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* ================================
   SECTION
================================ */
.ipa-section {
  padding: 80px 0;
  background-color: #ffffff;
}

/* ================================
   CONTAINER
================================ */
.ipa-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

/* ================================
   HEADER
================================ */
.ipa-header {
  text-align: center;
  max-width: 768px;
  margin: 0 auto 64px auto;
}

.ipa-eyebrow {
  display: block;
  color: var(--ET-Gold);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 0.875rem;
  margin-bottom: 8px;
}

.ipa-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--ET-DeepBlue);
  margin-bottom: 16px;
  line-height: 1.2;
}

.ipa-subtitle {
  color: #4b5563;
  font-size: 1.125rem;
  line-height: 1.75;
  margin: 0;
}

/* ================================
   GRID
================================ */
.ipa-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

/* ================================
   CARD
================================ */
.ipa-icon-wrap {
  width: 64px;
  height: 64px;
  background-color: #f8fafc;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  color: var(--ET-DeepBlue);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.ipa-card:hover .ipa-icon-wrap {
  background-color: var(--ET-DeepBlue);
  color: var(--ET-Gold);
}

.ipa-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ET-DeepBlue);
  margin-bottom: 12px;
}

.ipa-card-text {
  color: #6b7280;
  line-height: 1.75;
  margin: 0;
}

@media (min-width: 768px) {
  .ipa-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* ================================
   SECTION
================================ */
.wym-section {
  padding: 80px 0;
  background-color: var(--ET-OffWhite);
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

/* ================================
   CONTAINER
================================ */
.wym-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

/* ================================
   INNER FLEX LAYOUT
================================ */
.wym-inner {
  display: flex;
  flex-direction: column;
  gap: 48px;
  align-items: center;
}

/* ================================
   LEFT COLUMN
================================ */
.wym-left {
  flex: 1;
  width: 100%;
}

.wym-title {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--ET-DeepBlue);
  margin-bottom: 24px;
  line-height: 1.2;
}

.wym-desc {
  color: #4b5563;
  font-size: 1.125rem;
  line-height: 1.75;
  margin-bottom: 32px;
}

/* ================================
   PROGRESS BARS
================================ */
.wym-bars {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.wym-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ET-DeepBlue);
  margin-bottom: 8px;
}

.wym-bar-track {
  height: 8px;
  background-color: #e5e7eb;
  border-radius: 9999px;
  overflow: hidden;
}

.wym-bar-fill {
  height: 100%;
  background-color: var(--ET-DeepBlue);
  border-radius: 9999px;
}

/* ================================
   RIGHT COLUMN
================================ */
.wym-right {
  flex: 1;
  width: 100%;
}

/* ================================
   STATS GRID
================================ */
.wym-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* ================================
   STAT CARD
================================ */
.wym-stat-card {
  background-color: #ffffff;
  padding: 24px;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  text-align: center;
}
.wym-stat-card--wide {
  grid-column: span 2;
}

.wym-stat-number {
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--ET-Gold);
  margin-bottom: 8px;
  line-height: 1;
}

.wym-stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  color: #6b7280;
}

/* ================================
   WIDE CARD ICONS + CAPTION
================================ */
.wym-stat-icons {
  display: flex;
  justify-content: center;
  gap: 16px;
  color: #94a3b8;
  margin-bottom: 12px;
}

.wym-stat-caption {
  font-size: 0.875rem;
  font-weight: 500;
  color: #4b5563;
}

@media (min-width: 768px) {
  .wym-inner {
    flex-direction: row;
    align-items: center;
  }
}
/* ================================
   SECTION
================================ */
.syt-section {
  padding: 80px 0;
  background-color: #1a0936;
  color: #ffffff;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}

/* ================================
   BACKGROUND TEXTURE
================================ */
.syt-bg-texture {
  position: absolute;
  inset: 0;
  z-index: -10;
  background-image: url("https://www.transparenttextures.com/patterns/cubes.png");
  opacity: 0.05;
  pointer-events: none;
}

/* ================================
   BACKGROUND GLOW BLOB
================================ */
.syt-bg-glow {
  position: absolute;
  top: 0;
  right: 0;
  z-index: -10;
  width: 600px;
  height: 600px;
  background-color: var(--ET-Gold);
  opacity: 0.1;
  filter: blur(100px);
  border-radius: 50%;
  pointer-events: none;
}

/* ================================
   CONTAINER
================================ */
.syt-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

/* ================================
   HEADER
================================ */
.syt-header {
  text-align: center;
  max-width: 672px;
  margin: 0 auto 64px auto;
}

.syt-title {
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.2;
}

.syt-subtitle {
  color: #d1d5db;
  font-size: 1.125rem;
  line-height: 1.75;
  margin: 0;
}

/* ================================
   GRID
================================ */
.syt-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  max-width: 896px;
  margin: 0 auto;
}

/* ================================
   CARD
================================ */
.syt-card {
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 32px;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s ease;
}
.syt-card:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
.syt-card:hover .syt-card-corner-icon {
  color: rgba(201, 168, 76, 0.2);
}

/* ================================
   CORNER ICON
================================ */
.syt-card-corner-icon {
  position: absolute;
  top: 0;
  right: 0;
  padding: 16px;
  opacity: 0.5;
  color: rgba(255, 255, 255, 0.1);
  transition: color 0.3s ease;
}

/* ================================
   CARD TYPOGRAPHY
================================ */
.syt-card-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.syt-card-desc {
  color: #9ca3af;
  margin-bottom: 24px;
  min-height: 48px;
  line-height: 1.6;
}

/* ================================
   FEATURE LIST
================================ */
.syt-feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.syt-feature-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #d1d5db;
}

.syt-check-icon {
  flex-shrink: 0;
  color: var(--ET-Gold);
}

/* ================================
   BUTTONS
================================ */
.syt-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 12px 0;
  font-weight: 700;
  border-radius: 9999px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.syt-btn--gold {
  background-color: var(--ET-Gold);
  color: var(--ET-DeepBlue);
}
.syt-btn--gold:hover {
  background-color: #ffffff;
  color: var(--ET-DeepBlue);
}
.syt-btn--enterprise {
  background-color: var(--ET-Gold);
  color: #000000;
  box-shadow: 0 10px 15px rgba(120, 80, 0, 0.3);
}
.syt-btn--enterprise:hover {
  background-color: #fbbf24;
  color: #000000;
}

@media (min-width: 768px) {
  .syt-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ================================
   SECTION
================================ */
.vmc-section {
  position: relative;
  padding-top: 128px;
  padding-bottom: 96px;
  background: linear-gradient(to bottom right, #0f172a, #020617, #000000);
  color: #ffffff;
  overflow: hidden;
}

/* ================================
   BACKGROUND LAYERS
================================ */
.vmc-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background-color: rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.vmc-bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(203, 172, 133, 0.05) 1px, transparent 1px), linear-gradient(90deg, rgba(203, 172, 133, 0.05) 1px, transparent 1px);
  background-size: 40px 40px;
}

.vmc-bg-diagonal {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: linear-gradient(45deg, transparent 48%, rgba(203, 172, 133, 0.1) 49%, rgba(203, 172, 133, 0.1) 51%, transparent 52%);
  background-size: 60px 60px;
  background-position: 1.85% 1.85%;
}

/* ================================
   CONTAINER
================================ */
.vmc-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
  box-sizing: border-box;
}

/* ================================
   LEFT COLUMN
================================ */
.vmc-badge-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
}

.vmc-badge {
  background-color: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--ET-Gold);
  color: var(--ET-Gold);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 16px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.vmc-title {
  font-size: clamp(2.5rem, 6vw, 4.3rem);
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 24px;
  line-height: 1.1;
}

.vmc-title-gradient {
  background: linear-gradient(to right, var(--ET-Gold), #fde68a, var(--ET-Gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.vmc-desc {
  font-size: 1.25rem;
  color: #e5e7eb;
  margin-bottom: 32px;
  max-width: 512px;
  line-height: 1.75;
  font-weight: 300;
}

.vmc-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ================================
   BUTTONS
================================ */
.vmc-btn {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  font-size: 1rem;
}
.vmc-btn--primary {
  background-color: var(--ET-Gold);
  color: var(--ET-DeepBlue);
  box-shadow: 0 20px 25px rgba(0, 0, 0, 0.3);
}
.vmc-btn--primary:hover {
  background-color: #ffffff;
  box-shadow: 0 25px 30px rgba(0, 0, 0, 0.4);
  transform: scale(1.05);
}
.vmc-btn--ghost {
  background-color: rgba(255, 255, 255, 0.05);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.vmc-btn--ghost:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

/* ================================
   RIGHT COLUMN
================================ */
.vmc-right {
  display: none;
  position: relative;
}

.vmc-card-glow {
  position: absolute;
  z-index: -1;
  inset: -40px;
  background-color: rgba(201, 168, 76, 0.2);
  filter: blur(48px);
  opacity: 0.2;
  border-radius: 50%;
  pointer-events: none;
}

/* ================================
   FLOATING BADGES
================================ */
.vmc-float-badge {
  position: absolute;
  z-index: 20;
  background-color: #ffffff;
  color: var(--ET-DeepBlue);
  padding: 12px;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 0.75rem;
  white-space: nowrap;
  animation: vmc-float-badge-animation 2s infinite;
}

@keyframes vmc-float-badge-animation {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}

.vmc-float-badge--tr {
  top: -24px;
  right: -24px;
}
.vmc-float-badge--bl {
  bottom: -24px;
  left: -24px;
}

.vmc-icon-blue {
  color: #3b82f6;
  flex-shrink: 0;
}

.vmc-icon-yellow {
  color: #eab308;
  flex-shrink: 0;
}

/* ================================
   VIDEO CARD
================================ */
.vmc-card {
  background-color: #0f172a;
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  border: 1px solid #1e293b;
  padding: 8px;
  position: relative;
  z-index: 10;
}

.vmc-video-wrap {
  position: relative;
  aspect-ratio: 16/9;
  background-color: #020617;
  border-radius: 12px;
  overflow: hidden;
}

.vmc-video-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
  display: block;
}

.vmc-video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, #0f172a, transparent, transparent);
}

/* ================================
   VIDEO BADGES (LIVE + VIEWERS)
================================ */
.vmc-video-badges {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  gap: 8px;
}

.vmc-live-badge {
  background-color: rgba(239, 68, 68, 0.9);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 4px;
  animation: vmc-pulse 2s infinite;
}

.vmc-live-dot {
  width: 6px;
  height: 6px;
  background-color: #ffffff;
  border-radius: 50%;
}

@keyframes vmc-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.6;
  }
}
.vmc-viewer-badge {
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 4px;
}

/* ================================
   SPEAKER INFO
================================ */
.vmc-speaker {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.vmc-speaker-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--ET-Gold);
  flex-shrink: 0;
  object-fit: cover;
}

.vmc-speaker-name {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: 5px;
}

.vmc-speaker-role {
  color: var(--ET-Gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (min-width: 1024px) {
  .vmc-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .vmc-right {
    display: block;
  }
}
/* ================================
   SECTION
================================ */
.stb-section {
  padding: 40px 0;
  background-color: var(--ET-DeepBlue);
  border-bottom: 1px solid #1e293b;
}

/* ================================
   CONTAINER
================================ */
.stb-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  overflow-x: auto;
  box-sizing: border-box;
}

/* ================================
   INNER FLEX ROW
================================ */
.stb-inner {
  display: flex;
  justify-content: space-between;
  min-width: max-content;
}

@media (max-width: 1200px) {
  .stb-inner{
    display: grid;
    gap: 20px 0px;
    grid-template-columns: repeat(2, 1fr);
    padding: 0px 0;
  }
  .stb-inner .stb-item {
    padding: 0px 6px;
}
.stb-number {
  font-size: 1.475rem !important;
}

.stb-label {
  font-size: 0.65rem !important;
}
  .stb-item + .stb-item{
    border:0px !important;
  }
}

/* ================================
   DIVIDERS BETWEEN ITEMS
================================ */
.stb-item + .stb-item {
  border-left: 1px solid #1e293b;
}

/* ================================
   STAT ITEM
================================ */
.stb-item {
  padding: 0 32px;
  text-align: center;
  flex: 1;
}

/* ================================
   NUMBER
================================ */
.stb-number {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--ET-Gold);
  line-height: 1.2;
}

/* ================================
   LABEL
================================ */
.stb-label {
  font-size: 0.75rem;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

@media (min-width: 768px) {
  .stb-inner {
    min-width: 0;
  }
}
/* ================================
   SECTION
================================ */
.aol-section {
  padding: 80px 0;
}

/* ================================
   CONTAINER
================================ */
.aol-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

/* ================================
   HEADER
================================ */
.aol-header {
  text-align: center;
  max-width: 768px;
  margin: 0 auto 64px auto;
}

.aol-title {
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--ET-DeepBlue);
  margin-bottom: 16px;
  line-height: 1.2;
}

.aol-subtitle {
  color: #4b5563;
  font-size: 1rem;
  line-height: 1.75;
  margin: 0;
}

/* ================================
   GRID
================================ */
.aol-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  position: relative;
}

@media (max-width: 1200px) {
  .aol-grid{
    gap: 46px;
  }
}

/* ================================
   CONNECTOR LINE (desktop only)
================================ */
.aol-connector {
  display: none;
}

/* ================================
   CARD
================================ */
.aol-card {
  background-color: #ffffff;
  padding: 24px;
  padding-top: 40px;
  border-radius: 12px;
  border: 1px solid #f3f4f6;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  position: relative;
  transition: transform 0.3s ease;
  z-index: 1;
}
.aol-card:hover {
  transform: translateY(-8px);
}
.aol-card:hover .aol-icon-wrap {
  transform: translateX(-50%) scale(1.1);
}

/* ================================
   ICON WRAP
================================ */
.aol-icon-wrap {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 48px;
  height: 48px;
  background-color: var(--ET-DeepBlue);
  color: var(--ET-Gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  border: 4px solid #ffffff;
  transition: transform 0.3s ease;
}

/* ================================
   CARD TYPOGRAPHY
================================ */
.aol-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  text-align: center;
  color: #111827;
  margin-bottom: 8px;
}

.aol-card-text {
  font-size: 0.875rem;
  text-align: center;
  color: #6b7280;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .aol-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .aol-connector {
    display: block;
    position: absolute;
    top: 2.5rem;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #e5e7eb;
    z-index: 0;
    pointer-events: none;
  }
}
/* ================================
   SECTION
================================ */
.es-section {
  position: relative;
  background-color: #f9fafb;
  padding: 50px 0px;

}

/* ================================
   SKEW BG DECORATION
================================ */
.es-bg-skew {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  background-color: rgba(248, 250, 252, 0.5);
  transform: skewX(-12deg);
  z-index: 0;
  pointer-events: none;
}

/* ================================
   CONTAINER
================================ */
.es-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  box-sizing: border-box;
}

/* ================================
   TOP ROW
================================ */
.es-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 30px;
}

.es-eyebrow {
  color: var(--ET-Gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.875rem;
  margin-bottom: 8px;
}

.es-title {
  font-size: clamp(1.875rem, 4vw, 2.25rem);
  font-weight: 700;
  color: var(--ET-DeepBlue);
  margin: 0;
  line-height: 1.2;
}

.es-view-all {
  display: none;
  align-items: center;
  gap: 8px;
  color: var(--ET-DeepBlue);
  font-weight: 700;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.3s ease;
}
.es-view-all:hover {
  color: var(--ET-Gold);
}

/* ================================
   FILTER TABS
================================ */
.es-filters {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  padding-bottom: 32px;
  margin-bottom: 32px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.es-filters::-webkit-scrollbar {
  display: none;
}

.es-filter {
  padding: 10px 20px;
  border-radius: 9999px;
  font-size: 0.875rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.25s ease;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  color: #4b5563;
}
.es-filter:hover {
  border-color: var(--ET-Gold);
  color: var(--ET-DeepBlue);
}
.es-filter--active {
  background-color: var(--ET-DeepBlue);
  color: #ffffff;
  border-color: var(--ET-DeepBlue);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* ================================
   GRID
================================ */
.es-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

/* ================================
   CARD
================================ */
.es-card {
  background-color: #ffffff;
  border: 1px solid #f3f4f6;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
  position: relative;
}
.es-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}
.es-card:hover .es-card-img {
  transform: scale(1.05);
}
.es-card:hover .es-card-title {
  color: var(--ET-DeepBlue);
}

.es-card-bar {
  height: 6px;
  width: 100%;
  background-color: #2563eb;
  flex-shrink: 0;
}

/* ================================
   CARD IMAGE
================================ */
.es-card-img-wrap {
  position: relative;
  aspect-ratio: 16/9;
  background-color: #f3f4f6;
  overflow: hidden;
}

.es-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.es-card-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 9999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background-color: rgba(37, 99, 235, 0.9);
  color: #ffffff;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

/* ================================
   CARD BODY
================================ */
.es-card-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.es-card-speaker {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
  margin-bottom: 12px;
}
.es-card-speaker svg {
  color: #9ca3af;
  flex-shrink: 0;
}

.es-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 8px;
  line-height: 1.4;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s ease;
}

.es-card-role {
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ================================
   CARD FOOTER
================================ */
/* ================================
   CARD FOOTER
================================ */
.es-card-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #f3f4f6;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* ================================
   DATE ROW
================================ */
.es-card-date {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  color: #4b5563;
}

.es-card-date svg {
  flex-shrink: 0;
  color: #4b5563;
}

/* ================================
   PRICE ROW
================================ */
.es-card-price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 4px;
}

.es-card-price {
  font-weight: 700;
  font-size: 1.125rem;
  color: #111827;
}

/* ================================
   VIEW DETAILS BUTTON
================================ */
.es-card-link {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #2563eb;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: color 0.3s ease;
}

.es-card-link:hover {
  color: #1d4ed8;
}

.es-card-footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid #f3f4f6;
}

@media (min-width: 768px) {
  .es-view-all {
    display: flex;
  }
  .es-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* ================================
   SECTION
================================ */
.soe-section {
  padding: 80px 0;
  background-color: #06091a;
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

/* ================================
   BACKGROUND GRID
================================ */
.soe-bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(197, 160, 89, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(197, 160, 89, 0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 0;
}

/* ================================
   BACKGROUND RADIAL GLOW
================================ */
.soe-bg-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 300px;
  background: radial-gradient(circle at center, rgba(197, 160, 89, 0.07), transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* ================================
   CONTAINER
================================ */
.soe-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 64px;
  align-items: center;
  box-sizing: border-box;
}

/* ================================
   LEFT COLUMN
================================ */
.soe-eyebrow {
  color: var(--ET-Gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  margin-bottom: 16px;
}

.soe-title {
  font-size: clamp(1.875rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 1.15;
  color: #ffffff;
}

.soe-title-gold {
  color: var(--ET-Gold);
}

.soe-desc {
  color: #d1d5db;
  font-size: 1.125rem;
  line-height: 1.75;
  font-weight: 300;
  margin-bottom: 40px;
}

/* ================================
   FEATURE LIST
================================ */
.soe-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.soe-feature {
  display: flex;
  align-items: center;
  gap: 16px;
}

.soe-feat-icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 8px;
  background-color: rgba(201, 168, 76, 0.1);
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ET-Gold);
}

.soe-feat-title {
  color: #ffffff;
  font-weight: 700;
  font-size: 0.875rem;
  margin-bottom: 2px;
}

.soe-feat-desc {
  color: #6b7280;
  font-size: 0.75rem;
}

/* ================================
   RIGHT COLUMN
================================ */
.soe-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.soe-card-glow {
  position: absolute;
  inset: 0;
  background-color: rgba(201, 168, 76, 0.05);
  filter: blur(48px);
  border-radius: 50%;
  pointer-events: none;
}

/* ================================
   CERT WRAPPER
================================ */
.soe-cert-wrap {
  position: relative;
  width: 100%;
  max-width: 448px;
}

/* ================================
   BLOCKCHAIN BADGE
================================ */
.soe-cert-badge {
  position: absolute;
  top: -16px;
  right: -16px;
  z-index: 20;
  background-color: var(--ET-Gold);
  color: #06091a;
  border-radius: 9999px;
  padding: 6px 12px;
  font-size: 0.75rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

/* ================================
   CERTIFICATE CARD
================================ */
.soe-cert {
  background: linear-gradient(to bottom right, #fefdf9, #f8f4e8);
  border-radius: 16px;
  border: 1px solid rgba(201, 168, 76, 0.3);
  box-shadow: 0 0 80px rgba(197, 160, 89, 0.25);
  overflow: hidden;
  transform: rotate(1deg);
  transition: transform 0.5s ease;
}
.soe-cert:hover {
  transform: rotate(0deg);
}

.soe-cert-bar {
  height: 8px;
  background: linear-gradient(to right, var(--ET-Gold), #fde68a, var(--ET-Gold));
}

.soe-cert-body {
  padding: 32px;
}

/* ================================
   CERT HEADER
================================ */
.soe-cert-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}

.soe-cert-logo {
  height: 32px;
  filter: invert(1) sepia(1) saturate(0.5) brightness(0.4);
}

.soe-cert-header-right {
  text-align: right;
}

.soe-cert-label {
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #9ca3af;
  font-weight: 700;
}

.soe-cert-code {
  font-size: 0.625rem;
  color: var(--ET-Gold);
  font-family: monospace;
  font-weight: 700;
}

/* ================================
   CERT DIVIDER
================================ */
.soe-cert-divider {
  border: none;
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  margin-bottom: 20px;
}

/* ================================
   SUBTITLE BLOCK
================================ */
.soe-cert-subtitle-wrap {
  text-align: center;
  margin-bottom: 20px;
}

.soe-cert-subtitle-top {
  font-size: 0.625rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: #9ca3af;
  font-weight: 700;
  margin-bottom: 4px;
}

.soe-cert-subtitle-italic {
  font-size: 0.625rem;
  color: #9ca3af;
  font-style: italic;
}

/* ================================
   RECIPIENT NAME
================================ */
.soe-cert-name-wrap {
  text-align: center;
  margin-bottom: 20px;
}

.soe-cert-name {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--ET-DeepBlue);
  line-height: 1.2;
}

.soe-cert-name-sub {
  font-size: 0.75rem;
  color: #9ca3af;
  margin-top: 4px;
}

/* ================================
   PROGRAMME BOX
================================ */
.soe-cert-prog {
  background-color: rgba(13, 43, 85, 0.05);
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 12px;
  padding: 12px 16px;
  text-align: center;
  margin-bottom: 20px;
}

.soe-cert-prog-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ET-DeepBlue);
  line-height: 1.3;
}

.soe-cert-prog-sub {
  font-size: 0.625rem;
  color: #6b7280;
  margin-top: 2px;
}

/* ================================
   SIGNATURE ROW
================================ */
.soe-cert-sig-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding-top: 16px;
  border-top: 1px solid #f3f4f6;
}

.soe-cert-sig {
  text-align: center;
}

.soe-cert-sig-name {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ET-DeepBlue);
  font-style: italic;
  margin-bottom: 4px;
}

.soe-cert-sig-line {
  width: 96px;
  height: 1px;
  background-color: #d1d5db;
  margin: 0 auto;
}

.soe-cert-sig-label {
  font-size: 0.5625rem;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* ================================
   SEAL ICON (center of sig row)
================================ */
.soe-cert-seal {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(201, 168, 76, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ET-Gold);
  flex-shrink: 0;
}

@media (min-width: 1024px) {
  .soe-container {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ================================
   SECTION
================================ */
.mll-section {
  position: relative;
  padding-top: 128px;
  padding-bottom: 80px;
  overflow: hidden;
  background-color: var(--ET-DeepBlue);
  color: #ffffff;
}

/* ================================
   BACKGROUND LAYERS
================================ */
.mll-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.mll-bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right,#06091a , #190836, #0d1b4e);
}

.mll-bg-radial {
  position: absolute;
  top: 0;
  right: 0;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(197, 160, 89, 0.08), transparent 65%);
}

.mll-bg-texture {
  position: absolute;
  inset: 0;
  background-image: url("https://www.transparenttextures.com/patterns/stardust.png");
  opacity: 0.1;
}

/* ================================
   CONTAINER
================================ */
.mll-container {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}

/* ================================
   LEFT COLUMN
================================ */
.mll-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background-color: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  margin-bottom: 32px;
  color: var(--ET-Gold);
}

.mll-badge-text {
  font-size: 0.625rem;
  font-weight: 700;
  color: #d1d5db;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.mll-title {
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 24px;
  color: #ffffff;
}

.mll-title-highlight {
  position: relative;
  display: inline-block;
}

.mll-title-gradient {
  background: linear-gradient(to right, var(--ET-Gold), #fef9c3, var(--ET-Gold));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  color: transparent;
}

.mll-title-underline {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, rgba(201, 168, 76, 0.5), transparent);
  border-radius: 9999px;
  transform-origin: left;
  display: block;
}

.mll-desc {
  color: #d1d5db;
  font-size: clamp(1rem, 2vw, 1.25rem);
  max-width: 576px;
  line-height: 1.75;
  margin-bottom: 40px;
  font-weight: 300;
}

.mll-desc-strong {
  color: #ffffff;
  font-weight: 500;
}

.mll-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

/* ================================
   BUTTONS
================================ */
.mll-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  box-sizing: border-box;
}
.mll-btn--primary {
  background-color: var(--ET-Gold);
  color: var(--ET-DeepBlue);
  box-shadow: 0 10px 20px rgba(120, 80, 0, 0.2);
}
.mll-btn--primary:hover {
  background-color: #fbbf24;
}
.mll-btn--ghost {
  background-color: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
}
.mll-btn--ghost:visited {
  color: #ffffff;
}
.mll-btn--ghost:hover {
  background-color: rgba(255, 255, 255, 0.2);
}

/* ================================
   RIGHT COLUMN
================================ */
.mll-right {
  display: none;
}

/* ================================
   IMAGE CARD
================================ */
.mll-img-card {
  position: relative;
  aspect-ratio: 1/1;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.mll-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mll-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, var(--ET-DeepBlue), transparent);
}

/* ================================
   PLAY BUTTON
================================ */
.mll-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background-color: var(--ET-Gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  transition: transform 0.3s ease;
  color: var(--ET-DeepBlue);
}
.mll-play-btn svg {
  margin-left: 4px;
}
.mll-play-btn:hover {
  transform: translate(-50%, -50%) scale(1.1);
}

/* ================================
   FEATURED CARD OVERLAY
================================ */
.mll-feat-card {
  position: absolute;
  bottom: 32px;
  left: 32px;
  right: 32px;
  padding: 24px;
  background-color: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 16px;
}

.mll-feat-label {
  color: var(--ET-Gold);
  font-weight: 700;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.mll-feat-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 8px;
}

.mll-feat-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.75rem;
  color: #d1d5db;
}

.mll-feat-meta-item {
  display: flex;
  align-items: center;
  gap: 4px;
}

@media (min-width: 768px) {
  .mll-container {
    grid-template-columns: repeat(2, 1fr);
  }
  .mll-right {
    display: block;
    position: relative;
  }
}
/* ================================
   STICKY BAR
================================ */
.sfb-bar {
  position: sticky;
  top: 72px;
  z-index: 30;
  background-color: #ffffff;
  border-bottom: 1px solid #f3f4f6;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
}

/* ================================
   CONTAINER
================================ */
.sfb-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* ================================
   TABS (scrollable)
================================ */
.sfb-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 8px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.sfb-tabs::-webkit-scrollbar {
  display: none;
}

/* ================================
   TAB BUTTON
================================ */
.sfb-tab {
  padding: 6px 16px;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.25s ease;
  background-color: #f9fafb;
  color: #6b7280;
  border: 1px solid #f3f4f6;
}
.sfb-tab:hover {
  border-color: #d1d5db;
}
.sfb-tab--active {
  background-color: var(--ET-DeepBlue);
  color: #ffffff;
  border-color: var(--ET-DeepBlue);
}

/* ================================
   RIGHT CONTROLS
================================ */
.sfb-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

/* ================================
   SEARCH
================================ */
.sfb-search-wrap {
  position: relative;
}

.sfb-search-icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  pointer-events: none;
}

.sfb-search-input {
  padding: 8px 16px 8px 36px;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.875rem;
  color: #111827;
  width: 100%;
  outline: none;
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}
.sfb-search-input::placeholder {
  color: #9ca3af;
}
.sfb-search-input:focus {
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.2);
  border-color: rgba(201, 168, 76, 0.4);
}

/* ================================
   FILTER BUTTON
================================ */
.sfb-filter-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background-color: #f9fafb;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #4b5563;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color 0.25s ease, border-color 0.25s ease;
}
.sfb-filter-btn:hover {
  background-color: #f3f4f6;
  border-color: #d1d5db;
}

@media (min-width: 768px) {
  .sfb-container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .sfb-tabs {
    padding-bottom: 0;
  }
  .sfb-search-input {
    width: 256px;
  }
}
/* Section */
.et-courses-section {
  padding: 80px 0;
  background-color: #f9fafb;
}

/* Container */
.et-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Grid */
.et-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}

/* Card */
.et-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #f3f4f6;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
  position: relative;
  padding: 0px;
}
.et-card:hover {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  border-color: rgba(201, 168, 76, 0.2);
}
.et-card:hover .et-card__thumb img {
  transform: scale(1.05);
}
.et-card:hover .et-card__overlay {
  background: rgba(0, 0, 0, 0);
}
.et-card:hover .et-card__play {
  transform: scale(1);
}
.et-card:hover .et-card__title {
  color: var(--ET-Red);
}

/* Thumbnail */
.et-card__thumb {
  position: relative;
  height: 192px;
  overflow: hidden;
}
.et-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  display: block;
}

/* Overlay */
.et-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.2);
  transition: background 0.3s ease;
}

/* Badge */
.et-card__badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  padding: 4px 12px;
  border-radius: 9999px;
  font-size: 10px;
  font-weight: 900;
  color: var(--ET-DeepBlue);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Play Button */
.et-card__play {
  position: absolute;
  bottom: 16px;
  left: 16px;
  background: var(--ET-Gold);
  color: var(--ET-DeepBlue);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transform: scale(0);
  transition: transform 0.3s ease;
}

/* Body */
.et-card__body {
  padding: 24px;
}

/* Meta Row */
.et-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.et-card__author {
  font-size: 10px;
  font-weight: 700;
  color: var(--ET-Gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.et-card__tag {
  font-size: 10px;
  font-weight: 700;
  color: #9ca3af;
  background: #f9fafb;
  padding: 2px 8px;
  border-radius: 4px;
}

/* Title */
.et-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--ET-DeepBlue);
  margin: 0 0 16px 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

/* Info Row */
.et-card__info {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: #6b7280;
  margin-bottom: 24px;
}

.et-card__info-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.et-card__info-item svg {
  color: #9ca3af;
  flex-shrink: 0;
}

/* Button */
.et-card__btn {
  width: 100%;
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  color: #374151;
  font-weight: 700;
  font-size: 14px;
  background: #f9fafb;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.et-card__btn:hover {
  background: var(--ET-DeepBlue);
  color: #fff;
  border-color: var(--ET-DeepBlue);
}

@media (min-width: 768px) {
  .et-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .et-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Section */
.et-paths-section {
  padding: 96px 0;
  background: #fff;
}

/* Header */
.et-paths-header {
  max-width: 896px;
  margin: 0 auto 64px auto;
  text-align: center;
}

.et-paths-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--ET-DeepBlue);
  margin: 0 0 24px 0;
  line-height: 1.2;
}

.et-paths-desc {
  color: #6b7280;
  font-size: 18px;
  line-height: 1.7;
  margin: 0;
}

.et-paths-highlight {
  color: var(--ET-Gold);
  font-weight: 700;
}

/* Panel */
.et-paths-panel {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  background: var(--ET-DeepBlue);
  padding: 48px;
  border-radius: 48px;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Decorative Glow */
.et-paths-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 384px;
  height: 384px;
  background: rgba(201, 168, 76, 0.05);
  border-radius: 50%;
  filter: blur(60px);
  transform: translate(50%, -50%);
  pointer-events: none;
}

/* Left Column */
.et-paths-left {
  position: relative;
  z-index: 1;
}

.et-paths-panel-title {
  font-size: 30px;
  font-weight: 700;
  margin: 0 0 16px 0;
}

.et-paths-panel-desc {
  color: #9ca3af;
  margin: 0 0 32px 0;
  line-height: 1.7;
}

/* Path List */
.et-paths-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* Path Item */
.et-path-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}
.et-path-item:hover {
  background: rgba(255, 255, 255, 0.1);
}
.et-path-item:hover .et-path-item__name {
  color: var(--ET-Gold);
}
.et-path-item:hover .et-path-item__arrow {
  color: var(--ET-Gold);
}

.et-path-item__name {
  font-weight: 700;
  color: #fff;
  transition: color 0.3s ease;
  margin-bottom: 4px;
}

.et-path-item__level {
  font-size: 10px;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.et-path-item__arrow {
  color: #4b5563;
  flex-shrink: 0;
  transition: color 0.3s ease;
}

/* Right Column */
.et-paths-right {
  position: relative;
}

/* Advisor Outer (gradient border + tilt) */
.et-advisor-outer {
  background: linear-gradient(135deg, #fbbf24, var(--ET-Gold));
  padding: 4px;
  border-radius: 24px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
  transform: rotate(3deg);
}

/* Advisor Inner */
.et-advisor-inner {
  background: #06091a;
  padding: 32px;
  border-radius: 20px;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

/* Advisor Icon */
.et-advisor-icon {
  width: 80px;
  height: 80px;
  background: rgba(201, 168, 76, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px auto;
  color: var(--ET-Gold);
}

/* Advisor Text */
.et-advisor-title {
  font-size: 24px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 8px 0;
}

.et-advisor-desc {
  color: #9ca3af;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 32px 0;
}

/* Advisor Button */
.et-advisor-btn {
  width: 100%;
  background: var(--ET-Gold);
  color: #000;
  font-weight: 900;
  font-size: 15px;
  padding: 16px 24px;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  transition: background 0.3s ease;
}
.et-advisor-btn:hover {
  background: #fbbf24;
}

@media (min-width: 768px) {
  .et-paths-panel {
    grid-template-columns: 1fr 1fr;
  }
}
/* ── Section 2: Agenda + Sidebar ── */
.agenda-section {
  padding: 32px 0 64px;
}

.agenda-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

/* Agenda list */
.agenda-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.agenda-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #f3f4f6;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.agenda-item:hover {
  border-color: rgba(var(--ET-Gold-rgb, 201, 160, 75), 0.3);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.agenda-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  border: 2px solid rgba(var(--ET-DeepBlue-rgb, 10, 31, 68), 0.15);
  display: flex;
  align-items: center;
  justify-content: center;
}
.agenda-number span {
  color: var(--ET-DeepBlue);
  font-weight: 900;
  font-size: 0.75rem;
  font-family: monospace;
}

.agenda-day {
  font-size: 0.625rem;
  font-weight: 700;
  color: var(--ET-Gold);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}

.agenda-heading {
  font-weight: 700;
  font-size: 1rem;
  color: #111827;
  margin-bottom: 4px;
}

.agenda-desc {
  font-size: 0.875rem;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 8px;
}
.agenda-desc ul {
  padding-left: 15px;
}

.tag-group {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.tag {
  font-size: 0.625rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(var(--ET-DeepBlue-rgb, 10, 31, 68), 0.05);
  color: var(--ET-DeepBlue);
}

/* Sidebar */
.agenda-sidebar {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Pricing card */
.price-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
  position: relative;
  overflow: hidden;
}

.price-badge {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--ET-Red, #dc2626);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 6px 12px;
  border-bottom-left-radius: 8px;
}

.price-block {
  margin-bottom: 20px;
  padding-top: 8px;
}

.price-main {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--ET-DeepBlue);
}

.price-original {
  color: #9ca3af;
  font-size: 0.875rem;
  margin-left: 8px;
  text-decoration: line-through;
}

.price-note {
  font-size: 0.75rem;
  color: #6b7280;
  margin-top: 4px;
}

/* Scoped to avoid conflicts with global buttons */
.agenda-section .btn-primary {
  width: 100%;
  background: var(--ET-Red, #dc2626);
  color: #fff;
  padding: 14px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(220, 38, 38, 0.3);
  margin-bottom: 12px;
  transition: background 0.2s;
  justify-content: center;
}
.agenda-section .btn-primary:hover {
  background: #b91c1c;
}

.agenda-section .btn-secondary {
  width: 100%;
  border: 1px solid #e5e7eb;
  color: #374151;
  padding: 12px;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 600;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: border-color 0.2s;
  box-sizing: border-box;
  text-decoration: none;
}
.agenda-section .btn-secondary:hover {
  border-color: #9ca3af;
}

.perks-list {
  list-style: none;
  padding: 0;
  margin: 20px 0 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.875rem;
  color: #4b5563;
}
.perks-list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.perk-icon {
  color: #22c55e;
  flex-shrink: 0;
}

.urgency-alert {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  font-weight: 500;
  color: #dc2626;
  background: #fef2f2;
  border-radius: 8px;
  padding: 12px;
  margin-top: 20px;
}

/* Venue card */
.venue-card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.venue-card-header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--ET-Gold);
}
.venue-card-header h4 {
  font-weight: 700;
  color: var(--ET-DeepBlue);
  font-size: 0.875rem;
  margin: 0;
}

.venue-details {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.venue-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px solid #f9fafb;
  font-size: 0.75rem;
}
.venue-row:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.venue-label {
  color: #9ca3af;
}

.venue-value {
  color: #1f2937;
  font-weight: 600;
}

/* Team enrolment card */
.team-card {
  background: #eff6ff;
  border: 1px solid #dbeafe;
  border-radius: 12px;
  padding: 16px;
  text-align: center;
}

.team-title {
  font-weight: 700;
  color: #1e3a8a;
  font-size: 0.875rem;
  margin-bottom: 4px;
}

.team-desc {
  font-size: 0.75rem;
  color: #1d4ed8;
  margin-bottom: 12px;
}

.agenda-section .btn-link {
  background: none;
  border: none;
  color: #2563eb;
  font-size: 0.875rem;
  font-weight: 700;
  text-decoration: underline;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .agenda-layout {
    grid-template-columns: 2fr 1fr;
  }
  .agenda-sidebar {
    position: sticky;
    top: 96px;
  }
  .agenda-section {
    padding: 64px 0;
  }
}
/* ── Section 3: Faculty ── */
.faculty-section {
  padding: 0px 0px 60px 0px;
}

.faculty-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.faculty-eyebrow-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--ET-Gold);
}

.faculty-card {
  background: linear-gradient(to right, #07080f, #0d1230);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
  display: grid;
  grid-template-columns: 1fr;
}

.faculty-card--full .faculty-image-col {
  min-height: 300px;
}

.faculty-image-col {
  position: relative;
  overflow: hidden;
  min-height: 220px;
}

.faculty-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.7s;
  display: block;

}
.faculty-image:hover {
  transform: scale(1.05);
}

.faculty-img-overlay {
  position: absolute;
  inset: 0;
}
.faculty-img-overlay--desktop {
  background: linear-gradient(to right, transparent, #07080f);
  display: none;
}
.faculty-img-overlay--mobile {
  background: linear-gradient(to top, #07080f, transparent 60%);
}

.faculty-content-col {
  padding: 24px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.faculty-view-details {
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ET-Gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faculty-view-details:hover {
  color: #f3ddb1;
}

.faculty-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
}

.faculty-modal--open {
  display: block;
}

.faculty-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(6, 8, 20, 0.72);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
}

.faculty-modal-dialog {
  position: relative;
  width: min(1100px, calc(100% - 32px));
  margin: 3.5vh auto;
  max-height: 93vh;
  overflow-y: auto;
}

.faculty-card--modal {
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.faculty-card--modal .faculty-content-col {
  justify-content: flex-start;
}

.faculty-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: rgba(10, 14, 33, 0.85);
  color: #fff;
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
  z-index: 2;
}

body.faculty-modal-open {
  overflow: hidden;
}

.faculty-sub-eyebrow {
  font-size: 0.625rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--ET-Gold);
  margin-bottom: 8px;
}

.faculty-name {
  font-size: 2rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 8px;
}

.faculty-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--ET-Gold);
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.faculty-bio {
  font-size: 0.875rem;
  color: #d1d5db;
  line-height: 1.7;
  margin-bottom: 32px;
}

.faculty-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.faculty-stat {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 12px;
  text-align: center;
}

.faculty-stat-value {
  font-size: 1.125rem;
  font-weight: 900;
  color: var(--ET-Gold);
}

.faculty-stat-label {
  font-size: 0.5625rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
  margin-top: 2px;
  line-height: 1.3;
}

@media (min-width: 1024px) {
  .faculty-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .faculty-card--full {
    grid-column: 1 / -1;
    grid-template-columns: minmax(320px, 2fr) 3fr;
  }
  .faculty-card--full .faculty-image-col {
    min-height: 100%;
    height: 100%;
    max-height: 500px
  }
  .faculty-card {
    grid-template-columns: 2fr 3fr;
  }
  .faculty-img-overlay--desktop {
    display: block;
  }
  .faculty-img-overlay--mobile {
    display: none;
  }
  .faculty-stats {
    grid-template-columns: repeat(4, 1fr);
  }
  .faculty-name {
    font-size: 2.5rem;
  }
}

@media (max-width: 1023px) {
  .faculty-modal-dialog {
    margin: 16px auto;
    width: calc(100% - 20px);
    max-height: calc(100vh - 32px);
  }
}
/* ── Section 4: Programme Highlights ── */
.highlights-section {
  padding: 32px 0;
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}

.highlight-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid #f3f4f6;
  background: #fff;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.highlight-card:hover {
  border-color: rgba(var(--ET-Gold-rgb, 201, 160, 75), 0.4);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}
.highlight-card:hover .highlight-icon {
  background: rgba(var(--ET-Gold-rgb, 201, 160, 75), 0.1);
  color: var(--ET-Gold);
}

.highlight-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(var(--ET-DeepBlue-rgb, 10, 31, 68), 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--ET-DeepBlue);
  transition: background 0.2s, color 0.2s;
}

.highlight-title {
  font-weight: 700;
  font-size: 0.875rem;
  color: #111827;
  margin-bottom: 2px;
}

.highlight-desc {
  font-size: 0.75rem;
  color: #6b7280;
  line-height: 1.6;
}

@media (min-width: 640px) {
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .highlights-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* ── Section 5: Testimonials ── */
.testimonials-section {
  padding: 32px 0;
}

.section-subtext {
  color: #6b7280;
  max-width: 480px;
  margin-bottom: 32px;
  font-size: 0.9375rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.testimonial-card {
  background: #fff;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  padding: 28px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.04);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.testimonial-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  border-color: rgba(var(--ET-Gold-rgb, 201, 160, 75), 0.3);
}

.stars {
  color: var(--ET-Gold);
  font-size: 0.8125rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}

.testimonial-quote {
  font-size: 0.875rem;
  color: #374151;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #f9fafb;
  padding-top: 16px;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ET-DeepBlue), #1d4ed8);
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.author-name {
  font-weight: 700;
  font-size: 0.875rem;
  color: #111827;
}

.author-role {
  font-size: 0.75rem;
  color: #6b7280;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* ── Section 6: FAQ ── */
.faq-section {
  padding: 32px 0 64px;
}

.section-title-lg {
  font-size: 1.875rem;
  font-weight: 900;
  color: var(--ET-DeepBlue);
  margin-bottom: 32px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border:1px solid #d7d8db;
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item:hover {
  border-color: rgba(var(--ET-Gold-rgb, 201, 160, 75), 0.3);
}

.faq-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  text-align: left;
  background: #fff;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.faq-toggle:hover {
  background: rgba(251, 191, 36, 0.04);
}
.faq-toggle span {
  font-weight: 600;
  font-size: 0.875rem;
  color: #111827;
  padding-right: 16px;
  transition: color 0.2s;
}
.faq-toggle:hover span {
  color: var(--ET-DeepBlue);
}

.faq-chevron {
  color: var(--ET-Gold);
  flex-shrink: 0;
  transition: transform 0.3s;
}

.faq-answer {
  display: none;
  padding: 0 20px 16px;
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.55;
  color: #374151;
  border-top: 1px solid transparent;
}

.faq-item--open .faq-answer {
  display: block;
  border-top-color: #f3f4f6;
}

/* JS toggle — add class faq-item--open on .faq-item via JS to expand */
.faq-item--open .faq-chevron {
  transform: rotate(180deg);
}

/* ── Section ── */
.et-hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 128px;
  padding-bottom: 48px;
}

@media (max-width: 1200px) {
  .et-hero {
    min-height: max-content;
    padding-top: 95px;
  }
}

/* ── Background Layers ── */
.et-hero__bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #07080f, #080c1e, #030510);
  z-index: 0;
}

.et-hero__bg-grid {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(197, 160, 89, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(197, 160, 89, 0.025) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
}

.et-hero__bg-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle at top right, rgba(197, 160, 89, 0.12), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ── Speaker Image ── */
.et-hero__bg-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle at top right, rgba(197, 160, 89, 0.12), transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ── Speaker Image ── */
.et-hero__speaker {
  display: none;
  position: absolute;
  right: 0;
  top: 0;
  height: 85vh;
  width: 42%;
  z-index: 1;
}

.et-hero__speaker-grid {
  display: flex;
  width: 100%;
  height: 100%;
}

.et-hero__speaker-photo {
  flex: 1 1 0;
  min-width: 0;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.et-hero__speaker-role-layer {
  display: none;
  position: absolute;
  inset: 0;
  z-index: 4;
  pointer-events: none;
}

.et-hero__speaker--multi .et-hero__speaker-role-layer {
  display: flex;
}

.et-hero__speaker-role-slot {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 0 10px 32px;
}

.et-hero__speaker-role-card {
  width: 100%;
  max-width: max-content;
  background: rgba(8, 12, 30, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 10px 12px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
  text-align: center;
  min-width: 190px;
}

.et-hero__speaker--count-3 .et-hero__speaker-role-slot,
.et-hero__speaker--count-4 .et-hero__speaker-role-slot {
  padding-left: 6px;
  padding-right: 6px;
  padding-bottom: 24px;
}

.et-hero__speaker--count-3 .et-hero__speaker-role-card,
.et-hero__speaker--count-4 .et-hero__speaker-role-card {
  max-width: none;
  padding: 8px 10px;
}

.et-hero__speaker--count-3 .et-hero__stat-name,
.et-hero__speaker--count-4 .et-hero__stat-name {
  font-size: 9px;
}

.et-hero__speaker--count-3 .et-hero__stat-label,
.et-hero__speaker--count-4 .et-hero__stat-label {
  font-size: 9px;
}

.et-hero__speaker--count-3 .et-hero__stat-value,
.et-hero__speaker--count-4 .et-hero__stat-value {
  font-size: 10px;
}

.et-hero__speaker-role-card .et-hero__stat-name {
  margin-bottom: 3px;
}

.et-hero__speaker-role-card .et-hero__stat-value {
  line-height: 1.35;
}

.et-hero__speaker-photo img,
.et-hero__speaker img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
}

.et-hero__speaker--multi {
  width: 50%;
}

.et-hero__speaker--count-3,
.et-hero__speaker--count-4 {
  width: 55%;
}

.et-hero__speaker--count-3 .et-hero__speaker-photo img,
.et-hero__speaker--count-4 .et-hero__speaker-photo img {
  object-position: top center;
}

.et-hero__speaker-fade-left {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, #080c1e, transparent, transparent);
  z-index: 2;
  width: 300px;
}

.et-hero__speaker-fade-top {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: min(380px, 23%);
  background:linear-gradient(180deg, #0f1220 0%, #07080f 8%, rgba(7, 8, 15, 0.92) 18%, rgba(8, 12, 30, 0.6) 42%, rgba(8, 12, 30, 0.15) 68%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}
.et-hero__speaker-fade-bottom {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 192px;
  background: linear-gradient(to top, #080b18, transparent);
  z-index: 2;
}

/* ── Container ── */
.et-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.et-hero__inner {
  position: relative;
  z-index: 20;
  padding-top: 40px;
  padding-bottom: 40px;
}

/* ── Content Block ── */
.et-hero__content {
  max-width: 100%;
}

/* ── Badges Row ── */
.et-hero__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.et-hero__badge {
  font-size: 10px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 12px;
  border-radius: 9999px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.et-hero__badge--gold {
  background: var(--ET-Gold);
  color: #000;
}
.et-hero__badge--outline {
  color: var(--ET-Gold);
  border: 1px solid rgba(201, 168, 76, 0.3);
  background: rgba(201, 168, 76, 0.05);
  font-size: 12px;
}

/* ── Subtitle ── */
.et-hero__subtitle {
  color: var(--ET-Gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  margin-bottom: 12px;
  line-height: 1.6;
  max-width: 640px;
}

.et-hero__subtitle--multi {
  letter-spacing: 0.16em;
}

/* ── Title ── */
.et-hero__title {
  font-size: clamp(36px, 5vw, 72px);
  font-weight: 900;
  color: #fff;
  margin: 0 0 20px 0;
  line-height: 1.05;
  letter-spacing: -0.02em;
  max-width: min(900px, 62vw);
}

#recorded-detail-hero .et-hero__title--md {
  font-size: clamp(32px, 4.2vw, 60px);
  line-height: 1.08;
}

#recorded-detail-hero .et-hero__title--lg {
  font-size: clamp(28px, 3.6vw, 50px);
  line-height: 1.1;
}

#recorded-detail-hero .et-hero__title--xl {
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.12;
}

#workshops-detail-hero h1.et-hero__title {
  font-size: clamp(36px, 5vw, 57px);
}

#workshops-detail-hero .et-hero__title--md {
  font-size: clamp(30px, 3.8vw, 48px);
  line-height: 1.08;
}

#workshops-detail-hero .et-hero__title--lg {
  font-size: clamp(26px, 3.2vw, 42px);
  line-height: 1.1;
}

#workshops-detail-hero .et-hero__title--xl {
  font-size: clamp(22px, 2.6vw, 36px);
  line-height: 1.12;
}

@media (min-width: 1024px) {
  #workshops-detail-hero h1.et-hero__title {
  padding-right: 50px;
  }
}

@media (max-width: 767px) {
  #recorded-detail-hero .et-hero__title,
  #workshops-detail-hero .et-hero__title {
    max-width: 100%;
  }

  #recorded-detail-hero .et-hero__title--lg,
  #recorded-detail-hero .et-hero__title--xl {
    font-size: clamp(22px, 6.2vw, 36px);
  }

  #workshops-detail-hero .et-hero__title--lg,
  #workshops-detail-hero .et-hero__title--xl {
    font-size: clamp(20px, 5.8vw, 32px);
  }
}

.et-hero__title-gradient {
  background: linear-gradient(to right, var(--ET-Gold), #fef9c3, #fbbf24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Quote ── */
.et-hero__quote {
  border-left: 2px solid rgba(201, 168, 76, 0.5);
  padding-left: 20px;
  margin: 0 0 24px 0;
  max-width: 512px;
}
.et-hero__quote p {
  color: #d1d5db;
  font-size: 14px;
  font-weight: 300;
  font-style: italic;
  line-height: 1.7;
  margin: 0 0 8px 0;
}
.et-hero__quote cite {
  color: var(--ET-Gold);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-style: normal;
}

/* ── Meta Info ── */
.et-hero__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
  font-size: 14px;
  color: #9ca3af;
}

.et-hero__meta-item {
  display: flex;
  align-items: center;
  gap: 8px;
}
.et-hero__meta-item svg {
  color: var(--ET-Gold);
  flex-shrink: 0;
}
.et-hero__meta-item strong {
  color: #fff;
  font-weight: 700;
}

/* ── CTA Buttons ── */
.et-hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.et-hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 9999px;
  font-weight: 900;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: background 0.2s ease, color 0.2s ease;
  font-family: inherit;
  white-space: nowrap;
}
.et-hero__btn--primary {
  background: var(--ET-Gold);
  color: #000;
  box-shadow: 0 10px 30px rgba(120, 80, 10, 0.3);
}
.et-hero__btn--primary:hover {
  background: #fcd34d;
}
.et-hero__btn--ghost {
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  font-weight: 600;
}
.et-hero__btn--ghost:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ── Floating Stat Cards ── */
.et-hero__stat-card {
  display: none;
  position: absolute;
  right: 25px;
  z-index: 30;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  padding: 10px 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}
.et-hero__stat-card--1 {
  top: 128px;
}
.et-hero__stat-card--2 {
  top: unset;
  bottom: 50px;
}

/* Single-speaker role card — bottom center over speaker image */
.et-hero__speaker > .et-hero__stat-card--2 {
  top: auto;
  right: 40px;
  bottom: 32px;
  text-align: center;
  min-width: 190px;
  max-width: calc(100% - 24px);
  width: max-content;
}

.et-hero__speaker > .et-hero__stat-card--2 .et-hero__stat-label,
.et-hero__speaker > .et-hero__stat-card--2 .et-hero__stat-value {
  text-align: center;
}

.et-hero__speaker--count-3 > .et-hero__stat-card--2,
.et-hero__speaker--count-4 > .et-hero__stat-card--2 {
  bottom: 24px;
  max-width: calc(100% - 12px);
  padding: 8px 10px;
}

.et-hero__speaker--count-3 > .et-hero__stat-card--2 .et-hero__stat-label,
.et-hero__speaker--count-4 > .et-hero__stat-card--2 .et-hero__stat-label {
  font-size: 9px;
}

.et-hero__speaker--count-3 > .et-hero__stat-card--2 .et-hero__stat-value,
.et-hero__speaker--count-4 > .et-hero__stat-card--2 .et-hero__stat-value {
  font-size: 10px;
  line-height: 1.35;
}

.et-hero__stat-name {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
  line-height: 1.3;
}

.et-hero__stat-label {
  color: var(--ET-Gold);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.et-hero__stat-value {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  margin-top: 2px;
}

@media (min-width: 1024px) {
  .et-hero {
    padding-top: 85px;
    padding-bottom: 0px;
  }
  .et-hero__speaker {
    display: block;
  }
  .et-hero__content {
    max-width: 52%;
  }
  .et-hero__stat-card {
    display: block;
  }
}
.announcement-banner {
  background: linear-gradient(to right, var(--ET-Red), #dc2626, #b91c1c);
  padding: 16px;
  position: relative;
  z-index: 10;
  width: 100%;
}

.banner-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  color: #ffffff;
  font-size: 14px;
}

.banner-message {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  text-align: center;
}
.banner-message svg {
  flex-shrink: 0;
}

.banner-btn {
  background-color: #ffffff;
  color: var(--ET-Red);
  font-size: 12px;
  font-weight: 700;
  padding: 10px 24px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  transition: background-color 0.2s ease;
}
.banner-btn:hover {
  background-color: #fff1f2;
}

@media (min-width: 768px) {
  .banner-container {
    flex-direction: row;
  }
  .banner-message {
    text-align: left;
  }
}
/* Outer wrapper — bottom border */
.stats-bar {
  border-bottom: 1px solid #f3f4f6;
}

/* Grid container */
.stats-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 24px 16px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  text-align: center;
}

/* Stat card */
.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Big number / value */
.stat-value {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--ET-DeepBlue);
  margin-bottom: 4px;
  line-height: 1.2;
}

/* Label beneath the value */
.stat-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
  font-weight: 700;
  line-height: 1.375;
}

@media (min-width: 768px) {
  .stats-container {
    padding: 40px 32px;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
  }
  .stat-value {
    font-size: 1.875rem;
  }
}
/* ── Section 1: Before / After ── */
.transformation-section {
  padding: 32px 0;
}

.section-eyebrow {
  color: var(--ET-Gold);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  margin-bottom: 6px;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--ET-DeepBlue);
  margin-bottom: 32px;
  margin-top: 0;
}

.before-after-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* Card base */
.card {
  border-radius: 16px;
  padding: 28px;
}
.card--light {
  background: #f9fafb;
  border: 1px solid #f3f4f6;
}
.card--dark {
  background: linear-gradient(135deg, var(--ET-DeepBlue), #0d1b4e);
  color: white;
  position: relative;
  overflow: hidden;
}

.card-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 128px;
  height: 128px;
  background: var(--ET-Gold);
  filter: blur(48px);
  opacity: 0.2;
  border-radius: 50%;
}

.card-label {
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.card-label--muted {
  color: #d1d5db;
}
.card-label--gold {
  color: var(--ET-Gold);
  position: relative;
  z-index: 1;
}

/* Checklists */
.checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.checklist li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  color: #6b7280;
}
.checklist--dark li {
  color: #e5e7eb;
  position: relative;
  z-index: 1;
}

/* Workshop detail: Who Should Attend — horizontal flow (scoped, does not alter other .checklist uses) */
.who-should-attend-section .checklist {
  flex-direction: row;
  flex-wrap: wrap;
  column-gap: 32px;
  row-gap: 16px;
  align-items: flex-start;
}

.who-should-attend-section .checklist li {
  flex: 0 1 auto;
  max-width: 100%;
}

.icon-cross {
  color: #f87171;
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  margin-top: 2px;
  flex-shrink: 0;
}

.icon-check {
  color: var(--ET-Gold);
  flex-shrink: 0;
  margin-top: 2px;
}

@media (min-width: 768px) {
  .transformation-section {
    padding: 64px 0;
  }
  .section-title {
    font-size: 1.875rem;
  }
  .before-after-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
/* Main */
.et-library-main {
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 16px;
  flex: 1;
}

/* ── Toolbar ── */
.et-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 32px;
}

.et-toolbar__count {
  font-size: 13px;
  font-weight: 700;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.et-toolbar__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.et-toolbar__label {
  font-size: 12px;
  color: #9ca3af;
  font-weight: 500;
  margin-right: 8px;
}

.et-toolbar__btn {
  padding: 8px;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #9ca3af;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}
.et-toolbar__btn--active {
  background: var(--ET-DeepBlue);
  color: #fff;
  border-color: var(--ET-DeepBlue);
}

/* ── Grid ── */
.et-mc-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

/* ── Card ── */
.et-mc-card {
  background: #fff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, border-color 0.3s ease;
}
.et-mc-card:hover {
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
  border-color: rgba(201, 168, 76, 0.5);
}
.et-mc-card:hover .et-mc-card__thumb img {
  filter: grayscale(0%);
  transform: scale(1);
}
.et-mc-card:hover .et-mc-card__title {
  color: #92400e;
}
.et-mc-card:hover .et-mc-card__speaker {
  text-decoration-color: #fcd34d;
}
.et-mc-card:hover .et-mc-card__arrow {
  background: var(--ET-DeepBlue);
  color: #fff;
  border-color: transparent;
}

/* Thumbnail */
.et-mc-card__thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
.et-mc-card__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(30%);
  transform: scale(1.05);
  transition: filter 0.5s ease, transform 0.5s ease;
}

/* Badge stack */
.et-mc-card__badges {
  position: absolute;
  top: 12px;
  left: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.et-badge {
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 8px;
  border-radius: 4px;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  display: inline-block;
}
.et-badge--signature {
  background: var(--ET-Gold);
  color: #000;
}
.et-badge--virtual {
  background: #2563eb;
  color: #fff;
}
.et-badge--recorded {
  background: var(--ET-DeepBlue);
  color: #fff;
}
.et-badge--grandmaster {
  background: #000;
  color: var(--ET-Gold);
}

/* Body */
.et-mc-card__body {
  padding: 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Tags row */
.et-mc-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 12px;
}

.et-tag {
  font-size: 10px;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  background: #f9fafb;
  padding: 2px 8px;
  border-radius: 4px;
  border: 1px solid #f3f4f6;
}
.et-tag--icon {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

/* Title */
.et-mc-card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--ET-DeepBlue);
  margin: 0 0 4px 0;
  line-height: 1.3;
  transition: color 0.3s ease;
}

/* Speaker */
.et-mc-card__speaker {
  font-size: 14px;
  font-weight: 500;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 24px;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: #fde68a;
  transition: text-decoration-color 0.3s ease;
}
.et-mc-card__speaker svg {
  color: var(--ET-Gold);
  flex-shrink: 0;
}

/* Footer */
.et-mc-card__footer {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid #f9fafb;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.et-mc-card__date {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.et-mc-card__date-label {
  font-size: 10px;
  font-weight: 700;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: -0.02em;
}

.et-mc-card__date-value {
  font-size: 13px;
  font-weight: 700;
  color: #374151;
  display: flex;
  align-items: center;
  gap: 6px;
}
.et-mc-card__date-value svg {
  color: #d1d5db;
  flex-shrink: 0;
}

/* Arrow button */
.et-mc-card__arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #f9fafb;
  color: var(--ET-DeepBlue);
  border: 1px solid #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

@media (min-width: 768px) {
  .et-mc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .et-mc-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* Inner container */
.et-header__inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.et-header__logo {
  flex-shrink: 0;
  text-decoration: none;
  line-height: 0;
}
.et-header__logo img {
  height: 32px;
  width: auto;
  display: block;
  transition: all 0.3s ease;
  filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.15));
}

/* Desktop Nav */
.et-header__nav {
  display: none;
  align-items: center;
  gap: 32px;
}

/* Dropdown wrapper */
.et-nav-dropdown {
  position: relative;
  height: 80px;
  display: flex;
  align-items: center;
}

/* Nav link base */
.et-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  white-space: nowrap;
  transition: color 0.2s ease;
  font-family: inherit;
}
.et-nav-link:hover {
  color: var(--ET-Gold);
}

.et-nav-link.is-active,
.et-nav-dropdown.is-active .et-nav-link--btn {
  color: var(--ET-Gold);
}

/* Gold dot */
.et-nav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--ET-Gold);
  display: inline-block;
  flex-shrink: 0;
}

/* Crown icon color */
.et-nav-crown {
  color: var(--ET-Gold);
  flex-shrink: 0;
}

/* Underline animation variant */
.et-nav-link--underline {
  position: relative;
}

.et-nav-underline-bar {
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--ET-Gold);
  transition: width 0.3s ease;
  pointer-events: none;
}

.et-nav-link--underline:hover .et-nav-underline-bar {
  width: 100%;
}


/* Right actions group */
.et-header__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Search icon link */
.et-header__search {
  display: none;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  line-height: 0;
  transition: color 0.2s ease;
}
.et-header__search:hover {
  color: #fff;
}

/* Vertical divider */
.et-header__divider {
  display: none;
  width: 1px;
  height: 20px;
  background: rgba(255, 255, 255, 0.15);
  flex-shrink: 0;
}

/* Login button */
.et-header__login {
  display: none;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.et-header__login:hover {
  background: transparent !important;
}

/* Mobile hamburger */
.et-header__hamburger {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
  line-height: 0;
}

/* Guru Masterclass full-width mega menu (desktop only) */
.et-nav-dropdown.is-open .et-nav-link--btn {
  color: #f3c97a;
}

.et-nav-dropdown.is-open .et-nav-link--btn svg {
  transform: rotate(180deg);
}

.et-nav-link--btn svg {
  transition: transform 0.2s ease;
}

.site-header .et-nav-guru-mega {
  display: none;
}

@media (min-width: 1024px) {
  .site-header .et-nav-guru-mega {
    display: block;
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    background-color: #09101f;
    border-top: 2px solid #f3c97a;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
  }

  .site-header .et-nav-guru-mega.is-open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }
}

.site-header .et-nav-gm-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1.25rem;
}

.site-header .et-nav-gm-eyebrow {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(243, 201, 122, 0.7);
  margin: 0 0 1rem;
}

.site-header .et-nav-gm-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

@media (max-width: 1199px) {
  .site-header .et-nav-gm-grid {
    grid-template-columns: 1fr;
  }
}

.site-header .et-nav-gm-card {
  position: relative;
  display: block;
  padding: 1.5rem;
  border-radius: 1.25rem;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  text-decoration: none;
  overflow: hidden;
  transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.site-header .et-nav-gm-card:hover {
  background-color: rgba(255, 255, 255, 0.08);
  border-color: rgba(243, 201, 122, 0.4);
  transform: translateY(-2px);
}

.site-header .et-nav-gm-card-bg-icon {
  position: absolute;
  right: -1rem;
  top: -1rem;
  opacity: 0.05;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.site-header .et-nav-gm-card:hover .et-nav-gm-card-bg-icon {
  opacity: 0.1;
}

.site-header .et-nav-gm-card-bg-icon svg {
  color: #fcd34d;
}

.site-header .et-nav-gm-badge-duration {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  background-color: #f3c97a;
  color: #000000;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  padding: 0.15rem 0.45rem;
  border-radius: 999px;
}

.site-header .et-nav-gm-icon-wrap {
  width: 2.75rem;
  height: 2.75rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.9rem;
  background-color: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.7);
  transform: translateZ(0);
  transition: color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.site-header .et-nav-gm-card:hover .et-nav-gm-icon-wrap {
  color: #f3c97a;
  border-color: rgba(243, 201, 122, 0.4);
  transform: scale(1.08);
}

.site-header .et-nav-gm-label-row {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-bottom: 0.35rem;
}

.site-header .et-nav-gm-format-pill {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #ffffff;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 0.2rem 0.5rem;
  border-radius: 999px;
}

.site-header .et-nav-gm-card-title {
  font-size: 1rem;
  font-weight: 700;
  margin: 0 0 0.25rem;
  color: #ffffff;
  transition: color 0.3s ease;
}

.site-header .et-nav-gm-card:hover .et-nav-gm-card-title {
  color: #f3c97a;
}

.site-header .et-nav-gm-card-text {
  font-size: 0.8rem;
  line-height: 1.6;
  color: #9ca3af;
  margin: 0 0 1rem;
}

.site-header .et-nav-gm-meta-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.site-header .et-nav-gm-meta-item {
  font-size: 0.78rem;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.site-header .et-nav-gm-dot {
  width: 0.25rem;
  height: 0.25rem;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.3);
  flex-shrink: 0;
}

.site-header .et-nav-gm-cta {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #f3c97a;
}

.site-header .et-nav-gm-cta-icon {
  transform: rotate(-90deg);
}

/* Section */
.et-library-hero {
  padding-top: 128px;
  padding-bottom: 64px;
  background-color: #06091a;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Radial gradient overlay */
.et-library-hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at top right, rgba(197, 160, 89, 0.1), transparent 50%);
  pointer-events: none;
}

/* Container (scoped to avoid global overrides) */
.et-library-hero .et-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  z-index: 1;
}

/* Content block */
.et-library-hero__content {
  max-width: 768px;
}

/* Title */
.et-library-hero__title {
  font-size: clamp(36px, 5vw, 48px);
  font-weight: 700;
  margin: 0 0 16px 0;
  line-height: 1.2;
  color: #fff;
}

/* Description */
.et-library-hero__desc {
  color: #9ca3af;
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .et-header__logo img {
    height: 40px;
  }
}
@media (min-width: 1024px) {
  .et-header__nav {
    display: flex;
  }
  .et-header__search {
    display: block;
  }
  .et-header__divider {
    display: block;
  }
  .et-header__login {
    display: flex;
  }
  .et-header__hamburger {
    display: none;
  }
}

/* ── Mobile Nav Panel (drops below header) ───────────────── */
.et-mobile-nav {
  position: fixed;
  top: 72px; /* sits flush below the fixed header */
  left: 0;
  right: 0;
  background: #09101f;
  border-top: 1px solid rgba(255,255,255,0.10);
  z-index: 1200;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.32s cubic-bezier(0.4,0,0.2,1),
              opacity 0.25s ease;
  opacity: 0;
  pointer-events: none;
}
.et-mobile-nav.is-open {
  max-height: 100vh;
  opacity: 1;
  pointer-events: auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

/* Dim backdrop behind the panel */
.et-mobile-nav__backdrop {
  position: fixed;
  inset: 0;
  top: 72px;
  background: rgba(0,0,0,0.45);
  z-index: 1199;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}
.et-mobile-nav__backdrop.is-visible {
  opacity: 1;
  pointer-events: auto;
}

/* Inner padding wrapper */
.et-mobile-nav__inner {
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 4px;
}

/* Section label: "Guru Masterclass" */
.et-mobile-section-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(201,168,76,0.6); /* --ET-Gold at 60% */
  padding: 8px 12px 4px;
}

/* Each nav item row */
.et-mobile-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 14px;
  color: #d1d5db; /* gray-200 */
  text-decoration: none;
  padding: 12px;
  border-radius: 8px;
  transition: background 0.15s ease;
  cursor: pointer;
  font-family: inherit;
}
.et-mobile-item:hover {
  background: rgba(255,255,255,0.05);
}

.et-mobile-item.is-active {
  background: rgba(201, 168, 76, 0.12);
  color: #f8e4a2;
}

/* Icon inside item */
.et-mobile-item__icon {
  flex-shrink: 0;
  color: rgba(255,255,255,0.5);
}
.et-mobile-item__icon--gold {
  color: var(--ET-Gold);
}

/* Badge pushed to the right */
.et-mobile-badge {
  margin-left: auto;
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  background: rgba(255,255,255,0.15);
  padding: 2px 8px;
  border-radius: 4px;
}

/* Grand Masterclass row */
.et-mobile-item--grand {
  font-weight: 700;
  color: #fbbf24; /* amber-400 */
}
.et-mobile-item--grand:hover {
  background: rgba(120,60,0,0.20);
}

/* Premium badge (gold fill, black text) */
.et-mobile-badge--premium {
  background: var(--ET-Gold);
  color: #000;
  font-weight: 900;
}

/* Divider line */
.et-mobile-divider {
  height: 1px;
  background: rgba(255,255,255,0.10);
  margin: 8px 0;
}

/* Login / Sign Up full-width pill button */
.et-mobile-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  color: #fff;
  background: none;
  border: 1px solid rgba(255,255,255,0.20);
  border-radius: 9999px;
  padding: 12px 20px;
  width: 100%;
  cursor: pointer;
  font-family: inherit;
  margin-top: 4px;
  transition: background 0.2s ease, border-color 0.2s ease;
}
.et-mobile-login-btn:hover {
  background: rgba(255,255,255,0.10);
  border-color: rgba(255,255,255,0.45);
}

/* Mobile nav — runtime OAuth profile accordion (#mb_logged_username / .hvr_bx) */
.et-mobile-nav .mb-user-display {
  width: 100%;
}

.et-mobile-nav .mb-user-display .user-area {
  width: 100%;
}

.et-mobile-nav .mb-user-display .login-btn .link-login-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
  color: #fff !important;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.4;
  text-decoration: none;
  background: transparent;
  box-sizing: border-box;
}

.et-mobile-nav .mb-user-display .login-btn .link-login-btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.45);
}

.et-mobile-nav .mb_logged_username {
  display: grid;
  grid-template-columns: 48px 1fr;
  grid-template-areas:
    "avatar title"
    "menu menu";
  align-items: center;
  width: 100%;
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  overflow: hidden;
}

.et-mobile-nav .mb_logged_username:empty {
  display: none;
  margin: 0;
  border: 0;
}

.et-mobile-nav .mb_logged_username > .b2boauth-user-name {
  grid-area: avatar;
  float: none !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin: 12px 0 12px 12px;
  padding: 0;
  border-radius: 8px;
  background: #e32932 !important;
  position: relative;
  top: auto;
}

.et-mobile-nav .mb_logged_username > .b2boauth-user-name span {
  position: static !important;
  transform: none !important;
  font-size: 15px;
  font-weight: 500;
  line-height: 1;
  color: #fff !important;
  text-transform: uppercase;
}

.et-mobile-nav .mb_logged_username > img {
  grid-area: avatar;
  width: 36px;
  height: 36px;
  margin: 12px 0 12px 12px;
  border-radius: 8px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.et-mobile-nav .mb_logged_username > a {
  grid-area: title;
  display: block;
  position: relative;
  min-height: 60px;
  padding: 20px 40px 14px 15px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: white;
  text-decoration: none !important;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  top: auto !important;
  float: none !important;
  cursor: pointer;
  box-sizing: border-box;
}

.et-mobile-nav .mb_logged_username > a:before {
  display: none !important;
}

.et-mobile-nav .mb_logged_username > a:after {
  display: block !important;
  content: '';
  position: absolute;
  right: 14px;
  top: 50%;
  width: 16px;
  height: 16px;
  margin-top: -8px;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="%23f8e4a2" viewBox="0 0 256 256"><path d="M213.66,101.66l-80,80a8,8,0,0,1-11.32,0l-80-80A8,8,0,0,1,53.66,90.34L128,164.69l74.34-74.35a8,8,0,0,1,11.32,11.32Z"></path></svg>') center / contain no-repeat;
  opacity: 0.85;
  transform: rotate(0deg);
  transition: transform 0.2s ease;
}

.et-mobile-nav .mb_logged_username > a.active:after {
  transform: rotate(180deg);
}

.et-mobile-nav .mb_logged_username .hvr_bx {
  grid-area: menu;
  grid-column: 1 / -1;
  display: none !important;
  position: static !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  clear: both;
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0 !important;
  box-shadow: none !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.22) !important;
}

.et-mobile-nav .mb_logged_username > a.active + .hvr_bx {
  display: block !important;
}

.et-mobile-nav .mb_logged_username .hvr_bx:before,
.et-mobile-nav .mb_logged_username .hvr_bx:after {
  display: none !important;
}

.et-mobile-nav .mb_logged_username .hvr_bx ul {
  list-style: none;
  margin: 0;
  padding: 6px 8px 8px;
  background: transparent !important;
}

.et-mobile-nav .mb_logged_username .hvr_bx li {
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
}

.et-mobile-nav .mb_logged_username .hvr_bx a {
  display: block;
  padding: 11px 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  color: #d1d5db !important;
  text-decoration: none !important;
  border-radius: 8px;
  border-top: 0;
  background: transparent !important;
}

.et-mobile-nav .mb_logged_username .hvr_bx a:hover,
.et-mobile-nav .mb_logged_username .hvr_bx a:focus {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
}

.et-mobile-nav .mb_logged_username .hvr_bx a .fa,
.et-mobile-nav .mb_logged_username .hvr_bx a i {
  display: none;
}


.et-mobile-nav .mb_logged_username .hvr_bx li:last-child a:hover,
.et-mobile-nav .mb_logged_username .hvr_bx li:last-child a:focus {
  color: #fecaca !important;
  background: rgba(239, 68, 68, 0.12) !important;
}

.et-mobile-nav .mb_logged_username .hvr_bx li.last a {
  background: transparent !important;
  font-size: 14px;
  font-weight: 500;
  text-transform: none;
  text-align: left;
  margin-top: 4px;
  padding: 12px;
}

/* Hide panel entirely on desktop */
@media (min-width: 1024px) {
  .et-mobile-nav,
  .et-mobile-nav__backdrop {
    display: none !important;
  }
}



/* Section & layout */
.speakers-section {
  padding: 5rem 0;
  background-color: #06091a;
}

.speakers-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

.speakers-section .speakers-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .speakers-section .speakers-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .speakers-section .speakers-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

/* Card */
.speaker-card {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.speaker-link {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* Maintain 3/4 aspect ratio */
.speaker-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 133.333%; /* 3/4 aspect ratio (height / width * 100) */
  overflow: hidden;
  border-radius: 1rem;
}

/* Absolute content inside ratio box */
.speaker-image,
.speaker-overlay,
.speaker-content,
.speaker-badge {
  position: absolute;
}

.speaker-image {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  filter: grayscale(100%);
  transform: scale(1);
  transition: filter 0.7s ease, transform 0.7s ease;
}

/* Dark gradient overlay bottom-up */
.speaker-overlay {
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 1),
    rgba(0, 0, 0, 0.3),
    transparent
  );
}

/* Badge on top-left */
.speaker-badge {
  top: 1rem;
  left: 1rem;
  padding: 0.125rem 0.5rem;
  border-radius: 999px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background-color: rgba(0, 0, 0, 0.6);
  color: #c5a059;
  border: 1px solid rgba(209, 164, 95, 0.2);
  backdrop-filter: blur(6px);
}

/* Bottom content */
.speaker-content {
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1.25rem;
}

.speaker-meta {
  transform: translateY(0.5rem);
  transition: transform 0.3s ease;
}

/* Institution line */
.speaker-institution {
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  margin-bottom: 0.25rem;
  color: #c5a059;
  opacity: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: opacity 0.3s ease;
}

/* Name & tagline */
.speaker-name {
  margin: 0 0 0.125rem;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.1;
  color: white;
}

.speaker-tagline {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.4;
  color: white;
  display: -webkit-box;
  -webkit-line-clamp: 2;      /* clamp to 2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Hover states */
.speaker-link:hover .speaker-image,
.speaker-link:focus-visible .speaker-image {
  filter: grayscale(0%);
  transform: scale(1.1);
}

.speaker-link:hover .speaker-meta,
.speaker-link:focus-visible .speaker-meta {
  transform: translateY(0);
}

.speaker-link:hover .speaker-institution,
.speaker-link:focus-visible .speaker-institution {
  opacity: 1;
}

.speaker-link:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

/* Wrapper */
.filter-buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem; /* similar to Tailwind gap-2 */
  background: #06091a;
}

/* Base button */
.filter-button {
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  border: 1px solid #9ca3af;
  background-color: transparent;
  color: #9ca3af;
  cursor: pointer;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

/* Active state (equivalent of All button) */
.filter-button.is-active {
  background-color: #c5a059;
  border-color: #c5a059;
  color: #000000;
}

/* Hover / focus state for inactive buttons */
.filter-button:not(.is-active):hover,
.filter-button:not(.is-active):focus-visible {
  border-color: rgba(209, 164, 95, 0.5); /* ET-Gold / 50 */
  color: #ffffff;
}

/* Optional focus outline */
.filter-button:focus-visible {
  outline: 2px solid #c5a059;
  outline-offset: 2px;
}
/* Scope everything to this id to avoid conflicts */
#guru-filter-bar {
  position: sticky;
  top: 5rem;          /* similar to top-20; adjust as needed */
  z-index: 30;
  background-color: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
  transition: all 0.3s ease;
}

/* Container (mimics tailwind container + flex) */
#guru-filter-bar .gf-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  #guru-filter-bar .gf-container {
    flex-direction: row;
    align-items: center;
  }
}

/* Search wrapper */
#guru-filter-bar .gf-search-wrapper {
  position: relative;
  flex: 1;
}

/* Search icon */
#guru-filter-bar .gf-search-icon {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #9ca3af;
  transition: color 0.2s ease;
}

/* Input */
#guru-filter-bar .gf-search-input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 2.75rem;
  background-color: #f9fafb;
  border-radius: 0.75rem;
  border: 1px solid transparent;
  font-size: 0.875rem;
  outline: none;
  transition:
    background-color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
    border: 1px solid #ddd;
    box-sizing: border-box;
}

#guru-filter-bar .gf-search-input:focus {
  background-color: #ffffff;
  border-color: var(--ET-Gold);
  box-shadow: 0 0 0 4px rgba(245, 158, 11, 0.12);
}

/* Change icon color when input is focused */
#guru-filter-bar .gf-search-input:focus + .gf-search-icon,
#guru-filter-bar .gf-search-wrapper:focus-within .gf-search-icon {
  color: var(--ET-Gold);
}

/* Controls wrapper */
#guru-filter-bar .gf-controls {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-left: auto;
}

/* Tabs group */
#guru-filter-bar .gf-tabs {
  display: flex;
  gap: 0.25rem;
  padding: 0.25rem;
  border-radius: 0.75rem;
  background-color: #f3f4f6;
}

/* Individual tab */
#guru-filter-bar .gf-tab {
  padding: 0.35rem 1rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  border: none;
  background: transparent;
  color: #6b7280;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

/* Active tab */
#guru-filter-bar .gf-tab-active {
  background-color: #ffffff;
  color: var(--ET-DeepBlue);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.15);
}

/* Hover state for inactive tabs */
#guru-filter-bar .gf-tab:not(.gf-tab-active):hover {
  color: #111827;
}

/* Select dropdown */
#guru-filter-bar .gf-select {
  background-color: #ffffff;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  color: #374151;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

#guru-filter-bar .gf-select:focus {
  border-color: var(--ET-Gold);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.12);
}

/* Date sort: toggle button (asc / desc), matches filter bar controls */
#guru-filter-bar .gf-sort-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  background-color: #ffffff;
  border-radius: 0.75rem;
  border: 1px solid #e5e7eb;
  padding: 0.65rem 0.85rem;
  color: #374151;
  outline: none;
  cursor: pointer;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

#guru-filter-bar .gf-sort-toggle:hover {
  background-color: #f9fafb;
  color: #111827;
}

#guru-filter-bar .gf-sort-toggle:focus {
  border-color: var(--ET-Gold);
  box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.12);
}

#guru-filter-bar .gf-sort-icon-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  pointer-events: none;
  transition: transform 0.2s ease;
  transform: rotate(0deg);
}

#guru-filter-bar .gf-sort-state-desc .gf-sort-icon-wrap {
  transform: rotate(180deg);
}

:root {
  --ET-Gold: #c5a059;
  --ET-DeepBlue: #0f172a;
}

/* Section wrapper */
#guru-masterclass-grid {
  background-color: #f9fafb;
  padding-top: 20px;
}



/* Header */
#guru-masterclass-grid .gm-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  gap: 1rem;
}

#guru-masterclass-grid .gm-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #6b7280;
}

#guru-masterclass-grid .gm-header-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

#guru-masterclass-grid .gm-view-label {
  font-size: 0.75rem;
  font-weight: 500;
  color: #9ca3af;
}

/* Header buttons */
#guru-masterclass-grid .gm-btn-2 {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

#guru-masterclass-grid .gm-btn-primary {
  background-color: var(--ET-DeepBlue);
  color: #ffffff;
}

#guru-masterclass-grid .gm-btn-primary:hover {
  box-shadow: 0 8px 20px rgba(15, 23, 42, 0.35);
}

#guru-masterclass-grid .gm-btn-outline {
  background-color: #ffffff;
  color: #9ca3af;
  border-color: #e5e7eb;
}

#guru-masterclass-grid .gm-btn-outline:hover {
  color: #4b5563;
}

/* Grid */
#guru-masterclass-grid .gm-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  #guru-masterclass-grid .gm-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  #guru-masterclass-grid .gm-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Card */
#guru-masterclass-grid .gm-card {
  background-color: #ffffff;
  border-radius: 1rem;
  border: 1px solid #e5e7eb;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  transition:
    box-shadow 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease;
    padding: 0;
}

#guru-masterclass-grid .gm-card:hover {
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.15);
  border-color: rgba(245, 158, 11, 0.5);
  transform: translateY(-2px);
}

/* Media */
#guru-masterclass-grid .gm-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

#guru-masterclass-grid .gm-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(0.3);
}

#guru-masterclass-grid .gm-card:hover .gm-card-img {
  filter: grayscale(0);
  transform: scale(1);
}

/* Badge on image */
#guru-masterclass-grid .gm-card-badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.5rem;
  border-radius: 999px;
  font-size: 0.55rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  background-color: var(--ET-Gold);
  color: #000000;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
}

/* Card body */
#guru-masterclass-grid .gm-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0px;
}

/* Tags */
#guru-masterclass-grid .gm-tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.75rem;
}

#guru-masterclass-grid .gm-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

#guru-masterclass-grid .gm-tag svg {
  flex-shrink: 0;
}

#guru-masterclass-grid .gm-tag-muted {
  background-color: #f9fafb;
  border: 1px solid #eceef2;
  color: #9ca3af;
}

/* Title */
#guru-masterclass-grid .gm-card-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--ET-DeepBlue);
  margin-bottom: 0.5rem;
  line-height: 1.3;
  transition: color 0.2s ease;
}

#guru-masterclass-grid .gm-card:hover .gm-card-title {
  color: #b45309; /* amber-700-ish */
}

/* Speaker line */
#guru-masterclass-grid .gm-card-speaker {
  font-size: 0.875rem;
  font-weight: 500;
  color: #6b7280;
  display: flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: #fef3c7;
  transition:
    text-decoration-color 0.2s ease;
}

#guru-masterclass-grid .gm-card:hover .gm-card-speaker {
  text-decoration-color: #fbbf24;
}

/* Footer */
#guru-masterclass-grid .gm-card-footer {
  margin-top: auto;
  padding: 1.5rem;
  border-top: 1px solid #f9fafb;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0px;
}

#guru-masterclass-grid .gm-footer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

#guru-masterclass-grid .gm-footer-label {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #9ca3af;
}

#guru-masterclass-grid .gm-footer-value {
  font-size: 0.875rem;
  font-weight: 700;
  color: #374151;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

/* CTA circle button */
#guru-masterclass-grid .gm-card-cta {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: 1px solid #f3f4f6;
  background-color: #f9fafb;
  color: var(--ET-DeepBlue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

#guru-masterclass-grid .gm-card:hover .gm-card-cta {
  background-color: var(--ET-DeepBlue);
  color: #ffffff;
  border-color: transparent;
  transform: translateX(1px);
}

button#top-login-btn {
  background: transparent !important;
  all: inherit;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.topSignBX.user-area {
  cursor: pointer;
}

.model-container .brand-icon img {
  width: 100%;
}

.log_popup_bottom.oauth-bottom-login.model-bottom {
  display: inline-block;

}

/* Contact page (v4) — scoped to .contact-section */
.contact-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.contact-section .contact-container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 16px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
}

@media (min-width: 1024px) {
  .contact-section .contact-container {
    grid-template-columns: 4fr 8fr;
    align-items: flex-start;
  }
}

.contact-section .contact-info {
  display: flex;
  flex-direction: column;
}

.contact-section .section-title {
  font-size: 24px;
  font-weight: 700;
  color: #07122e;
  margin: 0 0 24px 0;
}

/* Recorded courses cards (module-scoped) */
#guru-masterclass-grid.mcv4-recorded-courses {
  background-color: #f9fafb;
  padding:40px 0px 0px 0px;
}

#guru-masterclass-grid.mcv4-recorded-courses .gm-header.mb-0 {
  margin: 0px;
}

#guru-masterclass-grid.mcv4-recorded-courses .gm-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #7a828f;
}

#guru-masterclass-grid.mcv4-recorded-courses .gm-grid {
  gap: 22px;
}

#guru-masterclass-grid.mcv4-recorded-courses .gm-card {
  background: #ffffff;
  border: 1px solid #e6eaf0;
  border-radius: 14px;
  box-shadow: 0 4px 14px rgba(16, 24, 40, 0.06);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

#guru-masterclass-grid.mcv4-recorded-courses .gm-card:hover {
  transform: translateY(-2px);
  border-color: #d7dde6;
  box-shadow: 0 10px 22px rgba(16, 24, 40, 0.1);
}

#guru-masterclass-grid.mcv4-recorded-courses .gm-card-link {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  text-decoration: none;
  color: inherit;
  background: #ffffff;
}

#guru-masterclass-grid.mcv4-recorded-courses.recorded-courses-grid a.gm-card-link img {
  transform: none;
  object-position: top;
}

#guru-masterclass-grid.mcv4-recorded-courses .et-card__thumb {
  position: relative;
  height: 172px;
  overflow: hidden;
}

#guru-masterclass-grid.mcv4-recorded-courses .gm-card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.001);
  transition: transform 0.35s ease;
}

#guru-masterclass-grid.mcv4-recorded-courses .gm-card:hover .gm-card-img {
  transform: scale(1.03);
}

#guru-masterclass-grid.mcv4-recorded-courses .et-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.02) 0%, rgba(0, 0, 0, 0.25) 100%);
}

#guru-masterclass-grid.mcv4-recorded-courses .et-card__badge {
  position: absolute;
  top: 12px;
  right: 12px;
  left: auto;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  color: #242a35;
  border: 1px solid #e7ebf1;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

#guru-masterclass-grid.mcv4-recorded-courses .et-card__body {
  padding: 14px 14px 12px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

#guru-masterclass-grid.mcv4-recorded-courses .et-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

#guru-masterclass-grid.mcv4-recorded-courses .et-card__author {
  max-width: calc(100% - 95px);
  color: #8b9099;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

#guru-masterclass-grid.mcv4-recorded-courses .et-card__tag {
  color: #5f6670;
  background: transparent;
  padding: 0;
  border-radius: 0;
  font-size: 11px;
  font-weight: 600;
  white-space: nowrap;
}

#guru-masterclass-grid.mcv4-recorded-courses .et-card__title {
  margin: 0;
  color: #151b26;
  font-size: 19px;
  font-weight: 700;
  line-height: 1.28;
  min-height: calc(1.28em * 2);
  font-family: "SuisseIntl", "Inter", sans-serif;
}

#guru-masterclass-grid.mcv4-recorded-courses .et-card__info {
  margin-top: 2px;
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

#guru-masterclass-grid.mcv4-recorded-courses .et-card__info-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #6f7682;
  font-size: 12px;
  font-weight: 500;
}

#guru-masterclass-grid.mcv4-recorded-courses .et-card__info-item svg {
  color: #a6adb9;
}

#guru-masterclass-grid.mcv4-recorded-courses .et-card__btn {
  margin-top: 10px;
  min-height: 17px;
  border-radius: 10px;
  border: 1px solid #dce2ea;
  background: #f8fafc;
  color: #353b45;
  font-size: 13px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

#guru-masterclass-grid.mcv4-recorded-courses .gm-card:hover .et-card__btn {
  background: #f2f5f9;
  border-color: #cfd6e0;
  color: #232834;
}

#guru-masterclass-grid.mcv4-recorded-courses .gm-loading,
#guru-masterclass-grid.mcv4-recorded-courses .gm-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: #6b7280;
  font-size: 16px;
}

/* Recorded courses search suggestions */
.gf-search-wrapper {
  position: relative;
}

.gf-search-suggestions {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  background: #11131c;
  border: 1px solid #2b3042;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
  max-height: 320px;
  overflow-y: auto;
  z-index: 20;
}

.gf-suggestion-item {
  width: 100%;
  text-align: left;
  border: 0;
  border-bottom: 1px solid #242938;
  background: transparent;
  color: #e8ebf5;
  padding: 10px 12px;
  font-size: 14px;
  line-height: 1.35;
  cursor: pointer;
}

.gf-suggestion-item:last-child {
  border-bottom: 0;
}

.gf-suggestion-item:hover,
.gf-suggestion-item.is-active {
  background: #1b2030;
}

.gf-suggestion-match {
  color: #f94e5c;
  font-weight: 600;
}

.contact-section .contact-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-bottom: 32px;
}

.contact-section .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.contact-section .contact-icon-wrapper {
  width: 40px;
  height: 40px;
  background-color: #fff7e6;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-section .contact-icon {
  stroke: currentColor;
}

.contact-section .contact-icon-highlight {
  color: #f5b400;
}

.contact-section .contact-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #9ca3af;
  margin-bottom: 4px;
}

.contact-section .contact-link {
  font-size: 14px;
  color: #111827;
  text-decoration: none;
  transition: color 0.2s ease;
}

.contact-section .contact-link:hover {
  color: #07122e;
}

.contact-section .contact-text {
  font-size: 14px;
  color: #111827;
  line-height: 1.5;
}

.contact-section .contact-divider {
  border: none;
  height: 1px;
  background-color: #f3f4f6;
  margin: 32px 0;
}

.contact-section .subheading {
  font-size: 1rem;
  font-weight: 700;
  color: #07122e;
  margin: 0 0 16px 0;
}

.contact-section .feature-list {
  font-size: 14px;
  color: #4b5563;
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.contact-section .feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.contact-section .feature-icon {
  color: #f5b400;
  flex-shrink: 0;
}

.contact-section .enterprise-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: #f5b400;
  text-decoration: none;
  transition: gap 0.2s ease;
}

.contact-section .enterprise-link:hover {
  gap: 12px;
}

.contact-section .accelerator-card {
  margin-top: 32px;
  background: linear-gradient(135deg, #07122e, #0d1b4e);
  border-radius: 16px;
  padding: 24px;
  color: #ffffff;
}

.contact-section .accelerator-icon {
  color: #f5b400;
  margin-bottom: 12px;
}

.contact-section .accelerator-title {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 8px 0;
}

.contact-section .accelerator-text {
  font-size: 14px;
  color: #d1d5db;
  line-height: 1.6;
  margin: 0 0 12px 0;
}

.contact-section .accelerator-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 14px;
  font-weight: 700;
  color: #f5b400;
}

.contact-section .contact-form-wrapper {
  width: 100%;
}

.contact-section .contact-form-card {
  background-color: #f9fafb;
  border: 1px solid #f3f4f6;
  border-radius: 16px;
  padding: 32px;
}

.contact-section .form-title {
  font-size: 20px;
  font-weight: 700;
  color: #07122e;
  margin: 0 0 24px 0;
}

.contact-section .contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-section .form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 768px) {
  .contact-section .form-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.contact-section .form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-section .field-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #4b5563;
}

.contact-section .field-input,
.contact-section .field-select,
.contact-section .field-textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid #e5e7eb;
  padding: 12px 16px;
  font-size: 14px;
  color: #111827;
  background-color: #ffffff;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  box-sizing: border-box;
}

.contact-section .field-select {
  padding-right: 40px;
}

.contact-section .field-textarea {
  resize: none;
  min-height: 120px;
}

.contact-section .field-input:focus,
.contact-section .field-select:focus,
.contact-section .field-textarea:focus {
  border-color: #f5b400;
  box-shadow: 0 0 0 1px rgba(245, 180, 0, 0.4);
}

.contact-section .submit-button {
  width: 100%;
  border: none;
  border-radius: 999px;
  background-color: #07122e;
  color: #ffffff;
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 10px 20px rgba(7, 18, 46, 0.25);
  transition: background-color 0.2s ease, color 0.2s ease;
}

.contact-section .submit-button:hover {
  background-color: #c5a059;
  color: #000000;
}

.contact-section .arrow-icon {
  stroke: currentColor;
  flex-shrink: 0;
}

.contact-section .form-note {
  margin: 8px 0 0 0;
  font-size: 11.5px;
  color: #9ca3af;
  text-align: center;
}
.contact-section .form-note a {
  color: #52575f;
}

.contact-section .form-error {
  color: #dc2626;
  font-size: 12px;
  margin-top: 4px;
}




@media (min-width: 768px) and (max-width:991px) {
  .topRightBX.tablet-view {
      padding-right:50px
  }
}

.topRightBX a {
  color: #666!important
}

.topRightBX a:hover {
  color: #f83d37!important
}

.topRightBX ul li {
  display: inline-block;
  font-weight: 400;
  padding-right: 7px
}

.topSignBX {
  float: right;
  text-align: right
}

.topSignBX .login-panel__toggler {
  padding-right: 0
}

#logged_username i {
  float: left;
  margin-right: 10px;
  margin-top: 1px
}

.user-name>a {
  display: block;
  font-size: 12px!important;
  overflow: hidden;
  padding: 0 20px 0 1px;
  position: relative;
  text-decoration: none;
  text-overflow: ellipsis;
  top: 2px;
  white-space: nowrap;
  color: white !important;
  font-weight: 500;
}
.topRightBX.tablet-view.header__login-panel.login-panel.loggedin-user.et-header__login:has(#logged_username) {
  border: 0px;
  padding: 0px;
  position: relative;
}

.user-name>a:after {
  color: #666;
  content: '';
  display: block;
  font: normal normal normal 14px / 1 FontAwesome;
  position: absolute;
  right: 6px;
  top: -2px;
  transition: transform .5s ease;
  z-index: 10;
  background:url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="32" height="32" fill="%23f2f2f2" viewBox="0 0 256 256"><path d="M213.66,101.66l-80,80a8,8,0,0,1-11.32,0l-80-80A8,8,0,0,1,53.66,90.34L128,164.69l74.34-74.35a8,8,0,0,1,11.32,11.32Z"></path></svg>');
  width: 16px;
  height: 16px;
  background-size: cover;
  opacity: 0.7;
}

.user-name .hvr_bx:after,.user-name .hvr_bx:before {
  left: 85%;
  top: 5px
}

/* Static legal/about pages (v4) */
#aboutus-page,
#terms-page,
#privacy-policy-page {
  background: #f3f4f7;
  padding: 48px 0 72px;
}

#aboutus-page .hdngBx,
#aboutus-page .title2,
#terms-page .hdngBx,
#terms-page .title2,
#privacy-policy-page .hdngBx,
#privacy-policy-page .title2 {
  display: none;
}

#aboutus-page .post.post-text,
#terms-page .post.post-text,
#privacy-policy-page .post.post-text {
  max-width: 1280px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid #eceff4;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(2, 8, 23, 0.06);
  padding: 36px 42px;
  color: #121827;
  font-size: 17px;
  line-height: 1.8;
}

#aboutus-page .post.post-text p,
#terms-page .post.post-text p,
#privacy-policy-page .post.post-text p,
#aboutus-page .post.post-text li,
#terms-page .post.post-text li,
#privacy-policy-page .post.post-text li {
  margin-bottom: 14px;
}

#aboutus-page .post.post-text h3,
#terms-page .post.post-text h3,
#privacy-policy-page .post.post-text h3,
#aboutus-page .post.post-text h4,
#terms-page .post.post-text h4,
#privacy-policy-page .post.post-text h4 {
  margin: 24px 0 12px;
  color: #0b1535;
  line-height: 1.35;
}

#aboutus-page .post.post-text h3,
#terms-page .post.post-text h3,
#privacy-policy-page .post.post-text h3 {
  font-size: 26px;
  font-weight: 700;
}

#aboutus-page .post.post-text h4,
#terms-page .post.post-text h4,
#privacy-policy-page .post.post-text h4 {
  font-size: 21px;
  font-weight: 600;
}

#aboutus-page .post.post-text ol,
#terms-page .post.post-text ol,
#privacy-policy-page .post.post-text ol,
#aboutus-page .post.post-text ul,
#terms-page .post.post-text ul,
#privacy-policy-page .post.post-text ul {
  margin: 0 0 18px 0;
  padding-left: 24px;
}

#aboutus-page .post.post-text a,
#terms-page .post.post-text a,
#privacy-policy-page .post.post-text a {
  color: #0b3a8d;
  text-decoration: underline;
}

@media (max-width: 767px) {
  #aboutus-page,
  #terms-page,
  #privacy-policy-page {
    padding: 24px 0 44px;
  }

  #aboutus-page .post.post-text,
  #terms-page .post.post-text,
  #privacy-policy-page .post.post-text {
    border-radius: 10px;
    padding: 22px 16px;
    font-size: 15px;
    line-height: 1.7;
  }

  #aboutus-page .post.post-text h3,
  #terms-page .post.post-text h3,
  #privacy-policy-page .post.post-text h3 {
    font-size: 22px;
    margin-top: 18px;
  }

  #aboutus-page .post.post-text h4,
  #terms-page .post.post-text h4,
  #privacy-policy-page .post.post-text h4 {
    font-size: 18px;
    margin-top: 16px;
  }
}

.user-name .hvr_bx a {
  color: #fff;
  display: block;
  font-size: 13px;
  font-weight: 400;
  line-height: 16px;
  padding: 5px 10px;
  text-decoration: none
}

.user-name .hvr_bx a .fa {
  margin-right: 5px
}

header .topSocialBX {
  float: right;
  margin-right: 15px
}

.user-name .hvr_bx {
  display: none;
  position: relative
}

.user-name>a:after {
  color: #777!important
}

.user-name .hvr_bx li:hover {
  background: #f3f3f3;
  color: #ec2227!important
}

.user-name .hvr_bx li:hover a {
  color: #ec2227!important
}

.user-name:hover .hvr_bx {
  display: block
}


.user-name .hvr_bx li,.user-name .hvr_bx ul {
  border: 0;
  display: block;
  list-style: none;
  margin: 0;
  padding: 0
}

.user-name .hvr_bx li.last a {
  background: #e81f3d;
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase
}

.user-name .hvr_bx li.last a span {
  color: #000;
  display: block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 4px;
  opacity: 1;
  text-transform: capitalize
}

@media only screen and (min-width: 767px) {
  .user-name .hvr_bx {
      box-shadow:0 2px 3px hsla(0,0%,78%,.3);
      -moz-box-shadow: 0 2px 3px hsla(0,0%,78%,.3);
      -webkit-box-shadow: 0 2px 3px hsla(0,0%,78%,.2);
      min-width: 195px;
      padding: 11px 0 0;
      position: absolute;
      left: unset;
      text-align: left;
      z-index: 9999;
      right: 0px;
  }

  .user-name .hvr_bx ul {
      background: #06091a
  }

  .user-name img {
      float: left;
      margin-right: 5px
  }

  .user-name .hvr_bx a {
      color: #fff!important;
      padding: 12px 24px
  }

  .user-name .hvr_bx a:hover {
      background: #0e1123;
      color: #e81f3d!important
  }

  .user-name .hvr_bx li {
      border-bottom: 1px solid #303136
  }

  .user-name .hvr_bx li:last-child {
      border-bottom: none
  }

  .user-name .hvr_bx li:hover {
      background: none;
      color: #fff!important
  }

  .user-name .hvr_bx li:hover a {
      color: #fff!important
  }

  header .menu-wrapper {
      position: relative
  }

  .footer-lst1 li:last-child {
      margin-bottom: 0
  }
}
section.gm-section.gm-section--list {
  background: #0a0a0a;
}

section.gm-section.gm-section--list .gm-card {
  background-image: linear-gradient(to right,#0f0f0f , #181818);
  border: 1px solid #ffffff1a;
  padding: 0px;
  border-radius: 1.5rem;
}

.default-poster-image {
  filter: blur(1px) !important;
}

div#workshops-detail-hero,
div#recorded-detail-hero {
  max-width: 1280px;
  padding-top: 0px;
}
@media (max-width: 1200px) {
  div#workshops-detail-hero,
  div#recorded-detail-hero {
    padding: 0px 20px;
  }
}

.recorded-detail-content .recorded-enroll-btn {
  width: 100%;
  margin-top: 8px;
}

.recorded-certificate-section {
  padding: 48px 0;
  background: #f8fafc;
}

.recorded-certificate-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 24px;
  align-items: center;
  background: linear-gradient(135deg, #eef6ff, #f8fbff);
  border: 1px solid #dbeafe;
  border-radius: 20px;
  padding: 28px;
}

.recorded-certificate-visual img {
  width: 100%;
  max-width: 320px;
  margin-left: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
}

@media (max-width: 900px) {
  .recorded-certificate-card {
    grid-template-columns: 1fr;
  }

  .recorded-certificate-visual img {
    margin: 0 auto;
  }
}

.recorded-detail-content {
  background: #fff;
  padding-top: 28px;
}

.rd-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  color: #94a3b8;
  margin-bottom: 18px;
}

.rd-breadcrumb--hero {
  color: rgba(255, 255, 255, 0.72);
}

.rd-breadcrumb--hero a {
  color: rgba(255, 255, 255, 0.9);
}

.rd-breadcrumb a {
  color: #64748b;
  text-decoration: none;
}

.rd-breadcrumb a:hover {
  color: var(--ET-Gold);
}

.rd-intro {
  margin-bottom: 22px;
}

.rd-intro__text {
  font-size: 16px;
  line-height: 1.7;
  color: #334155;
  margin: 0 0 16px;
  max-width: 760px;
}

.rd-experts {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.rd-expert-card {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 220px;
}

.rd-expert-card__img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
}

.rd-expert-card__label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #94a3b8;
}

.rd-expert-card__name {
  font-size: 14px;
  font-weight: 600;
  color: #0f172a;
}

.rd-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
  border-bottom: 1px solid #e2e8f0;
  padding-bottom: 10px;
}

.rd-tabs__link {
  font-size: 13px;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 999px;
}

.rd-tabs__link--active,
.rd-tabs__link:hover {
  color: #0f172a;
  background: #f1f5f9;
}

.rd-panel {
  scroll-margin-top: 110px;
}

.rd-panel__lead,
.rd-panel__text {
  color: #475569;
  line-height: 1.7;
  font-size: 0.90rem;
}

.rd-course-desc-wrap {
  margin-bottom: 8px;
}

.rd-course-description {
  color: #475569;
  line-height: 1.7;
  font-size: 0.9rem;
}

.rd-course-description p {
  margin: 0 0 12px;
}

.rd-course-description p:last-child {
  margin-bottom: 0;
}

.rd-course-description--collapsed {
  max-height: 4.8em;
  overflow: hidden;
  position: relative;
}

.rd-course-description--collapsed::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1.6em;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #fff 100%);
  pointer-events: none;
}

.rd-course-description--expanded {
  max-height: none;
  overflow: visible;
}

.rd-course-description--expanded::after {
  display: none;
}

.rd-course-description__toggle,
.rd-course-desc-wrap .read-more {
  display: inline-block;
  margin-top: 8px;
  color: #b45309;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.rd-course-description__toggle:hover,
.rd-course-desc-wrap .read-more:hover {
  color: #92400e;
}

.rd-course-description .course-description {
  margin-top: 12px;
}

.rd-course-description .course-description ul {
  margin: 0;
  padding-left: 18px;
}

.rd-panel__subtitle {
  margin: 24px 0 12px;
  font-size: 18px;
}

.rd-curriculum-accordion {
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  overflow: hidden;
}

.rd-curriculum-item + .rd-curriculum-item {
  border-top: 1px solid #e2e8f0;
}

.rd-curriculum-toggle {
  width: 100%;
  border: 0;
  background: #f8fafc;
  color: #0f172a;
  font-size: 15px;
  font-weight: 600;
  text-align: left;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  cursor: pointer;
}

.rd-curriculum-toggle em {
  font-style: normal;
  color: #64748b;
  font-weight: 500;
}

.rd-curriculum-body {
  display: none;
  padding: 0 16px 14px;
}

.rd-curriculum-item--open .rd-curriculum-body {
  display: block;
}

.rd-curriculum-item--open .faq-chevron {
  transform: rotate(180deg);
}

.rd-lecture-list {
  margin: 0;
  padding: 0;
}

.rd-lecture-row {
  padding: 12px 0;
  border-bottom: 1px dashed #e2e8f0;
}

.rd-lecture-row.rd-lecture-enroll-trigger {
  cursor: pointer;
}

.rd-lecture-row.rd-lecture-enroll-trigger:hover {
  background: #f8fafc;
  border-radius: 8px;
}

.rd-lecture-row:last-child {
  border-bottom: 0;
}

.rd-lecture-row__col {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.rd-lecture-row__thumb {
  position: relative;
  flex: 0 0 120px;
  width: 120px;
  height: 68px;
  border-radius: 8px;
  overflow: hidden;
  background: #e2e8f0;
}

.rd-lecture-row__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.rd-lecture-row__thumb .play-icon {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(15, 23, 42, 0.35);
  color: #fff;
}

.rd-lecture-row__caption {
  flex: 1;
  min-width: 0;
}

.rd-lecture-row__caption h4 {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.35;
}

.rd-lecture-row__caption .time {
  display: inline-block;
  font-size: 13px;
  color: #64748b;
}

.rd-lecture-row__desc {
  margin-top: 8px;
  font-size: 14px;
  color: #475569;
  line-height: 1.5;
}

.rd-lecture-row__desc p {
  margin: 0;
}

.rd-coupon-field {
  display: flex;
  gap: 8px;
  margin: 12px 0 6px;
}

.rd-coupon-field input {
  flex: 1;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 8px 10px;
  font-size: 13px;
}

.rd-coupon-apply {
  border: 0;
  border-radius: 8px;
  background: #0f172a;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  padding: 8px 12px;
  cursor: pointer;
}

.rd-coupon-field input:placeholder-shown + .rd-coupon-apply {
  opacity: 0.45;
  cursor: not-allowed;
  pointer-events: none;
  background: #94a3b8;
}

.rd-coupon-note {
  font-size: 11px;
  color: #64748b;
  margin: 0 0 12px;
}

.rd-coupon-section .rd-coupon-error {
  display: block;
  margin: 4px 0 8px;
  font-size: 12px;
  color: #dc2626;
}

.price-card .rd-coupon-applied,
.price-card #coupon-applied.applied-code {
  margin: 12px 0 6px;
  padding: 10px 12px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 8px;
}

.price-card .rd-coupon-applied .coupon-code,
.price-card #coupon-applied .coupon-code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.price-card .rd-coupon-applied__label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #0f172a;
  line-height: 1.4;
}

.price-card .rd-coupon-applied__label .ctext {
  font-weight: 700;
}

.price-card .rd-coupon-remove,
.price-card .coupon-remove {
  flex-shrink: 0;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #dc2626;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.price-card .rd-coupon-remove:hover,
.price-card .coupon-remove:hover {
  color: #b91c1c;
}

.rd-latest-courses {
  margin-top: 14px;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
}

.rd-latest-courses__toggle {
  width: 100%;
  border: 0;
  background: #f8fafc;
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 14px;
  cursor: pointer;
}

.rd-latest-courses__list {
  padding: 8px 10px 10px;
}

.rd-latest-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  text-decoration: none;
  padding: 10px 6px;
  border-bottom: 1px solid #eef2f7;
  transition: background 0.15s ease;
  border-radius: 6px;
}

.rd-latest-item:last-child {
  border-bottom: 0;
}

.rd-latest-item:hover {
  background: #f8fafc;
}

/* Thumbnail wrapper */
.rd-latest-item__img-wrap {
  flex-shrink: 0;
  width: 80px;
  height: 57px;
  border-radius: 6px;
  overflow: hidden;
  background: #e2e8f0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rd-latest-item__img-wrap--empty {
  color: #94a3b8;
}

.rd-latest-item__thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: top;
}

/* Text body */
.rd-latest-item__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.rd-latest-item__title {
  display: block;
  color: #0f172a;
  font-size: 13px;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.rd-latest-item__price {
  color: #dc2626;
  font-size: 12px;
  font-weight: 600;
}

.rd-latest-loading {
  font-size: 12px;
  color: #64748b;
  padding: 6px;
}

#rd-certificate,
#rd-faq {
  scroll-margin-top: 110px;
}

/* Get a Call Back popup (etmaster.js) — scoped to v4 only */
.pg-masterclass-v4 .hide {
  display: none !important;
}

.pg-masterclass-v4 .bg-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 200;
  background: rgba(37, 37, 37, 0.7);
}

.pg-masterclass-v4 .bg-overlay.overlay-popup {
  z-index: 200;
}

.pg-masterclass-v4 .popup-form.cust-form {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 201;
  width: calc(100% - 32px);
  max-width: 688px;
  max-height: calc(100vh - 48px);
  overflow: hidden;
  margin: 0;
  padding: 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 12px 40px rgba(15, 23, 42, 0.2);
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, visibility 0.25s ease;
}

.pg-masterclass-v4 .popup-form.cust-form.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.pg-masterclass-v4 .popup-form.cust-form .cust-form__header {
  display: none;
}

.pg-masterclass-v4 .popup-form.cust-form .cust-form__content {
  position: relative;
  flex: 1 1 auto;
  overflow-y: auto;
  background: #fff;
  padding: 28px 24px 8px;
}

.pg-masterclass-v4 .popup-form.cust-form .cust-form__content h2 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #252525;
  margin: 0 40px 8px 0;
  text-transform: uppercase;
}

.pg-masterclass-v4 .popup-form.cust-form .cust-form__content p {
  font-size: 14px;
  line-height: 1.5;
  color: #4d4d4d;
  margin: 0 0 20px;
}

.pg-masterclass-v4 .popup-form.cust-form .cust-form__content form {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  margin: 0;
}

.pg-masterclass-v4 .popup-form.cust-form .cust-form__content .row {
  width: 100%;
  margin: 0 0 16px;
  box-sizing: border-box;
}

@media screen and (min-width: 768px) {
  .pg-masterclass-v4 .popup-form.cust-form .cust-form__content .row {
    width: calc(50% - 8px);
  }

  .pg-masterclass-v4 .popup-form.cust-form .cust-form__content .row:nth-last-child(-n + 2) {
    width: 100%;
  }
}

.pg-masterclass-v4 .popup-form.cust-form .cust-form__content label {
  display: block;
  width: 100%;
  color: #252525;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 8px;
  padding: 0;
}

.pg-masterclass-v4 .popup-form.cust-form .cust-form__content label.required-label::after {
  content: '*';
  display: inline-block;
  margin-left: 4px;
  color: #e81f3d;
}

.pg-masterclass-v4 .popup-form.cust-form .cust-form__content input[type='text'],
.pg-masterclass-v4 .popup-form.cust-form .cust-form__content textarea {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 10px 12px;
  border: 1px solid rgba(165, 173, 186, 0.4);
  border-radius: 4px;
  font-size: 14px;
  font-family: inherit;
  color: #252525;
  background: #fff;
}

.pg-masterclass-v4 .popup-form.cust-form .cust-form__content textarea {
  min-height: 100px;
  resize: vertical;
}

.pg-masterclass-v4 .popup-form.cust-form .cust-form__content input:focus,
.pg-masterclass-v4 .popup-form.cust-form .cust-form__content textarea:focus {
  outline: none;
  border-color: #94a3b8;
}

.pg-masterclass-v4 .popup-form.cust-form .form-error {
  color: #e81f3d;
  font-size: 11px;
  font-weight: 500;
  margin-top: 5px;
}

.pg-masterclass-v4 .popup-form.cust-form .cust-form__footer {
  flex-shrink: 0;
  padding: 8px 24px 24px;
  background: #fff;
  border-radius: 0 0 8px 8px;
}

.pg-masterclass-v4 .popup-form.cust-form .cust-form__footer.hide {
  display: none !important;
}

.pg-masterclass-v4 .popup-form.cust-form .cust-form__footer .btn-form-get-callback {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #e81f3d;
  border-radius: 4px;
  background: #e81f3d;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease;
}

.pg-masterclass-v4 .popup-form.cust-form .cust-form__footer .btn-form-get-callback:hover,
.pg-masterclass-v4 .popup-form.cust-form .cust-form__footer .btn-form-get-callback:focus {
  background: #fff;
  color: #e81f3d;
}

.pg-masterclass-v4 .popup-form.cust-form .popup-header__close {
  position: absolute;
  top: 24px;
  right: 20px;
  width: 24px;
  height: 24px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  z-index: 2;
}

.pg-masterclass-v4 .popup-form.cust-form .popup-header__close::before,
.pg-masterclass-v4 .popup-form.cust-form .popup-header__close::after {
  content: ' ';
  position: absolute;
  top: 0;
  left: 11px;
  width: 2px;
  height: 24px;
  background-color: #b6b6b6;
}

.pg-masterclass-v4 .popup-form.cust-form .popup-header__close::before {
  transform: rotate(45deg);
}

.pg-masterclass-v4 .popup-form.cust-form .popup-header__close::after {
  transform: rotate(-45deg);
}

@media screen and (min-width: 1000px) {
  .pg-masterclass-v4 .mobile-view {
    display: none !important;
  }
}

@media screen and (max-width: 999px) {
  .pg-masterclass-v4 .desktop-view {
    display: none !important;
  }

  .pg-masterclass-v4 .popup-form.cust-form .cust-form__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
    padding: 16px 20px 0;
    background: #fff;
    border-radius: 8px 8px 0 0;
  }

  .pg-masterclass-v4 .popup-form.cust-form .cust-form__header .popup-header__close {
    position: static;
    flex-shrink: 0;
  }

  .pg-masterclass-v4 .popup-form.cust-form .cust-form__content {
    padding-top: 16px;
  }
    .faq-container {
      max-width: 100% !important;
  }
}

body.pg-masterclass-v4.modal-open {
  overflow: hidden;
}

/* Payment checkout modal (oauth) — scoped to v4 pages only */
.pg-masterclass-v4 .model-container:has(.update-profile-layer.paymentSummary) {
  max-width: 762px;
  min-width: 320px;
  width: calc(100% - 32px);
  padding: 0;
  border-radius: 12px;
  overflow: hidden;
  min-height: auto;
}

.pg-masterclass-v4 .model-container:has(.update-profile-layer.paymentSummary) .model-wrapper {
  padding: 0;
}

.pg-masterclass-v4 .model-container:has(.update-profile-layer.paymentSummary) .close {
  top: 12px;
  right: 12px;
  z-index: 10;
  width: 32px;
  height: 32px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #475569 !important;
  background: #fff !important;
  border: 1px solid #cbd5e1;
  border-radius: 50%;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  opacity: 1 !important;
  box-shadow: 0 1px 4px rgba(15, 23, 42, 0.08);
}

.pg-masterclass-v4 .model-container:has(.update-profile-layer.paymentSummary) .close:hover {
  color: #0f172a !important;
  border-color: #94a3b8;
  background: #f8fafc !important;
}

.pg-masterclass-v4 .update-profile-layer.paymentSummary {
  max-width: 912px;
  padding: 0;
  border: none;
  overflow: hidden;
}

.pg-masterclass-v4 .update-profile-layer.paymentSummary #update-profile {
  width: 100%;
}

.pg-masterclass-v4 .update-profile-layer.paymentSummary .flex.column-wrapper {
  display: flex;
  margin: 0;
  background: #f8fafc;
  box-sizing: border-box;
}

.pg-masterclass-v4 .update-profile-layer.paymentSummary .flex.column-wrapper .profile-completion-layer.scrollable-forms {
  width: 56%;
  background: #ffffff;
  padding: 36px 28px 24px;
  max-height: min(85vh, 720px);
  overflow-x: hidden;
  overflow-y: auto;
}

.pg-masterclass-v4 .update-profile-layer.paymentSummary .flex.column-wrapper .profile-completion-layer.scrollable-forms .main-heading {
  padding-right: 28px;
}

.pg-masterclass-v4 .update-profile-layer.paymentSummary .flex.column-wrapper .summary-section.desktop-view {
  flex: 1;
  width: 100%;
  padding: 32px 28px 28px;
  background: #f1f5f9;
  border-left: 1px solid #e2e8f0;
  max-width: 400px;
  box-sizing: border-box;
  min-width: 400px;
}

.pg-masterclass-v4 .update-profile-layer.paymentSummary .flex.column-wrapper h3 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
  color: #0f172a;
  margin: 0 0 24px;
  text-align: left;
}

.pg-masterclass-v4 .update-profile-layer.paymentSummary .summary-section.desktop-view > h3 {
  text-align: center;
  margin-bottom: 20px;
}

.pg-masterclass-v4 .update-profile-layer.paymentSummary .input-section-main {
  display: flex;
  flex-wrap: wrap;
  gap: 0 16px;
  margin-bottom: 0;
  width: 100%;
  clear: both;
}

.pg-masterclass-v4 .update-profile-layer.paymentSummary .input-section-main .create-section.input_sec {
  flex: 0 0 calc(50% - 8px);
  max-width: calc(50% - 8px);
  margin-bottom: 22px;
  position: relative;
  min-height: 58px;
}

.pg-masterclass-v4 .update-profile-layer.paymentSummary .input-section-main.pin_mobile .pincode-field-wrap {
  flex: 0 0 calc(50% - 8px);
  max-width: calc(50% - 8px);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  min-height: 58px;
}

.pg-masterclass-v4 .update-profile-layer.paymentSummary .input-section-main.pin_mobile .pincode-field-wrap .create-section.input_sec {
  flex: none;
  width: 100%;
  max-width: 100%;
  margin-bottom: 4px;
  min-height: 58px;
}

.pg-masterclass-v4 .update-profile-layer.paymentSummary .input-section-main.pin_mobile .pincode-field-wrap .pincode-location {
  display: block;
  color: #64748b;
  font-size: 12px;
  line-height: 1.35;
  margin: 0;
  padding: 0 2px 2px;
}

.pg-masterclass-v4 .update-profile-layer.paymentSummary .input-section-main.pin_mobile .pincode-field-wrap .pincode-location:empty {
  display: none;
  margin: 0;
  padding: 0;
}

/* Pincode district/state hint — sits under pincode column, above Location field */
.pg-masterclass-v4 .update-profile-layer.paymentSummary .input-section-main.get_city_location {
  display: block;
  width: 100%;
  flex: 0 0 100%;
  max-width: 100%;
  margin-top: -50px;
  margin-bottom: 0;
  padding: 0 0 6px;
  min-height: 0;
  box-sizing: border-box;
}

.pg-masterclass-v4 .update-profile-layer.paymentSummary .input-section-main.get_city_location .pincode-location {
  display: block;
  width: calc(50% - 8px);
  max-width: calc(50% - 8px);
  color: #64748b;
  font-size: 12px;
  line-height: 1.35;
  margin: 0;
  padding: 0 2px 0;
  box-sizing: border-box;
}

.pg-masterclass-v4 .update-profile-layer.paymentSummary .input-section-main.get_city_location .pincode-location:empty {
  display: none;
}

.pg-masterclass-v4 .update-profile-layer.paymentSummary .input-section-main.get_city_location:has(.pincode-location:empty) {
  margin-top: 0;
  padding: 0;
}

.pg-masterclass-v4 .update-profile-layer.paymentSummary .input-section-main.pin_mobile:has(+ .get_city_location:not(:has(.pincode-location:empty))) {
  margin-bottom: 0;
}

.pg-masterclass-v4 .update-profile-layer.paymentSummary .input-section-main.pin_mobile:has(+ .get_city_location:not(:has(.pincode-location:empty))) .create-section.input_sec:first-child {
  margin-bottom: 4px;
}

.pg-masterclass-v4 .update-profile-layer.paymentSummary .input-section-main.get_city_location:not(:has(.pincode-location:empty)) ~ .create-section.input_sec:has(#b2boauth_location) {
  margin-top: 22px;
}

.pg-masterclass-v4 .update-profile-layer.paymentSummary .input-section-main.hidden_filed_control {
  display: none;
}

/* Pincode + mobile — same row, no overlap with row above */
.pg-masterclass-v4 .update-profile-layer.paymentSummary .input-section-main.pin_mobile {
  align-items: flex-start;
  margin-top: 2px;
  margin-bottom: 4px;
}

.pg-masterclass-v4 .update-profile-layer.paymentSummary .input-section-main.pin_mobile .create-section.input_sec {
  margin-bottom: 22px;
  min-height: 58px;
}

.pg-masterclass-v4 .update-profile-layer.paymentSummary .input-section-main.pin_mobile #pincode {
  padding-right: 12px;
}

.pg-masterclass-v4 .update-profile-layer.paymentSummary .profile-completion-layer.scrollable-forms > .create-section.input_sec {
  flex: none;
  width: 100%;
  max-width: 100%;
  margin-bottom: 22px;
  min-height: 58px;
}

.pg-masterclass-v4 .model-container .update-profile-layer.paymentSummary .input_sec {
  position: relative;
  margin-top: 0;
}

.pg-masterclass-v4 .model-container .update-profile-layer.paymentSummary .input_sec .input_txt_box {
  width: 100% !important;
  display: block !important;
  box-sizing: border-box;
  background: #fff !important;
  border: 1px solid #cbd5e1 !important;
  border-bottom: 1px solid #cbd5e1 !important;
  border-radius: 6px;
  padding: 10px 12px !important;
  height: 42px !important;
  min-height: 42px;
  color: #0f172a;
  font-size: 14px;
  line-height: 1.35;
  box-shadow: none;
  text-overflow: clip;
  margin-right: 0;
  vertical-align: baseline;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.pg-masterclass-v4 .model-container .update-profile-layer.paymentSummary .input_sec .input_txt_box:focus,
.pg-masterclass-v4 .model-container .update-profile-layer.paymentSummary .input_sec .input_txt_box:focus-visible {
  border: 1px solid #64748b !important;
  border-bottom: 1px solid #64748b !important;
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(100, 116, 139, 0.12);
}

.pg-masterclass-v4 .model-container .update-profile-layer.paymentSummary .input_sec .input_txt_box[type='number'],
.pg-masterclass-v4 .model-container .update-profile-layer.paymentSummary .input_sec #pincode {
  -moz-appearance: textfield !important;
  appearance: textfield !important;
}

.pg-masterclass-v4 .model-container .update-profile-layer.paymentSummary .input_sec .input_txt_box[type='number']::-webkit-outer-spin-button,
.pg-masterclass-v4 .model-container .update-profile-layer.paymentSummary .input_sec .input_txt_box[type='number']::-webkit-inner-spin-button,
.pg-masterclass-v4 .model-container .update-profile-layer.paymentSummary .input_sec #pincode::-webkit-outer-spin-button,
.pg-masterclass-v4 .model-container .update-profile-layer.paymentSummary .input_sec #pincode::-webkit-inner-spin-button {
  -webkit-appearance: none !important;
  margin: 0;
  display: none;
}

.pg-masterclass-v4 .model-container .update-profile-layer.paymentSummary #b2boauth_company_name,
.pg-masterclass-v4 .model-container .update-profile-layer.paymentSummary #b2boauth_designation_name,
.pg-masterclass-v4 .model-container .update-profile-layer.paymentSummary #b2boauth_location {
  font-size: 13px;
}

.pg-masterclass-v4 .model-container .update-profile-layer.paymentSummary .input_sec label {
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  max-width: calc(100% - 24px);
  font-size: 13px;
  font-weight: 500;
  color: #64748b;
  pointer-events: none;
  transition: top 0.15s ease, left 0.15s ease, font-size 0.15s ease;
  background: transparent;
  padding: 0;
  z-index: 2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.pg-masterclass-v4 .model-container .update-profile-layer.paymentSummary .input_sec .input_txt_box.valid ~ label,
.pg-masterclass-v4 .model-container .update-profile-layer.paymentSummary .input_sec .input_txt_box:focus ~ label,
.pg-masterclass-v4 .model-container .update-profile-layer.paymentSummary .input_sec input.readonly ~ label {
  top: -9px;
  left: 10px;
  right: auto;
  max-width: none;
  font-size: 11px;
  color: #475569;
  background: #fff;
  padding: 0 5px;
  z-index: 3;
}

/* Mobile: country code inside field */
.pg-masterclass-v4 .model-container .update-profile-layer.paymentSummary .input_sec.show-on-data #b2boauth_mobile_num {
  padding-left: 56px !important;
}

.pg-masterclass-v4 .model-container .update-profile-layer.paymentSummary .input_sec.show-on-data label {
  left: 56px;
}

.pg-masterclass-v4 .model-container .update-profile-layer.paymentSummary .input_sec.show-on-data .input_txt_box.valid ~ label,
.pg-masterclass-v4 .model-container .update-profile-layer.paymentSummary .input_sec.show-on-data .input_txt_box:focus ~ label {
  left: 10px;
}

.pg-masterclass-v4 .model-container .update-profile-layer.paymentSummary .input_sec.show-on-data .select-selected,
.pg-masterclass-v4 .model-container .update-profile-layer.paymentSummary .input_sec #countryCode ~ .select-selected {
  position: absolute;
  top: 11px;
  left: 10px;
  z-index: 4;
  width: 44px !important;
  min-width: 44px;
  height: 20px;
  line-height: 20px;
  margin: 0;
  padding: 0 4px 0 0;
  border: none;
  border-right: 1px solid #e2e8f0;
  border-radius: 0;
  background: transparent;
  color: #334155;
  font-size: 13px;
  font-weight: 600;
  box-shadow: none;
  pointer-events: auto;
}

.pg-masterclass-v4 .model-container .update-profile-layer.paymentSummary .input_sec.show-on-data .select-selected:after,
.pg-masterclass-v4 .model-container .update-profile-layer.paymentSummary .input_sec #countryCode ~ .select-selected:after {
  display: none;
}

.pg-masterclass-v4 .model-container .update-profile-layer.paymentSummary .input_sec.show-on-data .select-selected i,
.pg-masterclass-v4 .model-container .update-profile-layer.paymentSummary .input_sec #countryCode ~ .select-selected i {
  display: none;
}

.pg-masterclass-v4 .model-container .update-profile-layer.paymentSummary .input_sec .input_txt_box:-webkit-autofill,
.pg-masterclass-v4 .model-container .update-profile-layer.paymentSummary .input_sec .input_txt_box:-webkit-autofill:hover,
.pg-masterclass-v4 .model-container .update-profile-layer.paymentSummary .input_sec .input_txt_box:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 30px #fff inset !important;
  box-shadow: 0 0 0 30px #fff inset !important;
  -webkit-text-fill-color: #0f172a !important;
}

.pg-masterclass-v4 .update-profile-layer.paymentSummary .create-section.radio-checkbox-box.checkbox_sec {
  flex: 0 0 100%;
  max-width: 100%;
  margin: 4px 0 8px;
  min-height: auto;
}

.pg-masterclass-v4 .update-profile-layer.paymentSummary .create-section.radio-checkbox-box.checkbox_sec label {
  position: static;
  color: #334155;
  font-size: 14px;
  pointer-events: auto;
  max-width: none;
  overflow: visible;
  text-overflow: unset;
  white-space: normal;
}

.pg-masterclass-v4 .update-profile-layer.paymentSummary .create-section.radio-checkbox-box.checkbox_sec .radio-checkbox-cont label::before {
  border-color: #cbd5e1;
}

.pg-masterclass-v4 .update-profile-layer.paymentSummary .create-section.radio-checkbox-box.checkbox_sec .radio_checkbox_type:checked ~ label::before {
  border-color: #e81f3d;
  background-color: #e81f3d;
}

.pg-masterclass-v4 .update-profile-layer.paymentSummary .summary-section .order-summary .row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  margin: 14px 0;
  flex-wrap: nowrap;
}

.pg-masterclass-v4 .update-profile-layer.paymentSummary .summary-section .order-summary .row span.caption {
  flex: 1;
  min-width: 0;
  color: #334155;
  font-size: 13px;
  font-weight: 400;
  padding: 0;
}

.pg-masterclass-v4 .update-profile-layer.paymentSummary .summary-section .order-summary .row span.caption span {
  display: block;
  color: #0f172a;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.35;
  margin-bottom: 4px;
}

.pg-masterclass-v4 .update-profile-layer.paymentSummary .summary-section .order-summary .row span.caption em {
  display: block;
  font-style: normal;
  color: #64748b;
  font-size: 12px;
  line-height: 1.4;
  padding-left: 0;
  margin-top: 2px;
}

.pg-masterclass-v4 .update-profile-layer.paymentSummary .summary-section .order-summary .row strong.amount {
  flex-shrink: 0;
  color: #0f172a;
  font-weight: 700;
  font-size: 14px;
  text-align: right;
}

.pg-masterclass-v4 .update-profile-layer.paymentSummary .summary-section .order-summary .row.grand-total strong.amount {
  font-size: 18px;
  font-weight: 700;
}

.pg-masterclass-v4 .update-profile-layer.paymentSummary .summary-section .order-summary hr {
  border: 0;
  border-top: 1px solid #e2e8f0;
  margin: 8px 0;
}

.pg-masterclass-v4 .update-profile-layer.paymentSummary .summary-section .order-summary .btn.submit-button2,
.pg-masterclass-v4 .update-profile-layer.paymentSummary .profile-completion-layer .btn.submit-button2.mobile-view {
  display: block;
  width: 100%;
  margin-top: 16px;
  padding: 14px 20px;
  border: none;
  border-radius: 999px;
  background: #e81f3d;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.pg-masterclass-v4 .update-profile-layer.paymentSummary .summary-section .order-summary .btn.submit-button2:disabled,
.pg-masterclass-v4 .update-profile-layer.paymentSummary .profile-completion-layer .btn.submit-button2.mobile-view:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.pg-masterclass-v4 .update-profile-layer.paymentSummary .summary-section .order-summary .btn.submit-button2:not(:disabled):hover,
.pg-masterclass-v4 .update-profile-layer.paymentSummary .profile-completion-layer .btn.submit-button2.mobile-view:not(:disabled):hover {
  background: #c91a34;
}

.pg-masterclass-v4 .update-profile-layer.paymentSummary .order_summary_mobile.mobile-view {
  display: none;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  margin-bottom: 20px;
  overflow: hidden;
}

@media screen and (max-width: 999px) {
  .pg-masterclass-v4 .model-container:has(.update-profile-layer.paymentSummary) {
    max-width: calc(100% - 24px);
    max-height: calc(100vh - 24px);
    overflow-y: auto;
  }

  .pg-masterclass-v4 .update-profile-layer.paymentSummary .flex.column-wrapper {
    display: block;
    background: #fff;
  }

  .pg-masterclass-v4 .update-profile-layer.paymentSummary .flex.column-wrapper .profile-completion-layer.scrollable-forms {
    width: 100%;
    background: #ffffff;
    padding: 36px 28px 24px;
    max-height: min(85vh, 720px);
    overflow-x: hidden;
    overflow-y: auto;
    box-sizing: border-box;
  }

  .pg-masterclass-v4 .update-profile-layer.paymentSummary .flex.column-wrapper .summary-section.desktop-view {
    display: none !important;
  }

  .pg-masterclass-v4 .update-profile-layer.paymentSummary .order_summary_mobile.mobile-view {
    display: block;
  }

  .pg-masterclass-v4 .update-profile-layer.paymentSummary .order_summary_mobile .tabbed_clickable {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    cursor: pointer;
  }

  .pg-masterclass-v4 .update-profile-layer.paymentSummary .order_summary_mobile .tabbed_clickable span.caption span {
    display: block;
    color: #0f172a;
    font-weight: 700;
    font-size: 13px;
    line-height: 1.35;
  }

  .pg-masterclass-v4 .update-profile-layer.paymentSummary .order_summary_mobile .tabbed_clickable strong.amount {
    color: #0f172a;
    font-weight: 700;
    font-size: 14px;
    white-space: nowrap;
  }

  .pg-masterclass-v4 .update-profile-layer.paymentSummary .order_summary_mobile .summary-section {
    padding: 0 16px 16px;
  }

  .pg-masterclass-v4 .update-profile-layer.paymentSummary .order_summary_mobile .summary-section.hide {
    display: none;
  }

  .pg-masterclass-v4 .update-profile-layer.paymentSummary .order_summary_mobile.active .summary-section.hide {
    display: block;
  }

  .pg-masterclass-v4 .update-profile-layer.paymentSummary .input-section-main .create-section.input_sec {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .pg-masterclass-v4 .update-profile-layer.paymentSummary .input-section-main.pin_mobile .create-section.input_sec {
    margin-bottom: 22px;
  }

  .pg-masterclass-v4 .update-profile-layer.paymentSummary .input-section-main.get_city_location {
    margin-top: 0;
    padding-bottom: 4px;
  }

  .pg-masterclass-v4 .update-profile-layer.paymentSummary .input-section-main.pin_mobile:has(+ .get_city_location:not(:has(.pincode-location:empty))) .create-section.input_sec:first-child {
    margin-bottom: 4px;
  }

  .pg-masterclass-v4 .update-profile-layer.paymentSummary .input-section-main.get_city_location .pincode-location {
    width: 100%;
    max-width: 100%;
  }

  .pg-masterclass-v4 .update-profile-layer.paymentSummary .input-section-main.get_city_location:not(:has(.pincode-location:empty)) ~ .create-section.input_sec:has(#b2boauth_location) {
    margin-top: 18px;
  }

  .pg-masterclass-v4 .model-container .update-profile-layer.paymentSummary .input_sec.show-on-data .select-selected,
  .pg-masterclass-v4 .model-container .update-profile-layer.paymentSummary .input_sec #countryCode ~ .select-selected {
    top: 11px;
  }
}
.faq-container {
  max-width: 80%;
  margin: 0 auto;
  text-align: center;
}

section#rd-faq {
  margin: 0px !important;
  padding-bottom: 0px;
  padding-top: 60px;
}
body #rd-curriculum h2.section-title {
  margin: 24px 0 12px;
  font-size: 18px;
}


.ft-contact-list svg {
  color: var(--ET-Gold);
}

.ft-contact-item a {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.875rem;
  color: #9ca3af;
  text-decoration: none;
}

span.ft-nav-link-icon {
  color: var(--ET-Gold);
}

/* outh login css start here */

h3.oauth-main-title.text-center.text-left-mob {
  margin-top: 0px;
}

.model-container .login_with_email_section h3, h3.oauth-login-title.marg-bottom34 {
  margin-top: 0px;
}
.create-section.marg-bottom0 .sec-separate.clearfix {
  display: block;
  margin-top: 0px;
}
.login_with_email_section .create-section #check_mail_submit {
  height: auto;
  line-height: normal;
  float: none;
}
p.sub-stm.marg-bottom0 {
  font-family: "montserratregular", Arial, Helvetica, sans-serif;
}

.create-section .input_txt_box {
  font-family: "montserratregular", Arial, Helvetica, sans-serif;
}
.create-section .input_txt_box {
  font-family: "montserratregular", Arial, Helvetica, sans-serif !important;
}

h3.oauth-login-title.marg-bottom34 {
  margin-top: 0px;
}
.create-section.marg-bottom0.clearfix {
  float: none;
  display: inline-block;
  width: 100%;
}

.lgn_pop .sec-separate.clearfix {
  margin-bottom: 0px;
}

.model-container, .model-container * {
  font-family: "montserratregular", Arial, Helvetica, sans-serif;
}

.thnks-pmsg p {
  color: #4D4D4D;
}

section#guru-grandmasters-hero {
  margin-bottom: 0px !important;
  padding-bottom: 0px;
}

section#guru-grandmasters-hero .wh-stats {
  border-bottom: 0px;
}

.rd-coupon-section {
  margin-bottom: 10px;
  display: inline-block;
  width: 100%;
  position: relative;
}
#mcv4-virtual-executive-grid .es-card-date + .es-card-date {
  display: none;
}

@media (max-width: 1300px){
  .et-hero__speaker-role-card {
    max-width: max-content;
    min-width: auto;
}
section.contact-section {
  padding: 40px 0px;
}
  .contact-section .contact-divider {
    margin-top: 0px;
}

.pg-masterclass-v4 .popup-form.cust-form .popup-header__close {
  position: relative !important;
  top: 0px;
  right: 0px;
}
.pg-masterclass-v4 .popup-form.cust-form .cust-form__content h2 {
  text-align: center;
}
.speakers-grid {
  gap: 8px;
}
div#mcv4-experts-filter {
  padding-top: 30px;
}
div#mcv4-experts-filter {
  padding-top: 30px;
}

#mcv4-experts-list-grid h3.speaker-name {
  font-size: 0.80rem;
}

#mcv4-experts-list-grid p.speaker-tagline {
  font-size: 0.65rem;
}

#mcv4-experts-list-grid  .speaker-content {
  padding: 10px 10px 20px 10px;
}

#guru-masterclass-grid.mcv4-recorded-courses .et-card__title {
  font-size: 16px;
}
}
div#workshops-detail-hero {
  padding-top: 20px;
}

section#workshops-hero {
  padding-bottom: 0px !important;
}

span#coupon_err {
  bottom: -3px;
  left: 0px;
  right: 0px;
  margin: 0 auto;
  font-size: 11px;
}

.rd-coupon-section {
  position: relative;
}


@media (max-width:1200px){
  .gurus-section .container {
    padding: 0px 15px;
}
.speaker-thumb__meta-name {
  -webkit-line-clamp: 2;
}
}

/* oauth login css end here */
.model-container .thnks-pmsg h2 {
  margin-top: 30px !important;
  margin-bottom: 26px !important;
}

.create-section.clearfix.text-center {
  display: inline-block;
  width: 100%;
  padding: 0px;
  margin: 0px;
}

.model-container .sub-stm {
  margin-top: 15px;
}

.info_bg {
  background: #f8d2d2 !important;
  border: none !important;
  padding: 8px 16px !important;
  font-family: Montserrat, sans-serif;
}

.model-container .brand-icon {
  margin-bottom: 26px;
}

.info_bg.main_info.oauth-log-info {
  margin-top: -27px;
}

.create-section a.resend {
  font-size: 15px;
}
a#login_back_link {
  font-size: 12px;
}



/* oauth login css end here */


#mcv4-workshops-upcoming-grid .uw-speaker-fallback {
  padding: 10px;
  justify-content: center;
  gap: 8px;
  height: auto;
  min-height: 180px;
}

#mcv4-workshops-upcoming-grid .uw-speaker-fallback .uw-speaker-avatar-item {
  min-height: auto;
  width: 96px;
  margin-top:11px;
}

#mcv4-workshops-upcoming-grid .uw-speaker-fallback img.uw-speaker-avatar-img {
  width: 75px;
  height: 75px;
  border-radius: 8px;
  border: 1px solid rgb(7 12 32);
  margin-bottom: 8px;
}

#mcv4-workshops-upcoming-grid .uw-speaker-avatar-name {
  font-size: 11px;
}

#mcv4-workshops-upcoming-grid .uw-speaker-avatar-role {
  font-size: 10.5px;
  
}
#mcv4-workshops-upcoming-grid .uw-speaker-more {
  max-width: 100px;
  border: 1px solid #ddd !important;
  color: white;
  font-weight: 300;
  opacity: 0.8;
  padding: 2px 8px;
}

#mcv4-workshops-upcoming-grid .uw-speaker-avatar-item.uw-speaker-avatar-item--single {
  width: 100%;
  flex: 100%;
}

.unsubcribe-panel__cntent ul {
  margin: 0px !important;
  padding: 0px;
}

.unsubcribe-panel__main-cnt h2, .unsubcribe-panel__cntent ul h2 {
  font-weight: 500 !important;
  font-family: "Outfit", sans-serif !important;
  font-size: 18px !important;
}


body:has(.unsubcribe-panel__inner) header.site-header {
  background-color: #06091a;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: all 0.3s ease;
}

p.es-subtitle.mb-0 {
  margin-bottom: 0px;
  margin-top: 8px;
  font-size: 15px;
}

