/* ===============================
   WealthOfYoga - Base Styles
================================= */

:root{
  --wo-bg: #ffffff;
  --wo-text: #101828;
  --wo-muted: #667085;
  --wo-border: #e7e7ea;
  --wo-soft: #f7f7f8;
}

/* Base */
body{
  background: var(--wo-bg);
  color: var(--wo-text);
}


/* ===============================
   Light Premium Top Bar
================================= */

.topbar{
  background: #ffffff;
  border-bottom: 1px solid #e6e8ec;
  font-size: 12px;
}

.topbar .container{
  padding-top: 8px;
  padding-bottom: 8px;
}

.topbar-inner{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

/* Left */
.topbar-left{
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.topbar-pill{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  border-radius: 999px;
  background: #f5f7fa;
  border: 1px solid #e4e7ec;
  font-weight: 600;
  color: #101828;
  white-space: nowrap;
}

.topbar-pill i{
  font-size: 13px;
  color: #475467;
}

.topbar-text{
  color: #667085;
}

/* Right */
.topbar-right{
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.topbar-link{
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #344054;
  text-decoration: none;
  padding: 4px 6px;
  border-radius: 6px;
  transition: background .2s ease, color .2s ease;
}

.topbar-link i{
  font-size: 13px;
  color: #667085;
}

.topbar-link:hover{
  background: #f2f4f7;
  color: #101828;
}

.topbar-link:hover i{
  color: #101828;
}

.sep{
  color: #d0d5dd;
  font-size: 12px;
}

.topbar-mini{
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #667085;
  padding-left: 6px;
  border-left: 1px solid #e4e7ec;
}

.topbar-mini i{
  font-size: 13px;
}

/* Mobile polish */
@media (max-width: 576px){
  .topbar-inner{
    justify-content: center;
    text-align: center;
  }

  .topbar-right{
    justify-content: center;
  }
}


/* ===============================
   Premium Dark Navbar
================================= */

.wo-navbar {
  background: #0b1220; /* deep premium dark */
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);

  /* optional: gives room for bigger logo */
  padding-top: 12px;
  padding-bottom: 12px;
}

/* Logo */
.wo-logo {
  display: flex;
  align-items: center;
}

.wo-logo img {
  height: 62px;        /* ✅ increased size */
  width: auto;
  max-width: 260px;
  object-fit: contain;
  display: block;

  /* makes dark/golden logo brighter and clearer */
  filter: brightness(1.85) contrast(1.18) saturate(1.18)
    drop-shadow(0 0 5px rgba(255, 220, 120, 0.28));

  /* helps logo look sharper */
  image-rendering: -webkit-optimize-contrast;
  transform: translateZ(0);
}

/* Nav links */
.wo-nav-links .nav-link {
  color: rgba(255, 255, 255, 0.78);
  font-weight: 500;
  padding: 10px 14px;
  transition: color .2s ease;
}

.wo-nav-links .nav-link:hover {
  color: #f5c97a; /* subtle gold hover */
}

/* Active state (optional later via JS) */
.wo-nav-links .nav-link.active {
  color: #f5c97a;
}

/* Divider before CTA */
.nav-divider {
  width: 1px;
  height: 22px;
  background: rgba(255, 255, 255, 0.18);
  margin: 0 14px;
}

/* CTA Button */
.wo-cta {
  border-color: #f5c97a;
  color: #f5c97a;
  padding: 6px 14px;
}

.wo-cta:hover {
  background: #f5c97a;
  color: #0b1220;
}

/* Mobile adjustments */
@media (max-width: 991px) {
  .wo-navbar {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .wo-nav-links {
    padding-top: 12px;
  }

  .wo-nav-links .nav-link {
    padding: 10px 0;
  }

  .nav-divider {
    display: none;
  }

  .wo-cta {
    margin-top: 10px;
  }

  .wo-logo img {
    height: 54px;      /* ✅ good size on mobile */
    max-width: 220px;

    /* slightly stronger brightness for mobile visibility */
    filter: brightness(1.95) contrast(1.2) saturate(1.2)
      drop-shadow(0 0 5px rgba(255, 220, 120, 0.32));
  }
}


/* ===============================
   WOY HERO BANNER
   Premium Smooth Video Playlist
   Desktop: Full cinematic cover
   Mobile: Full video without crop
   With Left Side Quotes
================================ */

.woy-heroBanner {
  width: 100%;
  position: relative;
  overflow: hidden;
}

.woy-heroBanner__wrap {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 680px;
  overflow: hidden;
  background: #000;
}

/* Fallback image behind videos */
.woy-heroBanner__fallback {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
  z-index: 1;
}

/* Hide fallback when video starts playing */
.woy-heroBanner__wrap.is-video-playing .woy-heroBanner__fallback {
  display: none;
}

/* Video layer */
.woy-heroBanner__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;

  object-fit: cover;
  object-position: center center;

  opacity: 0;
  visibility: hidden;
  z-index: 2;

  transform: scale(1.045);
  filter: brightness(0.96) contrast(1.04) saturate(1.04);

  transition:
    opacity 1.4s ease,
    visibility 1.4s ease,
    transform 4s ease,
    filter 1.4s ease;

  will-change: opacity, transform;
}

/* Active video */
.woy-heroBanner__video.is-active {
  opacity: 1;
  visibility: visible;
  z-index: 3;
  transform: scale(1);
  filter: brightness(1) contrast(1.02) saturate(1.02);
}

/* ===============================
   Left Quote Box
================================ */

.woy-heroBanner__quoteBox {
  position: absolute;
  left: 6%;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;

  width: min(460px, 36vw);
  padding: 24px 28px;

  color: #ffffff;

  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.48) 0%,
      rgba(0, 0, 0, 0.28) 58%,
      rgba(0, 0, 0, 0.05) 100%
    );

  border-left: none;
  border-radius: 22px;

  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);

  pointer-events: none;
}

