/* ===================================================
   Learnly Theme — Frontend CSS (Eduvalt-inspired)
   =================================================== */

/* ─── Base ──────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; height: auto; }
a { transition: color .2s; }

/* ─── Container ─────────────────────────────────── */
.lh-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}

/* ─── Highlight decoration ──────────────────────── */
.lh-highlight,
.lh-highlight-light {
  position: relative;
  display: inline-block;
  color: var(--lh-primary);
}
.lh-highlight::after,
.lh-highlight-light::after {
  content: '';
  position: absolute;
  left: 0; bottom: -4px;
  width: 100%; height: 4px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 200 8'%3E%3Cpath d='M0 6 Q50 1 100 6 Q150 11 200 6' stroke='%23C8A951' stroke-width='2.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* ─── Section commons ───────────────────────────── */
.lh-section { padding: 80px 0; background: #fff; }
.lh-section--light { background: #FFFFFF; }

.lh-section-label {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--lh-primary);
  margin-bottom: 12px;
}

.lh-section-heading {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  line-height: 1.2;
  color: #131517;
  margin: 0 0 16px;
}

.lh-section-desc {
  font-size: 16px;
  line-height: 1.7;
  color: #6B7280;
  max-width: 560px;
  margin: 0;
}

.lh-section-header { margin-bottom: 48px; }
.lh-section-header--center { text-align: center; }
.lh-section-header--center .lh-section-desc { margin: 0 auto; }
.lh-section-header--split {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 24px;
}
.lh-section-header--light .lh-section-heading { color: #fff; }

/* ─── Buttons ───────────────────────────────────── */
.lh-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .2s;
}
.lh-btn--primary {
  background: var(--lh-primary);
  color: #131517;
  border-color: var(--lh-primary);
}
.lh-btn--primary:hover {
  background: var(--lh-primary-dark);
  border-color: var(--lh-primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(var(--lh-primary-rgb,200,169,81),.4);
  color: #131517;
}
.lh-btn--ghost {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.3);
}
.lh-btn--ghost:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.6); }
.lh-btn--outline {
  background: transparent;
  color: var(--lh-primary);
  border-color: var(--lh-primary);
}
.lh-btn--outline:hover { background: var(--lh-primary); color: #131517; }

/* ─── HERO ──────────────────────────────────────── */
.lh-hero {
  background: var(--lh-dark-bg);
  position: relative;
  overflow: hidden;
  padding: 100px 0 80px;
}
.lh-hero__bg-shapes { position: absolute; inset: 0; pointer-events: none; }
.lh-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .18;
}
.lh-shape--1 { width: 500px; height: 500px; background: var(--lh-primary); top: -200px; right: -100px; }
.lh-shape--2 { width: 300px; height: 300px; background: #4F6EF7; bottom: -100px; left: -50px; }
.lh-shape--3 { width: 200px; height: 200px; background: var(--lh-primary); bottom: 40px; right: 30%; }

.lh-hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.lh-guarantee-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(var(--lh-primary-rgb,200,169,81),.12);
  border: 1px solid rgba(var(--lh-primary-rgb,200,169,81),.3);
  color: var(--lh-primary);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 24px;
}
.lh-guarantee-pill__dot {
  width: 8px; height: 8px;
  background: var(--lh-primary);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%,100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.3); }
}

