/* ================================
   GLOBAL BASE
   (No html background; desktop body frame only)
=================================== */
body{
  font-family:"Lato", Arial, Helvetica, sans-serif;
  color:#222;
  margin:0;
  padding:0 0 4em 0;         /* space above footer */
  line-height:1.7;
  background-repeat:no-repeat;
}
body {
  font-family:"Lato", Arial, Helvetica, sans-serif;
  font-size-adjust: 0.5;
}

/* Desktop: dark outer frame outside wrapper */
@media (min-width:901px){
  body{ background:#88aabb; }
}
/* Mobile/tablet: neutral */
@media (max-width:900px){
  body{ background:#fff; }
}
.abigail {
  display: none;
}

img{max-width:100%;height:auto;display:block;margin:0 auto;}
a{color:#0077cc;text-decoration:none;}
a:hover{text-decoration:underline;}

/* Headings */
h1{font-size:clamp(1.9rem,2.6vw,2.4rem);margin-top:.5em;line-height:1.3;font-weight:600;color:#003a66;}
h2{font-size:clamp(1.3rem,1.8vw,1.6rem);margin-top:1.2em;line-height:1.3;font-weight:600;color:#003a66;}
h3{font-size:clamp(1.1rem,1.5vw,1.3rem);margin-top:1em;line-height:1.3;font-weight:600;color:#003a66;}
h4{font-size:1.05rem;margin-top:.8em;line-height:1.35;font-weight:600;color:#003a66;}


/* ================================
   NAVIGATION (P7 DMM neutralize)
=================================== */
.top-navigation{
  background:#7BA4C1;border-bottom:none;box-shadow:0 2px 6px rgba(0,0,0,.15);
  position:relative;z-index:9;
}
.menu-top-wrapper{display:flex;justify-content:center;max-width:100%;margin:0 auto;}
#p7DMMu_1{list-style:none !important;margin:0 auto !important;padding:0 !important;}
@media (min-width:769px){
  #p7DMMu_1{display:flex !important;justify-content:center !important;align-items:center !important;flex-wrap:wrap;gap:20px;}
  #p7DMMu_1>li{float:none !important;}
}
#p7DMM_1,#p7DMM_1 ul,#p7DMM_1 li,#p7DMMu_1,.p7DMM01,.p7DMM01-menu{
  border:0 !important;background:transparent !important;
}


/* ================================
   CONTENT WRAPPER (light blue column)
   — sits under ALL content
=================================== */
.content-wrapper{
  position:relative;
  max-width:1120px;
  width:100%;
  margin:0 auto;
  background:#e9f3fb;                      /* light-blue column */
  border-radius:14px;
  box-shadow:0 8px 28px rgba(13,34,64,.08);
  padding:18px 14px;                        /* desktop gutters */
  box-sizing:border-box;
}

/* Mobile full-bleed & safe gutters for children */
@media (max-width:768px){
  .content-wrapper{
    max-width:none;width:100%;margin:0;border-radius:0;box-shadow:none;padding:0;
  }
  .content-wrapper > :where(.content, .panel-like, .panel-like--tint, .panel, .card){
    padding-inline:clamp(12px,4vw,18px); box-sizing:border-box;
  }
}


/* ================================
   WHITE / TINT / OUTLINE CARDS
=================================== */
.content,.main-body,.container,.panel-like{
  background:#fff;
  border-radius:8px;
  box-shadow:0 2px 6px rgba(0,0,0,.10);
  box-sizing:border-box;
  max-width:1100px;width:90%;
  margin:20px auto;padding:20px 30px;
}
.content p{margin-bottom:1.2em;}
.content+.content{margin-top:2.5em;}
@media (max-width:900px){.content,.container{width:95%;padding:15px;}}

.panel-like{display:block;border-radius:8px;}
.panel-like--compact{padding:14px;}

/* Tint (kept light blue to match wrapper layer but still distinct) */
.panel-like--tint {
  background:#f9f9f9;   /* neutral, no more blue-on-blue */
  border:1px solid #ddd;
  border-radius:10px;
  box-shadow:0 2px 6px rgba(0,0,0,.06);
  padding:24px 32px;
  margin:20px auto;
}


/* Outline — works with .panel-like--outline alone */
.panel-like--outline{
  background:#fff;
  border:1px solid #cdd9e5;
  border-radius:10px;
  box-shadow:0 4px 12px rgba(0,0,0,.08);
  padding:24px 32px;
  margin:20px auto;
}


/* ================================
   HERO (with <picture>)
=================================== */
.hero{
  position:relative;height:55vh;min-height:360px;
  display:flex;align-items:center;justify-content:center;
  text-align:center;color:#fff;margin:0 auto;width:100%;overflow:hidden;
}
.hero picture,.hero img{
  position:absolute;inset:0;width:100%;height:100%;max-width:100%;object-fit:cover;z-index:0;
}
.hero::before{content:"";position:absolute;inset:0;background:rgba(0,0,0,.45);z-index:1;}
.hero-overlay{position:relative;z-index:2;max-width:800px;padding:1rem;}
.hero h1{font-size:2.8rem;font-weight:700;letter-spacing:1px;margin:.5rem 0;color:#fff;text-shadow:3px 3px 6px rgba(0,0,0,.75);}
.hero p{font-size:1.3rem;font-weight:400;margin:.5rem 0;color:#fff;text-shadow:3px 3px 6px rgba(0,0,0,.75);}
@media (max-width:991px){.hero{height:42vh;min-height:260px}.hero h1{font-size:2.2rem}.hero p{font-size:1.1rem}}
@media (max-width:600px){.hero h1{font-size:1.8rem}.hero p{font-size:1rem}}

/* ================================
   BUTTONS (site-wide defaults)
=================================== */
.btn {
  display: inline-block;
  background: #0077cc;
  color: #fff;
  padding: .9rem 1.4rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1rem;
  transition: background .25s ease, transform .2s ease;
  border: 2px solid transparent;
}

.btn:hover {
  background: #005fa3;
  transform: translateY(-2px);
}

/* Variants */
.btn-primary {
  background: #2d6fb3;
  color: #fff;
}

.btn-ghost {
  background: #fff;
  border: 2px solid #2d6fb3;
  color: #2d6fb3;
}

/* Hero-specific overrides */
.hero .btn {
  margin-top: 1.5rem;
  font-size: 1.2rem;
  padding: 1.1rem 2rem;
}
@media (max-width:991px) {
  .hero .btn { font-size:1.05rem; padding:.9rem 1.6rem; margin-top:1.2rem; }
}
@media (max-width:600px) {
  .hero .btn { font-size:1rem; padding:.8rem 1.4rem; margin-top:1rem; }
  .btn-desktop { display:none !important; }
  .btn-mobile { display:inline-block !important; }
}

/* ================================
   CTA CARD BUTTONS (scoped only)
=================================== */
.cta-card .cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.cta-card .cta-buttons .btn {
  padding: 6px 14px;
  font-size: 0.9rem;
  border-radius: 5px;
}


/* ================================
   INTRO BAND (under hero)
=================================== */
.intro-band .panel-body{
  display:grid;grid-template-columns:1.4fr .8fr;align-items:center;gap:14px;
}
.intro-title{margin:0 0 6px;font-size:clamp(1.15rem,1.6vw + .6rem,1.8rem);line-height:1.2;}
.intro-list{
  margin:0;padding:0;list-style:none;
  display:flex;flex-wrap:wrap;gap:6px 14px;font-size:.95rem;
}
.intro-list li::before{content:"✓";color:#2d6fb3;margin-right:8px;font-weight:700;}
.intro-cta{display:flex;gap:10px;justify-content:flex-end;flex-wrap:wrap;}
@media (max-width:700px){
  .intro-band .panel-body{grid-template-columns:1fr}
  .intro-cta{justify-content:flex-start}
}


/* ================================
   FEATURE ROW (text | image)
=================================== */
.ofc-feature-row{
  display:grid;
  grid-template-columns:1fr 1fr;       /* equal halves desktop */
  gap:24px;
  margin:2em auto;
  align-items:center;
  max-width:1200px;
  padding-inline:clamp(12px,4vw,24px);
  box-sizing:border-box;
}
.ofc-card{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:12px;
  box-shadow:0 6px 18px rgba(0,0,0,.15);
  box-sizing:border-box;
  min-width:0;
}
.ofc-card--text{padding:1.5em 1.2em;}
.ofc-card--image{
  padding:0;overflow:hidden;display:flex;align-items:center;justify-content:center;
}
.ofc-card--image img{
  display:block;width:100%;height:auto;border-radius:10px;object-fit:cover;
}
@media (max-width:900px){
  .ofc-feature-row{grid-template-columns:1fr;gap:16px;}
}


/* ================================
   FREE TUTORIALS (video + text)
=================================== */
.ytp-grid{
  display:grid;
  grid-template-columns:1fr 1fr;   /* equal halves */
  gap:28px;                        /* more space between video & text */
  align-items:flex-start;          /* text aligned to top */
}
.ytp-grid > div{ min-width:0; }

@media (max-width:900px){
  .ytp-grid{ display:block; }
  .ytp-side{ margin-top:14px; }
}

/* ================================
   VIDEO CARD (generic)
=================================== */
.video-container{
  position:relative;width:100%;max-width:720px;margin:0 auto;
  aspect-ratio:16/9;background:#000;cursor:pointer;overflow:hidden;border-radius:8px;
  box-shadow:0 4px 12px rgba(0,0,0,.3);
}
.video-container img{width:100%;height:100%;object-fit:cover;display:block;}
.video-container iframe{position:absolute;inset:0;width:100%;height:100%;border:0;}
.video-container .play-overlay{
  position:absolute;top:50%;left:50%;width:80px;height:80px;background:rgba(0,0,0,.6);
  border-radius:50%;transform:translate(-50%,-50%);
}
.video-container .play-overlay::after{
  content:"";position:absolute;top:50%;left:55%;transform:translate(-50%,-50%);
  width:0;height:0;border-left:24px solid #fff;border-top:14px solid transparent;border-bottom:14px solid transparent;
}
.video-container:hover .play-overlay{background:rgba(255,0,0,.8);}
.video-container img{ width:100%; height:100%; object-fit:cover; display:block; margin:0; }


/* ================================
   REVIEWS STRIP (compact)
=================================== */
.reviews{max-width:900px;margin:10px auto;padding:0;}
.reviews h2{text-align:center;font-size:1.1rem;margin:0 0 6px;}
.reviews-container{--gap:10px;display:flex;gap:var(--gap);align-items:stretch;overflow:hidden;}
.review-score,.review-card{
  width:calc((100% - (var(--gap) * 4))/5);
  box-sizing:border-box;background:#fff;border:1px solid rgba(0,0,0,.08);
  border-radius:6px;padding:8px;box-shadow:0 1px 3px rgba(0,0,0,.06);
}
.review-score{text-align:center;}
.review-score .score{font-size:1.2rem;font-weight:700;}
.review-score .star{font-size:1.2rem;color:#f90;}
.review-card h4{margin:0 0 3px;font-size:.85rem;color:#315aa0;}
.stars{font-size:.8rem;color:#f90;margin-bottom:3px;}
.review-card p{font-size:.75rem;line-height:1.2;margin:0 0 4px;}
.review-card a{font-size:.72rem;color:#4285F4;text-decoration:none;}
@media (max-width:680px){
  .reviews .reviews-container{overflow-x:auto;padding-bottom:8px;scroll-snap-type:x mandatory;}
  .reviews .review-score,.reviews .review-card{flex:0 0 220px;width:auto;scroll-snap-align:start;}
}


/* ================================
   FAQ
=================================== */
.faq-section{margin-top:3em;padding:1em 0;}
.faq-section h2{text-align:center;margin-bottom:1.5em;}
.faq-item{margin-bottom:1em;border-bottom:1px solid #eee;padding-bottom:1em;cursor:pointer;}
.faq-item h3{font-size:1.1em;margin:0;color:#003366;position:relative;}
.faq-item h3::after{content:"➕";position:absolute;right:0;font-size:.9em;}
.faq-item.active h3::after{content:"➖";}
.faq-answer{display:none;margin-top:.5em;line-height:1.6;}
.faq-item.active .faq-answer{display:block;}


/* ================================
   IMAGE UTILITIES
=================================== */
.img-left{float:left;margin:0 15px 15px 0;max-width:400px;}
.img-center{display:block;margin:0 auto 20px auto;text-align:center;max-width:600px;}
.img-right{float:right;margin:0 0 15px 15px;max-width:400px;}
.img-pad{margin:6px;}
img.scalable{height:auto !important;width:auto !important;max-width:100%;vertical-align:bottom;}
@media (max-width:768px){
  .img-left,.img-right{float:none;display:block;margin:15px auto;max-width:100%;}
  .img-center{max-width:100%;}
}


/* ================================
   PHOTO GRID
=================================== */
.photo-grid{
  display:grid;grid-template-columns:repeat(auto-fill,minmax(260px,1fr));
  gap:18px;margin:18px 0;
}
.photo-grid a,.photo-grid figure{
  display:block;border-radius:12px;overflow:hidden;background:#fff;
  box-shadow:0 2px 8px rgba(0,0,0,.08);margin:0;
}
.photo-grid img{display:block;width:100%;height:auto;}
.photo-grid figcaption{padding:8px 10px;font-size:.92rem;color:#444;}


/* ================================
   P7 IR2 GALLERY
=================================== */
#p7IR2_1 a{display:block;width:300px;max-width:100%;margin:0 auto 16px;}
.p7IR2{display:grid;grid-template-columns:repeat(auto-fill,minmax(240px,1fr));gap:12px;box-sizing:border-box;}
.p7IR2 img{display:block;width:100%;height:auto;}
.affinity-row .column-2 .p7IR2{grid-template-columns:1fr;overflow-x:hidden;}
.affinity-row .column-2 .p7IR2 img{max-width:100%;height:auto;}
@media (max-width:680px){.p7IR2{grid-template-columns:1fr;}}


/* ================================
   LEGACY PANEL FLOATS (kept)
=================================== */
.panel-like .panel-body::after{content:"";display:block;clear:both;}
.panel-like .panel-body img.img-right{
  float:right;width:46%;max-width:460px;height:auto;
  margin:0 0 10px 18px;display:block;border-radius:10px;
  box-shadow:0 2px 12px rgba(0,0,0,.08);
}
@media (max-width:680px){
  .panel-like .panel-body img.img-right {
    float:none;
    display:block;
    width:100%;
    max-width:100%;   /* FIX: contain inside panel */
    height:auto;
    margin:0 auto 14px auto;
  }
}
/* Mobile fix: stack video above text and cancel the negative margin */
@media (max-width:680px){
  .ytp-grid{
    display:grid;              /* keep grid */
    grid-template-columns:1fr; /* single column on phones */
    gap:12px;
  }

  /* Override the inline styles for phones only */
  .ytp-side{
    padding-left:0 !important;   /* cancels inline 18px */
    margin-top:12px !important;  /* cancels inline -12px that caused overlap */
  }

  .video-container{ position:relative; width:100%; }
  .video-container img{
    width:100%;
    height:auto;                 /* prevents the thumbnail from intruding */
    display:block;
  }
}



/* ================================
   GIFT CERTIFICATES
=================================== */
.gift-certificates{text-align:center;margin:50px auto;padding:20px;background:#eef6ff;border-radius:8px;}
.gift-certificates h2{margin-bottom:15px;font-size:1.4rem;color:#003366;}
.gift-btn{display:inline-block;background:#0073e6;color:#fff;font-weight:700;padding:10px 20px;border-radius:4px;text-decoration:none;transition:background .3s;}
.gift-btn:hover{background:#005bb5;}


/* ================================
   FOOTER
=================================== */
.footer{
  background:#222;color:#8C8C8C;text-align:center;padding:15px;font-size:.8em;
  border-top:1px solid #000;box-shadow:inset 0 16px 2px rgba(255,255,255,.025);
}
.footer a{color:#4da3ff;}
.footer a:hover{color:#fff;}


/* ================================
   FFI BADGE PANEL (logo + text)
=================================== */
@media (min-width:901px){
  .panel-like.panel-like--compact > div:not([class]){
    display:flex;flex-direction:row;align-items:flex-start;
  }
  .panel-like.panel-like--compact > div:not([class])>img{
    width:200px;height:auto;margin-right:24px;border-radius:10px;
  }
  .panel-like.panel-like--compact > div:not([class])>div{flex:1 1 auto;min-width:0;}
}
@media (max-width:900px){
  .panel-like.panel-like--compact > div:not([class]){display:flex;flex-direction:column;align-items:center;}
  .panel-like.panel-like--compact > div:not([class])>img{width:200px;height:auto;margin:0 0 16px 0;}
  .panel-like.panel-like--compact > div:not([class])>div{width:100%;min-width:0;}
}


/* ================================
   INDEX / YT MAIN (kept behaviors)
=================================== */
#yt-main .ytp-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(0,1fr);
  gap:24px;align-items:start;
}
@media (max-width:900px){
  #yt-main .ytp-grid{display:block;}
  #yt-main .ytp-side{margin-top:14px;}
}
#yt-main .panel-like{ background:#ffffff; }
#yt-main .panel-like--tint{ background:#e9f3fb; }

/* ================================
   VIDEO ANALYSIS PAGE
=================================== */
#tutorials-videos .video-gallery {
  display: grid;
  grid-template-columns: 1fr;      /* mobile-first */
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  #tutorials-videos .video-gallery {
    grid-template-columns: repeat(2, minmax(260px, 1fr)); /* two-up desktop */
  }
}

#tutorials-videos .video-card {
  display: block;
}

#tutorials-videos .video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 6px;
  background: #000;
}

/* FIX: make image fill the 16:9 box */
#tutorials-videos .video-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#tutorials-videos .yt-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: #fff;
  text-shadow: 0 0 6px rgba(0,0,0,.6);
}
/* ================================
   MOBILE CTA (fixed bottom, mobile only)
=================================== */
.mobile-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-around;  /* ✅ space buttons apart */
  padding: 12px;
  z-index: 50;
  background: #f8f8f8;            /* neutral bar */
  border-top: 1px solid #ccc;
}

.mobile-cta a {
  flex: 1;                         /* ✅ each button takes equal space */
  margin: 0 6px;                   /* gap between */
  text-align: center;
  padding: 12px 0;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  color: #fff;
}

/* Button colors */
.mobile-cta a.call-btn { background: #e62117; }  /* red */
.mobile-cta a.text-btn { background: #2d6fb3; }  /* blue */

@media (min-width: 768px) {
  .mobile-cta { display: none; }
}

/* ================================
   GUARD RAILS
=================================== */
html, body { overflow-x:hidden; }               /* prevent accidental side scroll */
body{ display:block !important; }               /* cancel any accidental body grid */


/* ================================
   IMAGE SAFETY INSIDE CARDS/GRIDS
=================================== */
.panel-like img,
.panel-like--tint img,
.photo-grid img,
.video-thumb img,
.content img {
  max-width:100%;
  height:auto;
  display:block;
}
/* Smaller padding for this exact card only */
.yt-promo.panel-like{
  padding:18px 20px;
}
/* ================================
   FEATURES / INFO CARDS
   (two columns desktop, stacked mobile)
=================================== */
.content.features {
  /* mobile-first: single column stack */
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin: 2em 0;
  align-items: stretch;
}

.content.features .feature {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0,0,0,.15);
  border: 1px solid rgba(0,0,0,.08);
  padding: 1.5em 1.2em;
  text-align: center;
  transition: transform .2s ease, box-shadow .2s ease;
  box-sizing: border-box;
}

.content.features .feature:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 24px rgba(0,0,0,.18);
}

.content.features .feature h3 {
  margin-top: 0;
  margin-bottom: 0.5em;
  font-size: 1.1rem;
  color: #004477;
}

.content.features .feature-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 0.8em auto;
  display: block;
}

/* Desktop: force two equal-height columns */
@media (min-width: 900px) {
  .content.features {
    display: flex;          /* equal heights */
    gap: 40px;              /* spacing between the two */
    align-items: stretch;
  }
  .content.features .feature {
    flex: 1 1 0;            /* two equal columns */
    margin: 0;
  }
}
/* Fix: Features section should align like full content */
.content.features {
  width: 100%;          /* full width inside the wrapper */
  max-width: 1100px;    /* same as other content cards */
  margin: 20px auto;    /* keep it centered */
  box-sizing: border-box;
}
h2, h3 {
  border-bottom: 2px solid #cdd9e5; /* soft blue-gray line */
  padding-bottom: 6px;
  margin-bottom: 16px;
}
/* ================================
   SLIM CTA CARD (balanced width)
=================================== */
.cta-card {
  background: #eef6fb;
  border: 1px solid #cdd9e5;
  border-radius: 6px;
  text-align: center;
  margin: 20px auto;
  padding: 8px 14px;         /* slim padding */
  max-width: 960px;          /* ✅ wider, matches content flow */
  width: 95%;
  box-shadow: none;
}

.cta-card h3 {
  margin: 0 0 6px;
  font-size: 1.2rem;         /* a touch bigger */
  font-weight: 700;
  color: #003a66;
}

.cta-card p {
  margin: 0 0 8px;
  font-size: 0.95rem;
  color: #333;
}

.cta-card .cta-buttons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.cta-card .btn {
  padding: 6px 14px;
  font-size: 0.9rem;
  font-weight: 700;
  border-radius: 5px;
}
/* ================================
   INTRO BAND (under hero) — FIXED
=================================== */
.intro-band .panel-body {
  display: grid;
  grid-template-columns: 1.4fr .8fr;
  align-items: start;         /* keep content aligned at the top */
  gap: 14px;
}

.intro-title {
  margin: 0 0 6px;
  font-size: clamp(1.15rem, 1.6vw + .6rem, 1.8rem);
  line-height: 1.2;
}

.intro-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 14px;
  font-size: .95rem;
}
.intro-list li::before {
  content: "✓";
  color: #2d6fb3;
  margin-right: 8px;
  font-weight: 700;
}

.intro-cta {
  display: flex;
  gap: 10px;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-self: start;          /* ✅ anchor buttons to the top of the right column */
}

.intro-cta .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .9rem 1.4rem;
  font-size: 1rem;
  border-radius: 6px;
  line-height: 1.2;
  white-space: nowrap;        /* prevent two-line labels */
}

/* Mobile: collapse into a single column */
@media (max-width: 700px) {
  .intro-band .panel-body {
    grid-template-columns: 1fr;
  }
  .intro-cta {
    justify-content: flex-start;
    flex-direction: column;
    align-items: stretch;
  }
  .intro-cta .btn {
    width: 100%;
  }
}
/* ================================
   Intro band — hide CTA buttons only on mobile
=================================== */
@media (max-width: 700px) {
  .intro-band .intro-cta {
    display: none !important;
  }
}
/* ================================
   Lessons & Pricing page only
=================================== */
body#pricing-page {
  font-family: 'Helvetica', 'Arial', sans-serif;
}
body#pricing-page h2,
body#pricing-page h3 {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0.8em;
  font-weight: 700;
  color: #002b55; /* darker navy for emphasis */
}
.about-intro-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: block;   /* vertical stack, no flex-wrap bug */
}

.about-intro-list li {
  margin-bottom: 6px;
  position: relative;
  padding-left: 22px;
}

.about-intro-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2d6fb3;
  font-weight: 700;
}
.steps-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.steps-list li {
  margin-bottom: 12px;
  padding-left: 28px;           /* indent space for bullet/number */
  position: relative;
  line-height: 1.5;
}

.steps-list li::before {
  content: "✓";                 /* or change to counter for numbers */
  position: absolute;
  left: 0;
  top: 0;
  color: #2d6fb3;               /* same blue as your site */
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1.5;
}
/* FIX: perfectly aligned step list inside feature cards */
.content.features .feature .steps-list{
  list-style:none;
  margin:0;
  padding:0;
  text-align:left;            /* override the feature's center text */
}

.content.features .feature .steps-list li{
  display:flex;               /* bullet and text in two columns */
  gap:10px;
  align-items:flex-start;
  margin:10px 0;
  line-height:1.5;
}

.content.features .feature .steps-list li::before{
  content:"✓";
  flex:0 0 18px;              /* fixed bullet column width */
  color:#2d6fb3;
  font-weight:700;
  line-height:1;              /* keeps the icon from riding high */
  transform:translateY(3px);  /* tiny visual nudge for vertical alignment */
}
/* Layout: 2 columns desktop, 1 column mobile */
.analysis-page .video-gallery-analysis {
  display: grid;
  gap: 2rem;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .analysis-page .video-gallery-analysis {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 767px) {
  .analysis-page .video-gallery-analysis {
    grid-template-columns: 1fr;
  }
}

/* Video cards */
.analysis-page .video-card-analysis {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  padding: 1rem;
  text-align: center;
}

/* Thumbnails */
.analysis-page .video-thumb-analysis {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  border-radius: 6px;
  cursor: pointer;
  margin-bottom: 0.75rem;
}

.analysis-page .video-thumb-analysis img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Play triangle */
.analysis-page .yt-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 64px;
  color: rgba(0,0,0,0.7);
  transition: color 0.2s ease;
  pointer-events: none;
}

.analysis-page .video-thumb-analysis:hover .yt-play {
  color: #c00;
}