.woy-heroBanner__quoteLabel {
  display: inline-flex;
  align-items: center;
  margin-bottom: 10px;

  font-family: Calibri, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;

  color: rgba(255, 255, 255, 0.9);
}

.woy-heroBanner__quoteLabel::before {
  content: none;
  display: none;
}

.woy-heroBanner__quoteText {
  margin: 0;

  font-family: Calibri, "Segoe UI", Arial, sans-serif;
  font-size: 22px;
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;

  color: #ffffff;

  text-shadow:
    0 4px 16px rgba(0, 0, 0, 0.32),
    0 2px 4px rgba(0, 0, 0, 0.34);

  opacity: 1;
  transform: translateY(0);
  transition:
    opacity 0.5s ease,
    transform 0.5s ease,
    filter 0.5s ease;
}

.woy-heroBanner__quoteText.is-changing {
  opacity: 0;
  transform: translateY(12px);
  filter: blur(3px);
}

/* ===============================
   Mobile View
   Full video visible, no crop
   Container ratio follows video
================================ */

@media (max-width: 768px) {
  .woy-heroBanner__wrap {
    height: auto;
    min-height: unset;
    aspect-ratio: var(--woy-video-ratio, 16 / 9);
    background: #000;
  }

  .woy-heroBanner__video,
  .woy-heroBanner__fallback {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .woy-heroBanner__video {
    transform: scale(1);
  }

  .woy-heroBanner__video.is-active {
    transform: scale(1);
  }

  .woy-heroBanner__quoteBox {
    left: 14px;
    right: 14px;
    bottom: 14px;
    top: auto;
    transform: none;

    width: auto;
    padding: 12px 14px;

    border-left: none;
    border-radius: 14px;

    background:
      linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.46) 0%,
        rgba(0, 0, 0, 0.25) 68%,
        rgba(0, 0, 0, 0.05) 100%
      );
  }

  .woy-heroBanner__quoteLabel {
    margin-bottom: 6px;
    font-size: 12px;
    letter-spacing: 0.13em;
  }

  .woy-heroBanner__quoteLabel::before {
    content: none;
    display: none;
  }

  .woy-heroBanner__quoteText {
    font-family: Calibri, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
  }
}