.lh-hero__heading {
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin: 0 0 20px;
}
.lh-hero__desc {
  font-size: 17px;
  line-height: 1.75;
  color: rgba(255,255,255,.7);
  margin: 0 0 36px;
  max-width: 500px;
}
.lh-hero__actions { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
.lh-phone-icon { font-size: 16px; }

.lh-hero__visual { position: relative; }
.lh-hero__img-wrap { border-radius: 20px; overflow: hidden; aspect-ratio: 4/3; }
.lh-hero__img-placeholder {
  width: 100%;
  min-height: 340px;
  background: linear-gradient(135deg, rgba(var(--lh-primary-rgb,200,169,81),.15), rgba(var(--lh-primary-rgb,200,169,81),.05));
  border: 2px dashed rgba(var(--lh-primary-rgb,200,169,81),.3);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lh-hero__img-inner { text-align: center; color: rgba(var(--lh-primary-rgb,200,169,81),.7); }
.lh-hero__img-icon { font-size: 52px; display: block; margin-bottom: 12px; }
.lh-hero__img-inner p { font-size: 14px; color: rgba(255,255,255,.4); margin: 0; }

.lh-stat-float {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 16px 48px rgba(0,0,0,.25);
}
.lh-stat-float--tl { top: -20px; left: -30px; animation: float-a 4s ease-in-out infinite; }
.lh-stat-float--br { bottom: -20px; right: -20px; animation: float-a 4s ease-in-out 2s infinite; }
@keyframes float-a { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.lh-stat-float__icon { font-size: 28px; line-height: 1; }
.lh-stat-float__num { font-size: 20px; font-weight: 800; color: #131517; line-height: 1; }
.lh-stat-float__lbl { font-size: 12px; color: #9CA3AF; margin-top: 2px; }

/* ─── BRANDS ────────────────────────────────────── */
.lh-brands { background: #fff; border-bottom: 1px solid #F0F0F0; padding: 28px 0; }
.lh-brands__track {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: clamp(24px, 5vw, 64px);
  flex-wrap: wrap;
}
.lh-brand span { font-size: 18px; font-weight: 800; color: #C4C4C4; letter-spacing: -.5px; transition: color .2s; }
.lh-brand:hover span { color: var(--lh-primary); }

/* ─── ABOUT ─────────────────────────────────────── */
.lh-about { background: #fff; }
.lh-about__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.lh-about__imgs { position: relative; min-height: 460px; }

.lh-img-placeholder {
  display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
  background: #F7F8FA; border: 2px dashed #DDD; border-radius: 16px; color: #AAA; font-size: 13px;
}
.lh-img-placeholder span { font-size: 32px; }

.lh-about__img-main { width: 75%; aspect-ratio: 3/4; border-radius: 16px; }
.lh-about__img-inset {
  position: absolute; bottom: 0; right: 0; width: 48%; aspect-ratio: 1;
  border-radius: 14px; border: 6px solid #fff; box-shadow: 0 12px 40px rgba(0,0,0,.12);
}
.lh-about__exp-badge {
  position: absolute; top: 40px; right: 0;
  background: var(--lh-primary); color: #131517; border-radius: 14px; padding: 16px 20px;
  text-align: center; box-shadow: 0 8px 32px rgba(var(--lh-primary-rgb,200,169,81),.5);
}
.lh-about__exp-num { font-size: 36px; font-weight: 800; line-height: 1; }
.lh-about__exp-num sup { font-size: 18px; vertical-align: super; }
.lh-about__exp-lbl { font-size: 12px; font-weight: 600; line-height: 1.3; margin-top: 4px; }

.lh-about__desc { font-size: 16px; line-height: 1.75; color: #6B7280; margin-bottom: 28px; }

.lh-checklist { list-style: none; padding: 0; margin: 0 0 32px; display: flex; flex-direction: column; gap: 12px; }
.lh-checklist li { display: flex; align-items: center; gap: 12px; font-size: 15px; color: #374151; font-weight: 500; }
.lh-check {
  width: 24px; height: 24px; background: var(--lh-primary); color: #131517;
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}

.lh-about__stats { display: flex; padding-top: 24px; border-top: 1px solid #F0F0F0; }
.lh-about__stat { flex: 1; text-align: center; }
.lh-about__stat-num { font-size: 32px; font-weight: 800; color: #131517; }
.lh-about__stat-lbl { font-size: 13px; color: #9CA3AF; margin-top: 4px; }
.lh-about__stat-sep { width: 1px; background: #E5E7EB; margin: 0 16px; }

/* ─── COURSE FILTER TABS ────────────────────────── */
.lh-course-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.lh-filter {
  padding: 8px 20px; border-radius: 50px; border: 1.5px solid #E5E7EB;
  background: #fff; font-size: 13px; font-weight: 600; color: #6B7280; cursor: pointer; transition: all .2s;
}
.lh-filter.active, .lh-filter:hover { background: var(--lh-primary); border-color: var(--lh-primary); color: #131517; }

/* ─── COURSE CARDS ──────────────────────────────── */
.lh-courses-grid .wp-block-post,
.lh-course-card {
  background: #fff;
  border-radius: 14px;
  border: 1px solid #E8E8EE;
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
.lh-courses-grid .wp-block-post:hover,
.lh-course-card:hover { box-shadow: 0 12px 40px rgba(0,0,0,.1); transform: translateY(-4px); }

.lh-courses-grid .wp-block-post-featured-image img { height: 200px; width: 100%; object-fit: cover; display: block; }

.lh-courses-grid .wp-block-post-terms a,
.lh-course-card__cat .wp-block-post-terms a {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
  color: var(--lh-primary); text-decoration: none; background: #FDF5E0; padding: 3px 10px; border-radius: 20px; display: inline-block;
}
.lh-courses-grid .wp-block-post-title a { font-size: 16px; font-weight: 600; color: #131517; text-decoration: none; line-height: 1.4; display: block; margin: 8px 0; }
.lh-courses-grid .wp-block-post-title a:hover { color: var(--lh-primary); }
.lh-courses-grid .wp-block-post-excerpt p { font-size: 13px; color: #9CA3AF; line-height: 1.5; margin: 0; }
.lh-course-card__link .wp-block-read-more { font-size: 13px; color: var(--lh-primary); font-weight: 600; text-decoration: none; }

/* ─── CATEGORIES GRID ───────────────────────────── */
.lh-cats-filter { display: flex; gap: 8px; flex-wrap: wrap; justify-content: center; margin-bottom: 40px; }
.lh-cat-pill {
  padding: 8px 22px; border-radius: 50px; border: 1.5px solid #E5E7EB;
  background: #fff; font-size: 13px; font-weight: 600; color: #6B7280; text-decoration: none; transition: all .2s;
}
.lh-cat-pill.active, .lh-cat-pill:hover { background: var(--lh-primary); border-color: var(--lh-primary); color: #131517; }

.lh-cats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 20px; }
.lh-cat-card {
  display: flex; flex-direction: column; align-items: center; gap: 12px; padding: 32px 20px;
  background: #fff; border: 1.5px solid #EBEBEB; border-radius: 16px;
  text-decoration: none; text-align: center; transition: all .2s;
}
.lh-cat-card:hover { background: var(--lh-primary); border-color: var(--lh-primary); box-shadow: 0 12px 32px rgba(var(--lh-primary-rgb,200,169,81),.35); transform: translateY(-4px); }
.lh-cat-card__icon { font-size: 36px; line-height: 1; }
.lh-cat-card__name { font-size: 15px; font-weight: 700; color: #131517; margin: 0; }
.lh-cat-card__count { font-size: 12px; color: #9CA3AF; font-weight: 500; }
.lh-cat-card:hover .lh-cat-card__name,
.lh-cat-card:hover .lh-cat-card__count { color: #131517; }

/* ─── TESTIMONIALS ──────────────────────────────── */
.lh-testimonials { background: var(--lh-dark-bg); padding: 80px 0; }
.lh-testimonials .lh-section-heading { color: #fff; }
.lh-testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.lh-testi-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px; padding: 32px 28px; transition: all .2s;
}
.lh-testi-card--active { background: rgba(var(--lh-primary-rgb,200,169,81),.12); border-color: rgba(var(--lh-primary-rgb,200,169,81),.3); }
.lh-testi-card__quote { font-size: 80px; line-height: .6; color: var(--lh-primary); opacity: .6; font-family: Georgia,serif; margin-bottom: 20px; }
.lh-testi-card__text { font-size: 15px; line-height: 1.75; color: rgba(255,255,255,.75); margin: 0 0 28px; font-style: italic; }
.lh-testi-card__author { display: flex; align-items: center; gap: 14px; }
.lh-testi-card__avatar {
  width: 44px; height: 44px; background: var(--lh-primary); color: #131517; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 14px; flex-shrink: 0;
}
.lh-testi-card__author strong { display: block; font-size: 15px; color: #fff; font-weight: 700; }
.lh-testi-card__author span { font-size: 12px; color: #9CA3AF; }

/* ─── INSTRUCTORS ───────────────────────────────── */
.lh-instructors-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.lh-instructor-card {
  background: #fff; border: 1.5px solid #EBEBEB; border-radius: 16px;
  overflow: hidden; text-align: center; transition: all .2s;
}
.lh-instructor-card:hover { box-shadow: 0 16px 48px rgba(0,0,0,.1); transform: translateY(-4px); border-color: var(--lh-primary); }
.lh-instructor-card__img {
  height: 180px; background: linear-gradient(135deg, #F7F8FA, #EDEDED);
  display: flex; align-items: center; justify-content: center;
}
.lh-instructor-card__avatar {
  width: 72px; height: 72px; background: var(--lh-primary); color: #131517; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 800; border: 4px solid #fff; box-shadow: 0 4px 16px rgba(var(--lh-primary-rgb,200,169,81),.4);
}
.lh-instructor-card__body { padding: 20px 16px 24px; }
.lh-instructor-card__role { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--lh-primary); display: block; margin-bottom: 6px; }
.lh-instructor-card__name { font-size: 17px; font-weight: 700; color: #131517; margin: 0 0 16px; }
.lh-instructor-card__socials { display: flex; gap: 8px; justify-content: center; }
.lh-social-icon {
  width: 32px; height: 32px; background: #F7F8FA; border: 1px solid #E5E7EB; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: #6B7280; text-decoration: none; transition: all .15s;
}
.lh-social-icon:hover { background: var(--lh-primary); color: #131517; border-color: var(--lh-primary); }

/* ─── CTA JOIN ──────────────────────────────────── */
.lh-cta-join { background: var(--lh-dark-bg); padding: 80px 0; position: relative; overflow: hidden; }
.lh-cta-join__shapes { position: absolute; inset: 0; pointer-events: none; }
.lh-cjshape { position: absolute; border-radius: 50%; filter: blur(100px); opacity: .15; }
.lh-cjshape--1 { width: 400px; height: 400px; background: var(--lh-primary); top: -150px; left: -80px; }
.lh-cjshape--2 { width: 300px; height: 300px; background: #4F6EF7; bottom: -100px; right: -60px; }
.lh-cta-join__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; position: relative; }
.lh-cta-join__content { color: #fff; }
.lh-cta-join__content p { font-size: 16px; line-height: 1.7; color: rgba(255,255,255,.65); margin: 16px 0 0; }
.lh-cta-join__heading { font-size: clamp(28px, 4vw, 42px); font-weight: 700; color: #fff; line-height: 1.2; margin: 8px 0 0; }
.lh-cta-join__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.lh-cta-join__stat { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: 28px 24px; text-align: center; }
.lh-cta-join__stat-num { font-size: 32px; font-weight: 800; color: var(--lh-primary); line-height: 1; }
.lh-cta-join__stat-lbl { font-size: 13px; color: rgba(255,255,255,.5); margin-top: 6px; }

/* ─── BLOG CARDS ────────────────────────────────── */
.lh-blog-grid .wp-block-post,
.lh-blog-card {
  background: #fff; border-radius: 14px; border: 1px solid #EBEBEB;
  overflow: hidden; transition: box-shadow .2s, transform .2s;
}
.lh-blog-grid .wp-block-post:hover,
.lh-blog-card:hover { box-shadow: 0 12px 36px rgba(0,0,0,.1); transform: translateY(-4px); }
.lh-blog-grid .wp-block-post-featured-image img { height: 200px; width: 100%; object-fit: cover; display: block; }
.lh-blog-card__cat .wp-block-post-terms a {
  font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--lh-primary);
  text-decoration: none; background: #FDF5E0; padding: 3px 10px; border-radius: 20px; display: inline-block; margin-bottom: 10px;
}
.lh-blog-card__title .wp-block-post-title a { font-size: 17px; font-weight: 700; color: #131517; text-decoration: none; line-height: 1.4; display: block; margin-bottom: 12px; }
.lh-blog-card__title .wp-block-post-title a:hover { color: var(--lh-primary); }
.lh-blog-card__meta { font-size: 12px; color: #9CA3AF; padding-top: 12px; border-top: 1px solid #F3F4F6; }

/* ─── NEWSLETTER ────────────────────────────────── */
.lh-newsletter { background: linear-gradient(135deg, var(--lh-primary), var(--lh-primary-dark)); padding: 60px 0; }
.lh-newsletter__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; flex-wrap: wrap; }
.lh-newsletter__heading { font-size: clamp(24px, 3vw, 34px); font-weight: 700; color: #131517; margin: 0 0 8px; line-height: 1.2; }
.lh-newsletter__content p { font-size: 15px; color: rgba(0,0,0,.6); margin: 0; }
.lh-newsletter__form { display: flex; gap: 12px; flex-wrap: wrap; }
.lh-newsletter__input {
  flex: 1; min-width: 280px; padding: 14px 20px; border: 2px solid rgba(0,0,0,.12);
  border-radius: 50px; font-size: 14px; background: rgba(255,255,255,.8); outline: none; transition: border-color .2s;
}
.lh-newsletter__input:focus { border-color: #131517; background: #fff; }
.lh-newsletter .lh-btn--primary { background: #131517; border-color: #131517; color: #fff; white-space: nowrap; }
.lh-newsletter .lh-btn--primary:hover { background: #2D2D2D; border-color: #2D2D2D; }

/* ─── HEADER ────────────────────────────────────── */
header.wp-block-template-part {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.97) !important;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,.08);
}
.lh-topbar { background: var(--lh-dark-bg); padding: 9px 0; font-size: 12px; width: 100%; }
.lh-nav { width: 100%; }
.lh-topbar__inner { display: flex; justify-content: space-between; align-items: center; color: rgba(255,255,255,.55); }
.lh-topbar a { color: rgba(255,255,255,.55); text-decoration: none; }
.lh-topbar a:hover { color: var(--lh-primary); }
.lh-topbar__contact, .lh-topbar__socials { display: flex; gap: 20px; align-items: center; }
.lh-topbar__socials a { font-size: 13px; font-weight: 700; width: 24px; height: 24px; display: inline-flex; align-items: center; justify-content: center; }

.lh-nav { padding: 14px 0; }
.lh-nav__inner { display: flex; justify-content: space-between; align-items: center; gap: 32px; }
.lh-nav__logo { font-size: 20px; font-weight: 800; color: #131517; text-decoration: none; display: flex; align-items: center; gap: 6px; }
.lh-nav__logo .lh-logo-dot { color: var(--lh-primary); }
.lh-nav__ctas { display: flex; gap: 12px; align-items: center; }
.lh-nav-login { font-size: 14px; font-weight: 600; color: #374151; text-decoration: none; padding: 8px 16px; transition: color .15s; }
.lh-nav-login:hover { color: var(--lh-primary); }
.lh-nav-register { font-size: 13px; font-weight: 700; color: #131517; background: var(--lh-primary); padding: 9px 22px; border-radius: 50px; text-decoration: none; transition: all .2s; }
.lh-nav-register:hover { background: var(--lh-primary-dark); box-shadow: 0 4px 16px rgba(var(--lh-primary-rgb,200,169,81),.4); }

.wp-block-navigation a { color: #374151; text-decoration: none; font-weight: 500; font-size: 14px; }
.wp-block-navigation a:hover { color: var(--lh-primary); }

/* Classic wp_nav_menu inside header */
.lh-nav__menu-wrap { margin: 0; }
.lh-nav__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}
.lh-nav__menu li { position: relative; }
.lh-nav__menu > li > a {
  display: block;
  padding: 8px 14px;
  font-size: 14px;
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  border-radius: 8px;
  transition: background .15s, color .15s;
  white-space: nowrap;
}
.lh-nav__menu > li > a:hover,
.lh-nav__menu > li.current-menu-item > a,
.lh-nav__menu > li.current_page_item > a {
  background: rgba(200,169,81,.08);
  color: var(--lh-primary);
}
/* Dropdown */
.lh-nav__menu .sub-menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 200px;
  background: #fff;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0,0,0,.1);
  padding: 8px;
  list-style: none;
  margin: 0;
  z-index: 200;
}
.lh-nav__menu li:hover > .sub-menu { display: block; }
.lh-nav__menu .sub-menu a {
  display: block;
  padding: 8px 12px;
  font-size: 13px;
  color: #374151;
  text-decoration: none;
  border-radius: 8px;
  transition: background .15s;
}
.lh-nav__menu .sub-menu a:hover { background: #F7F8FA; color: var(--lh-primary); }

/* ─── FOOTER ────────────────────────────────────── */
footer.wp-block-template-part { background: var(--lh-dark-bg) !important; }
footer.wp-block-template-part a { color: #9CA3AF; text-decoration: none; transition: color .15s; }
footer.wp-block-template-part a:hover { color: var(--lh-primary); }

.lh-footer { background: var(--lh-dark-bg); padding: 60px 0 0; }
.lh-footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.06); }
.lh-footer__brand-name { font-size: 20px; font-weight: 800; color: #fff; margin: 0 0 16px; }
.lh-footer__brand p { font-size: 14px; line-height: 1.7; color: #6B7280; margin: 0 0 24px; max-width: 280px; }
.lh-footer__socials { display: flex; gap: 10px; }
.lh-footer__heading { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: #fff; margin: 0 0 20px; }
.lh-footer__links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.lh-footer__links a { font-size: 14px; }
.lh-footer__hours p { font-size: 13px; color: #6B7280; margin: 6px 0; line-height: 1.5; }
.lh-footer__hours strong { color: #9CA3AF; display: block; }
.lh-footer__bottom { display: flex; justify-content: space-between; align-items: center; padding: 20px 0; font-size: 13px; color: #4B5563; flex-wrap: wrap; gap: 8px; }
.lh-footer__bottom a { color: #4B5563; }
.lh-footer__bottom a:hover { color: var(--lh-primary); }

/* ─── Post content ──────────────────────────────── */
.wp-block-post-content { font-size: 17px; line-height: 1.8; color: #374151; }
.wp-block-post-content h2,
.wp-block-post-content h3 { color: #131517; }
.wp-block-post-content a { color: var(--lh-primary); }
.wp-block-post-content blockquote { border-left: 4px solid var(--lh-primary); margin-left: 0; padding: 16px 24px; background: #FDFAF0; border-radius: 0 10px 10px 0; }

/* ─── WP pagination ─────────────────────────────── */
.wp-block-query-pagination { display: flex; justify-content: center; gap: 6px; margin-top: 48px; }
.wp-block-query-pagination a,
.wp-block-query-pagination .page-numbers {
  display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px;
  padding: 0 12px; border-radius: 50px; border: 1.5px solid #E5E7EB;
  font-size: 14px; font-weight: 600; color: #374151; text-decoration: none; transition: all .15s;
}
.wp-block-query-pagination a:hover { background: var(--lh-primary); color: #131517; border-color: var(--lh-primary); }
.wp-block-query-pagination .current { background: var(--lh-primary); color: #131517; border-color: var(--lh-primary); }

/* ─── Responsive ────────────────────────────────── */
@media (max-width: 1024px) {
  .lh-hero__grid { grid-template-columns: 1fr; }
  .lh-hero__visual { display: none; }
  .lh-instructors-grid { grid-template-columns: repeat(2, 1fr); }
  .lh-testi-grid { grid-template-columns: 1fr; }
  .lh-cta-join__inner { grid-template-columns: 1fr; gap: 48px; }
  .lh-footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 768px) {
  .lh-about__grid { grid-template-columns: 1fr; }
  .lh-about__imgs { min-height: 280px; }
  .lh-about__img-inset { display: none; }
  .lh-section-header--split { flex-direction: column; align-items: flex-start; }
  .lh-newsletter__inner { flex-direction: column; align-items: flex-start; }
  .lh-footer__grid { grid-template-columns: 1fr; }
  .wp-block-post-template.is-flex-container { grid-template-columns: 1fr 1fr !important; }
}
@media (max-width: 480px) {
  .lh-hero { padding: 70px 0 60px; }
  .lh-instructors-grid { grid-template-columns: 1fr 1fr; }
  .lh-cats-grid { grid-template-columns: repeat(2, 1fr); }
  .lh-cta-join__stats { grid-template-columns: 1fr 1fr; }
  .wp-block-post-template.is-flex-container { grid-template-columns: 1fr !important; }
}