/* Small Mobile */
@media (max-width: 480px) {
  .woy-heroBanner__wrap {
    height: auto;
    min-height: unset;
    aspect-ratio: var(--woy-video-ratio, 16 / 9);
  }

  .woy-heroBanner__video,
  .woy-heroBanner__fallback {
    object-fit: cover;
    object-position: center center;
  }

  .woy-heroBanner__quoteBox {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 10px 12px;
  }

  .woy-heroBanner__quoteLabel {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .woy-heroBanner__quoteText {
    font-size: 14px;
    line-height: 1.18;
  }
}

/* Extra Small Mobile */
@media (max-width: 360px) {
  .woy-heroBanner__wrap {
    height: auto;
    min-height: unset;
    aspect-ratio: var(--woy-video-ratio, 16 / 9);
  }

  .woy-heroBanner__quoteBox {
    bottom: 8px;
    padding: 8px 10px;
  }

  .woy-heroBanner__quoteLabel {
    display: none;
  }

  .woy-heroBanner__quoteText {
    font-size: 13px;
    line-height: 1.14;
  }
}

/* ===============================
   Premium Section Header
================================= */

.wo-section {
  background: #ffffff;
}

.wo-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}

.wo-section-title {
  font-weight: 800;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  color: #101828;
}

.wo-section-subtitle {
  margin-bottom: 0;
  color: #667085;
}

/* Premium link */
.wo-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #101828;
  font-weight: 600;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #e4e7ec;
  background: #fff;
  transition: transform .2s ease, box-shadow .2s ease;
}

.wo-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(16, 24, 40, 0.08);
}



/* ===============================
   Premium Category Cards
================================= */
.wo-card-link{
  text-decoration: none;
  display: block;
}

.wo-category-card{
  position: relative;
  height: 310px;
  border-radius: 18px;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  border: 1px solid #e4e7ec;
  transition: transform .25s ease, box-shadow .25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.wo-category-overlay{
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(11,18,32,0.20) 0%,
    rgba(11,18,32,0.35) 40%,
    rgba(11,18,32,0.78) 100%
  );
  transition: opacity .25s ease;
}

.wo-category-top{
  position: relative;
  z-index: 2;
  padding: 14px;
  display: flex;
  justify-content: flex-end;
}

.wo-icon-badge{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
}

.wo-icon-badge i{
  color: #f5c97a; /* gold accent */
  font-size: 18px;
}

.wo-category-content{
  position: relative;
  z-index: 2;
  padding: 16px;
}

.wo-category-title{
  margin: 0 0 6px 0;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.01em;
}

.wo-category-desc{
  margin: 0;
  color: rgba(255,255,255,0.80);
  font-size: 13px;
}

/* Hover */
.wo-category-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(16,24,40,0.18);
}

.wo-category-card:hover .wo-category-overlay{
  opacity: 0.92;
}

/* Responsive */
@media (max-width: 576px){
  .wo-category-card{
    height: 260px;
  }
}



/* ===============================
   Editor Picks - Premium Cards
================================= */

.wo-picks{
  background: #f7f7f8; /* soft premium light */
}

/* Product Card Shell */
.wo-product-card{
  border: 1px solid #e4e7ec;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  transition: transform .25s ease, box-shadow .25s ease;
}

.wo-product-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(16,24,40,0.14);
}

/* Media */
.wo-product-media{
  position: relative;
  display: block;
  height: 190px;
  background: #f2f4f7;
  overflow: hidden;
}

.wo-product-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.wo-product-card:hover .wo-product-media img{
  transform: scale(1.05);
}

/* Badge */
.wo-badge{
  position: absolute;
  left: 14px;
  top: 14px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(245,201,122,0.95);
  color: #0b1220;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid rgba(11,18,32,0.18);
}

.wo-badge-dark{
  background: rgba(11,18,32,0.82);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.18);
}

/* Body */
.wo-product-body{
  padding: 16px;
}

.wo-product-meta{
  display: flex;
  align-items: center;
  gap: 10px;
  color: #667085;
  font-size: 13px;
  margin-bottom: 10px;
}

.wo-dot{
  color: #d0d5dd;
}

.wo-rating i{
  color: #f5c97a;
  margin-right: 6px;
  font-size: 13px;
}

.wo-muted{
  color: #98a2b3;
}

.wo-price strong{
  color: #101828;
}

/* Title */
.wo-product-title{
  margin: 0 0 10px 0;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.wo-product-title a{
  color: #101828;
  text-decoration: none;
}

.wo-product-title a:hover{
  text-decoration: underline;
}

/* Features */
.wo-features{
  list-style: none;
  padding: 0;
  margin: 0 0 14px 0;
  display: grid;
  gap: 8px;
  font-size: 13px;
  color: #475467;
}

.wo-features li{
  display: flex;
  gap: 8px;
  align-items: flex-start;
}

.wo-features i{
  margin-top: 2px;
  color: #22c55e;
  font-size: 14px;
}

/* Actions */
.wo-product-actions{
  display: grid;
  gap: 10px;
}

.wo-btn-gold{
  background: #f5c97a;
  border: 1px solid rgba(11,18,32,0.12);
  color: #0b1220;
  font-weight: 700;
  border-radius: 14px;
  padding: 10px 12px;
}

.wo-btn-gold:hover{
  background: #f2bf65;
  color: #0b1220;
}

.wo-btn-gold i{
  margin-right: 8px;
}

.wo-btn-ghost{
  background: #ffffff;
  border: 1px solid #e4e7ec;
  color: #101828;
  font-weight: 700;
  border-radius: 14px;
  padding: 10px 12px;
}

.wo-btn-ghost:hover{
  background: #f2f4f7;
  color: #101828;
}

/* Footer note */
.wo-product-foot{
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid #f2f4f7;
}

.wo-ship{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: #667085;
}

.wo-ship i{
  color: #0b1220;
  opacity: 0.75;
}






/* ===============================
   Best Of Guides - Premium
================================= */

.wo-guides{
  background: #ffffff;
}

.wo-guide-link{
  text-decoration: none;
  display: block;
}

.wo-guide-card{
  border: 1px solid #e4e7ec;
  border-radius: 18px;
  overflow: hidden;
  background: #fff;
  transition: transform .25s ease, box-shadow .25s ease;
}

.wo-guide-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(16,24,40,0.14);
}

/* Media */
.wo-guide-media{
  position: relative;
  height: 190px;
  background: #f2f4f7;
  overflow: hidden;
}

.wo-guide-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.wo-guide-card:hover .wo-guide-media img{
  transform: scale(1.05);
}

/* Gradient overlay */
.wo-guide-gradient{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,18,32,0.10) 0%, rgba(11,18,32,0.35) 55%, rgba(11,18,32,0.85) 100%);
}

/* Badges */
.wo-guide-badges{
  position: absolute;
  left: 14px;
  bottom: 14px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  z-index: 2;
}

.wo-pill{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 700;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(245,201,122,0.95);
  color: #0b1220;
  border: 1px solid rgba(11,18,32,0.14);
}

.wo-pill i{
  font-size: 13px;
}

.wo-pill-dark{
  background: rgba(11,18,32,0.75);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.18);
}

/* Body */
.wo-guide-body{
  padding: 16px;
}

.wo-guide-meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #667085;
  margin-bottom: 10px;
}

.wo-guide-meta i{
  color: #98a2b3;
  margin-right: 6px;
}

.wo-guide-title{
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 8px 0;
  color: #101828;
}

.wo-guide-desc{
  margin: 0 0 14px 0;
  color: #475467;
  font-size: 14px;
}

/* CTA */
.wo-guide-cta{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  color: #101828;
  padding-top: 10px;
  border-top: 1px solid #f2f4f7;
}

.wo-guide-cta i{
  transition: transform .2s ease;
}

.wo-guide-card:hover .wo-guide-cta i{
  transform: translateX(2px);
}




/* ===============================
   WHY TRUST US - Premium (WOW)
================================= */

.wo-trust{
  background: radial-gradient(1200px 600px at 15% 10%, rgba(245,201,122,0.22) 0%, rgba(245,201,122,0.00) 55%),
              radial-gradient(900px 600px at 85% 30%, rgba(11,18,32,0.06) 0%, rgba(11,18,32,0.00) 55%),
              #f7f7f8;
}

/* Main Trust Cards */
.wo-trust-card{
  border: 1px solid #e4e7ec;
  border-radius: 18px;
  background: rgba(255,255,255,0.85);
  padding: 20px;
  position: relative;
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease;
  backdrop-filter: blur(6px);
}

.wo-trust-card::before{
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(140deg, rgba(245,201,122,0.35), rgba(255,255,255,0));
  opacity: 0;
  transition: opacity .25s ease;
  pointer-events: none;
}

.wo-trust-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(16,24,40,0.14);
}

.wo-trust-card:hover::before{
  opacity: 1;
}

/* Icon Badge */
.wo-trust-icon{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(245,201,122,0.22);
  border: 1px solid rgba(245,201,122,0.40);
  margin-bottom: 14px;
}

.wo-trust-icon i{
  font-size: 20px;
  color: #0b1220;
}

/* Title / Text */
.wo-trust-title{
  font-weight: 900;
  color: #101828;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
}

.wo-trust-text{
  color: #475467;
  font-size: 14px;
  margin-bottom: 14px;
}

/* Footer Tags */
.wo-trust-foot{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  font-size: 12px;
  color: #667085;
  border-top: 1px solid #f2f4f7;
  padding-top: 12px;
}

.wo-trust-foot i{
  color: #0b1220;
  opacity: 0.75;
  margin-right: 6px;
}

.wo-trust-foot .wo-dot{
  color: #d0d5dd;
}

/* Trust stats strip */
.wo-trust-stats{
  border: 1px solid #e4e7ec;
  border-radius: 18px;
  background: rgba(255,255,255,0.82);
  padding: 16px;
  backdrop-filter: blur(6px);
}

.wo-stat{
  border-radius: 14px;
  padding: 14px 10px;
  transition: background .2s ease;
}

.wo-stat:hover{
  background: #ffffff;
}

.wo-stat-num{
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.02em;
  color: #101828;
}

.wo-stat-label{
  margin-top: 4px;
  font-size: 12px;
  color: #667085;
}



/* ===============================
   Latest Articles - Premium
================================= */

.wo-articles{
  background: #ffffff;
}

.wo-article-link{
  text-decoration: none;
  display: block;
}

.wo-article-card{
  border: 1px solid #e4e7ec;
  border-radius: 18px;
  overflow: hidden;
  background: #ffffff;
  transition: transform .25s ease, box-shadow .25s ease;
}

.wo-article-card:hover{
  transform: translateY(-3px);
  box-shadow: 0 18px 45px rgba(16,24,40,0.14);
}

/* Media */
.wo-article-media{
  position: relative;
  height: 200px;
  background: #f2f4f7;
  overflow: hidden;
}

.wo-article-media img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.wo-article-card:hover .wo-article-media img{
  transform: scale(1.05);
}

.wo-article-gradient{
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11,18,32,0.10) 0%, rgba(11,18,32,0.35) 55%, rgba(11,18,32,0.85) 100%);
}

/* Category Tag */
.wo-article-top{
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 2;
}

.wo-article-tag{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(11,18,32,0.78);
  color: #ffffff;
  border: 1px solid rgba(255,255,255,0.18);
  backdrop-filter: blur(10px);
}

.wo-article-tag i{
  color: #f5c97a; /* gold accent */
  font-size: 13px;
}

/* Body */
.wo-article-body{
  padding: 16px;
}

.wo-article-meta{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  color: #667085;
  margin-bottom: 10px;
}

.wo-article-meta i{
  color: #98a2b3;
  margin-right: 6px;
}

.wo-article-title{
  margin: 0 0 8px 0;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #101828;
}

.wo-article-desc{
  margin: 0 0 14px 0;
  color: #475467;
  font-size: 14px;
}

/* CTA */
.wo-article-cta{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  color: #101828;
  padding-top: 10px;
  border-top: 1px solid #f2f4f7;
}

.wo-article-cta i{
  transition: transform .2s ease;
}

.wo-article-card:hover .wo-article-cta i{
  transform: translateX(2px);
}

/* Footer strip */
.wo-articles-foot{
  border: 1px solid #e4e7ec;
  border-radius: 18px;
  background: #f7f7f8;
  padding: 16px;
}

.wo-articles-foot-text{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #475467;
  font-weight: 700;
}

.wo-articles-foot-text i{
  color: #0b1220;
  opacity: 0.75;
}


/* ===============================
   WOY CTA (Safe Namespaced CSS)
   Only affects .woy-cta section
================================ */

.woy-cta{
  padding: 56px 0;
  background: #0b1220;
  color: #ffffff;
}

.woy-cta__box{
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 20px;
  padding: 26px;
  background: linear-gradient(90deg, rgba(255,255,255,0.05), rgba(255,255,255,0.03));
}

/* Left */
.woy-cta__kicker{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  font-weight: 700;
  font-size: 12px;
  color: rgba(255,255,255,0.92);
}

.woy-cta__kicker i{
  color: #f5c97a;
  font-size: 14px;
}

.woy-cta__title{
  margin-top: 14px;
  margin-bottom: 8px;
  font-weight: 900;
  letter-spacing: -0.02em;
}

.woy-cta__subtitle{
  margin: 0 0 14px 0;
  color: rgba(255,255,255,0.74);
  max-width: 620px;
}

/* Trust line */
.woy-cta__trust{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.72);
}

.woy-cta__trustItem i{
  color: #f5c97a;
  margin-right: 6px;
}

.woy-cta__dot{
  color: rgba(255,255,255,0.30);
}

/* Right card */
.woy-cta__formCard{
  border: 1px solid rgba(255,255,255,0.10);
  border-radius: 18px;
  padding: 16px;
  background: rgba(255,255,255,0.06);
}

.woy-cta__form{
  display: grid;
  gap: 12px;
}

/* Input */
.woy-cta__inputWrap{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
}

.woy-cta__inputWrap i{
  color: rgba(255,255,255,0.80);
  font-size: 16px;
}

.woy-cta__input{
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: #ffffff;
  font-weight: 600;
  font-size: 14px;
  padding: 2px 0;
}

.woy-cta__input::placeholder{
  color: rgba(255,255,255,0.62);
}

/* Button (NO color change on hover) */
.woy-cta__btn{
  width: 100%;
  border: none;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 900;
  background: #f5c97a;
  color: #0b1220;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease;
}

.woy-cta__btn:hover{
  /* keep same color */
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.20);
}

.woy-cta__btn i{
  margin-left: 8px;
}

/* Note */
.woy-cta__note{
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.70);
}

.woy-cta__note i{
  margin-right: 6px;
  color: rgba(255,255,255,0.75);
}

.woy-cta__link{
  color: rgba(245,201,122,0.95);
  text-decoration: none;
}

.woy-cta__link:hover{
  text-decoration: underline;
}

/* Mobile */
@media (max-width: 576px){
  .woy-cta__box{
    padding: 18px;
  }
}

/* ===============================
   WOY FOOTER (Premium / Safe)
   Only affects .woy-footer
================================ */

.woy-footer{
  padding: 70px 0 24px;
  background: #0b1220;
  color: rgba(255,255,255,0.86);
  border-top: 1px solid rgba(255,255,255,0.08);
}

/* ===============================
   BRAND (LOGO FIX)
================================ */

.woy-footer__brand{
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  margin-bottom: 18px; /* more breathing space */
}

.woy-footer__brand img{
  height: 64px;           /* ⬅️ MAIN FIX (big logo) */
  width: auto;
  max-width: 280px;
  object-fit: contain;
  display: block;

  /* helps gold logo clarity */
  image-rendering: -webkit-optimize-contrast;
  transform: translateZ(0);
}

/* Desktop: even bigger */
@media (min-width: 992px){
  .woy-footer__brand img{
    height: 72px;
    max-width: 320px;
  }
}

/* Mobile */
@media (max-width: 576px){
  .woy-footer__brand img{
    height: 56px;
    max-width: 240px;
  }
}

/* ===============================
   TEXT
================================ */

.woy-footer__text{
  margin: 0 0 18px 0;
  color: rgba(255,255,255,0.72);
  font-size: 14px;
  max-width: 420px;
}

.woy-footer__textSmall{
  margin: 0 0 12px 0;
  color: rgba(255,255,255,0.70);
  font-size: 13px;
}

/* ===============================
   TITLES
================================ */

.woy-footer__title{
  font-weight: 900;
  letter-spacing: -0.01em;
  color: #ffffff;
  margin-bottom: 14px;
}

/* ===============================
   LISTS & LINKS
================================ */

.woy-footer__list{
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.woy-footer__link{
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 13px;
}

.woy-footer__link:hover{
  text-decoration: underline;
}

/* ===============================
   SOCIAL ICONS
================================ */

.woy-footer__social{
  display: flex;
  gap: 12px;
}

.woy-footer__socialLink{
  width: 40px;
  height: 40px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.78);
  transition: transform .12s ease, box-shadow .12s ease;
}

.woy-footer__socialLink:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.20);
}

/* ===============================
   NEWSLETTER FORM
================================ */

.woy-footer__form{
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.woy-footer__inputWrap{
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
}

.woy-footer__inputWrap i{
  color: rgba(255,255,255,0.78);
  font-size: 15px;
}

.woy-footer__input{
  width: 100%;
  border: none;
  outline: none;
  background: transparent;
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  padding: 2px 0;
}

.woy-footer__input::placeholder{
  color: rgba(255,255,255,0.55);
}

.woy-footer__btn{
  width: 100%;
  border: none;
  border-radius: 14px;
  padding: 12px 14px;
  font-weight: 900;
  background: #f5c97a;
  color: #0b1220;
  cursor: pointer;
  transition: transform .12s ease, box-shadow .12s ease;
}

.woy-footer__btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0,0,0,0.20);
}

.woy-footer__btn i{
  margin-left: 8px;
}

/* ===============================
   NOTE
================================ */

.woy-footer__note{
  margin-top: 10px;
  font-size: 12px;
  color: rgba(255,255,255,0.68);
}

.woy-footer__note i{
  margin-right: 6px;
  color: rgba(255,255,255,0.75);
}

.woy-footer__linkInline{
  color: rgba(245,201,122,0.95);
  text-decoration: none;
}

.woy-footer__linkInline:hover{
  text-decoration: underline;
}

/* ===============================
   BOTTOM BAR
================================ */

.woy-footer__bottom{
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.10);
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  color: rgba(255,255,255,0.68);
  font-size: 12px;
}

.woy-footer__bottomRight{
  max-width: 720px;
}

.woy-footer__bottomRight i{
  margin-right: 6px;
  color: rgba(255,255,255,0.75);
}

.woy-footer__sep{
  margin: 0 8px;
  color: rgba(255,255,255,0.35);
}

/* ===============================
   LEGAL LINKS
================================ */

.woy-footer__legalLinks{
  margin-top: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: rgba(255,255,255,0.66);
  font-size: 12px;
}
