
/* ==========================================================================
   0) Root & Reset
   ========================================================================== */
   :root {
    --maxw: 880px;
  }
  
  * { box-sizing: border-box; }
  
  html { scroll-behavior: smooth; }
  
  body {
    margin: 0;
    font-family: system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, Noto Sans, Arial, sans-serif;
    line-height: 1.6;
    background: #0b1020;
    color: #e9ecf1;
  }
  
  /* ==========================================================================
     1) Layout & Typography
     ========================================================================== */
  .container { max-width: var(--maxw); margin: 0 auto; padding: 2rem 1.5rem; }
  
  header { padding: 3rem 1.5rem; text-align: center; }
  
  .header--tall { padding: 4.5rem 1.5rem 2rem; }
  .header--tall p { text-align: justify; text-align-last: left; }
  
  h1 { margin: 0 0 .5rem; font-size: clamp(2rem, 6vw, 3rem); }
  
  main { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
  
  footer { opacity: .7; text-align: center; padding-bottom: 3rem; }
  
  /* ==========================================================================
     2) Links
     ========================================================================== */
  a { color: #8ecaff; text-decoration: none; }
  a:hover { text-decoration: underline; }
  
  /* ==========================================================================
     3) Navbar
     Structure: .navbar > .nav-content { .nav-logo | .nav-links | .nav-actions }
     Includes dropdown (.has-dropdown, .nav-trigger, .dropdown)
     ========================================================================== */
  .navbar {
    position: sticky;
    top: 0;
    background: transparent;
    border-bottom: 1px solid transparent;
    z-index: 1000;
    transition: background .3s, border-color .3s;
  }
  .navbar.scrolled {
    background: #0b1020;
    border-bottom: 1px solid #223056;
  }
  
  .nav-content {
    display: grid;
    grid-template-columns: auto 1fr auto; /* logo | links | actions */
    align-items: center;
    padding: 1rem 1.5rem;
    gap: 1rem;
  }
  
  .navbar a { color: #e9ecf1; font-weight: 500; transition: color .2s; text-decoration: none; }
  .navbar a:hover { color: #8ecaff; }
  
  /* Logo */
  .nav-logo { justify-self: start; margin-left: 0; }
  .nav-logo img { height: 40px; display: block; }
  .nav-logo a { display: inline-flex; align-items: center; padding-left: 0; }
  
  /* Main links (top-level) */
  .nav-links {
    display: flex;
    gap: 1.5rem;
    justify-self: center;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .nav-links > li > a {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .5rem .8rem;
    border-radius: 999px;
    position: relative;
    /* "border" via box-shadow — no layout shift */
    box-shadow: inset 0 0 0 0 rgba(142,202,255,0);
    transition: color .18s ease, background-color .18s ease, box-shadow .18s ease, transform .18s ease;
  }
  .nav-links > li > a:hover,
  .nav-links > li > a:focus-visible {
    background: rgba(19, 26, 51, 0.7);
    box-shadow: inset 0 0 0 1px #2a3c6a;
    color: #8ecaff;
    transform: translateY(-1px);
    outline: none;
  }
  
  /* Actions (mail / WhatsApp icons) */
  .nav-actions,
  .nav-socials { /* keep alias for older markup */
    display: flex;
    gap: .75rem;
    justify-self: end;
  }
  .icon-link svg,
  .nav-socials svg {
    display: block;
    width: 28px;
    height: 28px;
    transition: transform .25s ease, filter .25s ease;
  }
  .icon-link:hover svg,
  .nav-socials a:hover svg {
    transform: scale(1.2);
    filter: drop-shadow(0 0 6px rgba(255,255,255,.6));
  }
  
  /* Dropdown */
  .has-dropdown { position: relative; }
  .has-dropdown > a,
  .nav-trigger {
    appearance: none;
    background: none;
    border: 0;
    padding: .5rem .8rem;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font: inherit;
    color: inherit;
    cursor: pointer;
    position: relative;
    z-index: 1;
    transition: color .18s ease;
    text-decoration: none;
  }
  .nav-trigger:hover,
  .nav-trigger:focus-visible { color: #8ecaff; outline: none; }
  
  .caret { transform: translateY(1px); opacity: .8; }
  
  .dropdown {
    position: absolute;
    top: calc(100% + .6rem);
    left: 0;
    min-width: 220px;
    padding: .5rem;
    margin: 0;
    list-style: none;
    border: 1px solid #223056;
    border-radius: 12px;
    background: #0f1730;
    box-shadow: 0 12px 28px rgba(0,0,0,.35);
    opacity: 0;
    transform: translateY(-6px);
    pointer-events: none;
    transition: opacity .16s ease, transform .16s ease;
    z-index: 1001;
  }
  .dropdown li a {
    display: block;
    padding: .55rem .75rem;
    border-radius: 10px;
    text-decoration: none;
    color: #e9ecf1;
    white-space: nowrap;
    box-shadow: inset 0 0 0 0 rgba(142,202,255,0);
    transition: color .18s ease, background-color .18s ease, box-shadow .18s ease, transform .18s ease;
  }
  .dropdown li a:hover,
  .dropdown li a:focus-visible {
    background: #131a33;
    box-shadow: inset 0 0 0 1px #2a3c6a;
    color: #8ecaff;
    transform: translateY(-1px);
    outline: none;
  }
  .has-dropdown:hover > .dropdown,
  .has-dropdown:focus-within > .dropdown {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
  .has-dropdown::after {
    content: "";
    position: absolute;
    left: 0; right: 0; top: 100%;
    height: .5rem; /* small "magnet" for the cursor */
  }
  
  /* ==========================================================================
     4) Cards (static & clickable)
     ========================================================================== */
  .card {
    position: relative;
    background: #131a33;
    border: 1px solid #223056;
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 6px 20px rgba(0,0,0,.3);
    color: #fff;
    transform: translateZ(0);
    transform-origin: center;
    will-change: transform, box-shadow;
    transition: transform .18s ease, box-shadow .18s ease;
  }
  .card h2 { margin: 0 0 .9rem; padding: 0; position: relative; }
  .card h2::after {
    content: "";
    display: block;
    width: 200px;
    height: 1px;
    margin-top: .55rem;
    border-radius: 999px;
    background: #8ecaff;
  }
  .card::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    box-shadow: 0 0 0 rgba(142,202,255,0);
    transition: box-shadow .18s ease;
  }
  
  /* Clickable wrapper */
  .card-link { display: block; color: inherit; text-decoration: none; border-radius: 16px; }
  .card-link .card {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    cursor: pointer;
  }
  .card-link:hover .card,
  .card-link:focus-visible .card {
    transform: scale(1.02);
    box-shadow: 0 10px 28px rgba(0,0,0,.45);
  }
  .card-link:hover .card::after,
  .card-link:focus-visible .card::after {
    box-shadow: 0 0 0 2px rgba(142,202,255,.35), 0 0 28px rgba(142,202,255,.25);
  }
  .card-link:focus-visible { box-shadow: 0 0 0 3px rgba(142,202,255,.25); }
  
  /* Inner CTA row */
  .card .cta-row { margin-top: auto; display: flex; justify-content: flex-end; gap: .5rem; }
  .card .cta-row.cta-row--center { justify-content: center; }
  
  /* Optional: divider before text inside .card-link */
  .card-link .card p {
    margin: 0;
    border-top: 1px solid rgba(0,0,0,.12);
    padding-top: .75rem;
  }
  
  /* ==========================================================================
     5) Forms & Buttons
     ========================================================================== */
  .contact-form { display: grid; gap: 1rem; }
  .form-row { display: grid; gap: .4rem; }
  
  label { font-size: .95rem; color: #c9d5ee; }
  
  input, textarea, select {
    width: 100%;
    padding: .75rem .9rem;
    border-radius: 12px;
    border: 1px solid var(--input-border, #223056);
    background: var(--input-bg, #0f1730);
    color: var(--text, #e9ecf1);
    outline: none;
  }
  input::placeholder, textarea::placeholder { color: #94a3c7; }
  
  input:focus, textarea:focus, select:focus {
    border-color: var(--focus, #8ecaff);
    box-shadow: 0 0 0 3px rgba(142,202,255,.15);
  }
  select option[hidden] { display: none; }
  select:invalid { color: rgba(233,236,241,.55); }
  select:hover, select:focus { cursor: pointer; }
  select:has(option[value=""]:checked) { color: rgba(233,236,241,.55); }
  select:not(:has(option[value=""]:checked)) { color: var(--text, #e9ecf1); }
  
  /* Contact card + form actions */
  .contact-panel { grid-column: 1 / -1; padding: 1rem; }
  .contact-panel h2 { margin-top: 0; text-align: center; }
  .form-actions { margin-top: .8rem; }
  
  /* Primary buttons */
  .btn-primary {
    appearance: none;
    border: 0;
    padding: .8rem 1.1rem;
    border-radius: 12px;
    font-weight: 600;
    background: linear-gradient(90deg, #1f3f46, #9be22d);
    color: #0b1020;
    cursor: pointer;
    transition: transform .18s ease, box-shadow .18s ease, filter .18s ease;
  }
  .btn-primary:hover {
    transform: translateY(-1px) scale(1.02);
    box-shadow: 0 10px 28px rgba(0,0,0,.45), 0 0 0 2px rgba(155,226,45,.25) inset;
    filter: brightness(1.03);
  }
  
  .btn-sm { padding: .55rem .9rem; border-radius: 10px; font-size: .95rem; line-height: 1; }
  
  .btn-outline {
    background: transparent;
    color: #8ecaff;
    border: 1px solid #223056;
  }
  .btn-outline:hover { background: #0f1730; }
  
  .form-hint { margin-top: -.2rem; font-size: .9rem; opacity: .8; }
  
  /* Full-width submit on the contact form */
  #contactForm .form-actions .btn-primary {
    display: block;
    width: 100%;
    text-align: center;
  }
  
  /* Autosizing textarea helper (visual) */
  .contact-form textarea {
    width: 100%;
    box-sizing: border-box;
    resize: none;
    min-height: 8rem;
    max-height: 40vh;
    overflow-y: auto;
  }
  
  /* ==========================================================================
     6) Sections & Reveal
     ========================================================================== */
  .section-pad { margin-top: 2.5rem; }
  .section-break { grid-column: 1 / -1; padding: 0; margin: 1.5rem 0 .5rem; }
  .section-break h2 { text-align: center; font-weight: 700; font-size: clamp(2rem, 5vw, 2.6rem); margin: 0; line-height: 1.2; }
  
  /* spacing tweaks for specific flows */
  .pros-cons-block p + h2 { margin-top: 2.5rem; }
  .pricing.section-pad { margin-top: 3.5rem; }
  .pricing.section-pad + .section-pad { margin-top: 3.5rem; }
  
  .section-pad .section-break + div { margin-top: 1.25rem; }
  @media (min-width: 681px) {
    .section-pad .section-break + div { margin-top: 1.75rem; }
  }
  
  /* Reveal on scroll */
  .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease;
    will-change: opacity, transform;
  }
  .reveal.in { opacity: 1; transform: none; }
  .reveal[data-delay="100"] { transition-delay: .1s; }
  .reveal[data-delay="200"] { transition-delay: .2s; }
  .reveal[data-delay="300"] { transition-delay: .3s; }
  @media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
  }
  
  /* ==========================================================================
     7) Grids
     ========================================================================== */
  .two-col { display: grid; gap: 1rem; grid-template-columns: repeat(2, 1fr); align-items: stretch; }
  @media (max-width: 680px) { .two-col { grid-template-columns: 1fr; } }
  
  .form-grid { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
  @media (max-width: 680px) { .form-grid { grid-template-columns: 1fr; } }
  
  .form-grid-2 { display: grid; gap: 1rem; grid-template-columns: 1fr 1fr; }
  @media (max-width: 680px) { .form-grid-2 { grid-template-columns: 1fr; } }
  
  /* ==========================================================================
     8) Lists (checklist / cons / cost)
     ========================================================================== */
  .pros-cons-block h2, .ux-section h2 { text-align: center; margin-bottom: 1.5rem; }
  .pros-cons-block h3, .ux-section h3 { text-align: center; margin-top: .5rem; margin-bottom: 1rem; }
  
  .checklist, .cons { margin: .5rem 0 0; padding-left: 1.2rem; }
  .checklist li, .cons li { margin: .4rem 0; }
  
  .checklist { list-style: none; padding-left: 0; }
  .checklist li::before { content: "✓"; margin-right: .5rem; color: #9be22d; }
  
  .cons { list-style: none; padding-left: 0; }
  .cons li { margin: .4rem 0; opacity: .95; }
  .cons li::before { content: "✕"; margin-right: .5rem; color: #e74c3c; font-weight: bold; }
  
  .cost-list { margin: .5rem 0 0; padding-left: 1.2rem; }
  .cost-list li { margin: .4rem 0; list-style: none; position: relative; padding-left: 1.4rem; }
  .cost-list li::before { content: "•"; position: absolute; left: 0; color: #ffffff; font-weight: bold; }
  
  /* Split captions */
  .lead { font-weight: 700; color: #e9ecf1; }
  .dash { opacity: .9; margin: 0 .25rem; }
  .note { color: #94a3c7; opacity: .95; }
  
  /* ==========================================================================
     9) Media / UX Blocks
     ========================================================================== */
  .audio-page { display: block; }
  
  .ux-section > h2 { margin: 0 0 1rem; }
  .ux-card { display: flex; flex-direction: column; gap: .75rem; }
  .ux-card h3 { margin: .25rem 0 0; }
  
  .media-frame {
    position: relative;
    border: 1px solid #223056;
    background: #0f1730;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 16 / 9;
    display: grid;
    place-items: center;
  }
  .media { width: 100%; height: 100%; object-fit: cover; }
  
  .hint { margin: 0; opacity: .9; font-size: .95rem; }
  .try-actions { display: grid; gap: .35rem; align-content: start; }
  .try-actions .btn-primary { justify-self: start; }
  
  /* Full-bleed video/card variants */
  .ux-card.video-only { padding: 0; overflow: hidden; }
  .ux-card.video-only .media { width: 100%; height: 100%; display: block; object-fit: cover; border-radius: 16px; }
  
  .left-stack, .right-stack {
    display: flex; flex-direction: column; gap: 1rem;
    align-self: stretch; min-height: 0;
  }
  .right-stack .video-only { flex: 1 1 auto; padding: 0; overflow: hidden; }
  .right-stack .video-only .media { width: 100%; height: 100%; object-fit: cover; }
  
  /* Card that holds a video and spans rows in a two-column grid */
  .card.video-fill {
    display: flex;
    padding: 0;
    overflow: hidden;
    height: 100%;
    align-self: stretch;
    grid-row: 1 / span 2;
    grid-column: 2;
  }
  .card.video-fill .media { width: 100%; height: 100%; object-fit: cover; display: block; }
  
  /* Mobile stacking */
  @media (max-width: 680px) {
    .left-stack { align-self: auto; display: block; }
    .card.video-fill { grid-column: auto; grid-row: auto; height: auto; }
    .ux-card.video-only { height: auto !important; }
  }
  
  /* ==========================================================================
     10) Pricing & Plan Cards
     ========================================================================== */
  .pricing h2 { text-align: center; margin-bottom: 1.5rem; }
  .pricing-card { max-width: 600px; margin: 0 auto; }
  .pricing-card--wide { max-width: none; width: 100%; margin: 0; }
  .pricing-card h3 { text-align: center; margin: 0 0 1rem; }
  
  .plan-card { padding: 0;
     overflow: hidden;
      position: relative;
       isolation: isolate;
        transform: translateZ(0);
         transition: transform .18s ease, box-shadow .18s ease; }
  .plan-card--wide { max-width: none; width: 100%; margin: 0; }
  .plan-card--narrow { --shrink: .8; width: calc(100% * var(--shrink)); margin-inline: auto; }
  .plan-card--center { width: clamp(320px, 40%, 440px); margin: 0 auto; border-radius: 24px; }
  @media (max-width: 680px) { .plan-card--narrow { width: 100%; } }
  
  .plan-card:hover,
  .plan-card:focus-within { transform: scale(1.02); box-shadow: 0 10px 28px rgba(0,0,0,.45); }
  .plan-card::after {
    content: ""; position: absolute; inset: 0; border-radius: inherit; pointer-events: none;
    box-shadow: 0 0 0 rgba(142,202,255,0); transition: box-shadow .18s ease;
  }
  .plan-card:hover::after,
  .plan-card:focus-within::after {
    box-shadow: 0 0 0 2px rgba(142,202,255,.35), 0 0 28px rgba(142,202,255,.25);
  }
  .plan-card::before {
    content: ""; position: absolute; z-index: -1; inset: -8%; border-radius: inherit; opacity: 0;
    filter: blur(18px); transform: scale(.98);
    transition: opacity .18s ease, transform .18s ease, filter .18s ease;
    background: radial-gradient(60% 60% at 50% 40%,
      rgba(142,202,255,.35) 0%,
      rgba(142,202,255,.12) 45%,
      rgba(142,202,255,0) 70%);
  }
  .plan-card:hover::before,
  .plan-card:focus-within::before { opacity: 1; transform: scale(1); filter: blur(22px); }
  
  @media (prefers-color-scheme: dark) {
    .plan-card::before {
      background: radial-gradient(60% 60% at 50% 40%,
        rgba(142,202,255,.5) 0%,
        rgba(142,202,255,.2) 45%,
        rgba(142,202,255,0) 70%);
    }
  }
  @media (prefers-reduced-motion: reduce) {
    .plan-card, .plan-card::before, .plan-card::after { transition: none; }
  }
  
  /* Header w/ gradient + optional wave */
  .plan-card__header {
    position: relative;
    padding: 1.2rem 1.2rem 1rem;
    background: linear-gradient(180deg, rgba(155,226,45,.18), rgba(31,63,70,.12));
    border-bottom: 1px solid #223056;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
    overflow: hidden; /* keep rounded corners clean */
  }
  .plan-card__header--wave { position: relative; padding-bottom: 3rem; border-bottom: 0; overflow: hidden; }
  .plan-card__wave { position: absolute; left: 0; bottom: -1px; width: 100%; height: 64px; display: block; pointer-events: none; }
  @media (max-width: 680px) {
    .plan-card__header--wave { padding-bottom: 2.6rem; }
    .plan-card__wave { height: 72px; }
  }
  
  /* Pricing bits */
  .plan-card__name { font-weight: 700; letter-spacing: .3px; opacity: .95; margin-bottom: .25rem; }
  .plan-card__price { display: flex; align-items: baseline; gap: .6rem; flex-wrap: wrap; }
  .plan-card__price .price-old { opacity: .75; font-size: 1.05rem; }
  .plan-card__price .price-main { font-size: clamp(2rem, 6vw, 3rem); line-height: 1.05; }
  .plan-card__price .price-sub { opacity: .9; }
  .plan-card__note { margin-top: .25rem; font-size: .95rem; opacity: .85; }
  .promo-badge {
    display: inline-block; padding: .35rem .6rem; border-radius: 999px; font-weight: 700; font-size: .9rem; color: #0b1020;
    background: #9be22d; box-shadow: 0 0 0 3px rgba(155,226,45,.18); margin-bottom: .5rem;
  }
  .plan-card__features { padding: 1.1rem 1.2rem 0; }
  .plan-card__features li { margin: .5rem 0; }
  
  /* Compact tweaks */
  .plan-card--compact .plan-card__header { padding-bottom: 1.8rem; }
  .plan-card--compact .plan-card__features { margin-top: -.4rem; padding-top: .6rem; }
  .plan-card--compact .cta-row { margin-bottom: .8rem; }
  
  /* Reveal synergy for plan cards */
  .plan-card.reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .6s ease, transform .6s ease, box-shadow .18s ease;
  }
  .plan-card.reveal.in { opacity: 1; transform: none; }
  
  /* ==========================================================================
     11) Misc small helpers
     ========================================================================== */
  .hint, .form-hint { user-select: text; }
 
  .plan-card {
    border: 1.5px solid transparent;
    border-radius: 16px; 
    transition: border-color .2s ease, box-shadow .25s ease, transform .25s ease;
  }
  
  .plan-card:hover,
  .plan-card:focus-within,
  .plan-card:focus-visible {
    border-color: #9BE22D; 

    box-shadow:
      0 0 0 2px rgba(155, 226, 45, .35),
      0 8px 24px rgba(0, 0, 0, .06);
  }
  
  .plan-card:hover,
  .plan-card:focus-within {
    transform: scale(1.02);
  }
  
  @media (prefers-reduced-motion: reduce) {
    .plan-card { transition: border-color .2s ease; }
    .plan-card:hover,
    .plan-card:focus-within,
    .plan-card:focus-visible {
      transform: none;
      box-shadow: none;
    }
  }
 
.plan-card {

  --wave-shift: 12px;  
  --wave-drop: 0px;    
}

.plan-card__header--wave {
  padding-bottom: calc(3rem + var(--wave-shift));
}

.plan-card__wave {
  bottom: calc(-1px + var(--wave-drop));
}


.plan-card--wave-lower {
  --wave-shift: 180px;  
  --wave-drop: -2px;    
}


@media (max-width: 680px) {
  .plan-card { --wave-shift: 16px; }
  .plan-card--wave-lower { --wave-shift: 22px; }
}



a.card-link,
a.card-link:hover,
a.card-link:focus-visible {
  text-decoration: none !important;
}

a.card-link * {
  text-decoration: none !important;
}

.plan-card {
  cursor: default;            
}
.plan-card * {
  cursor: inherit !important;   
}

.plan-card a,
.plan-card button,
.plan-card [role="button"] {
  cursor: pointer !important;
}

button,
.button,
.btn,
[role="button"],
a.button,
a.btn {
  text-decoration: none;
}

button:hover,
button:focus-visible,
.button:hover,
.button:focus-visible,
.btn:hover,
.btn:focus-visible,
[role="button"]:hover,
[role="button"]:focus-visible,
a.button:hover,
a.button:focus-visible,
a.btn:hover,
a.btn:focus-visible {
  text-decoration: none !important; }

a.btn-primary,
a.btn-primary:hover,
a.btn-primary:focus,
a.btn-primary:active,
a[class*="btn"],
a[class*="btn"]:hover,
a[class*="btn"]:focus,
a[class*="btn"]:active {
  text-decoration: none !important;
}

.card .cta-row a {
  text-decoration: none !important;
}

.card-link .service-card {
  position: relative;
}
.card-link .service-card .card-content {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}


.card-link .service-card .card-corner-arrow {
  position: absolute;
  top: 12px;
  right: 12px;
  font-size: 18px;
  line-height: 1;
  opacity: .55;
  transition: transform .25s ease, opacity .25s ease;
  pointer-events: none;          
}

.card-link .service-card .card-microcta {
  margin-top: auto;               
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,.08); 
  font-weight: 600;
  font-size: .95rem;
  display: inline-flex;
  align-items: center;
  gap: .4em;
  opacity: .9;
}

.card-link:hover .service-card .card-corner-arrow {
  transform: translateX(3px);
  opacity: .9;
}
.card-link:hover .service-card .card-microcta .arrow {
  transform: translateX(4px);
}
.card-link .service-card .card-microcta .arrow {
  display: inline-block;
  transition: transform .25s ease;
}

@media (max-width: 420px) {
  .card-link .service-card .card-corner-arrow { display: none; }
}



.audio-page .ux-card.video-only .media { width: 100%; height: 100%;
   object-fit: contain !important;
    background: #000;
    }

.card-ghost { visibility: hidden; pointer-events: none; }

@media (max-width: 680px) { .card-ghost { display: none; } }



.audio-page .two-col .left-stack {
  grid-row: 1 / span 2;         
  display: grid;                  
  grid-template-rows: 1fr 1fr;
  gap: 1rem;
  min-height: 0;
}

.audio-page .two-col .left-stack > .card {
  display: flex;                  
  flex-direction: column;
  min-height: 0;
}


.audio-page .two-col .card.video-fill .media {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 680px) {
  .audio-page .two-col .left-stack { grid-row: auto; display: block; }
}

@media (max-width: 680px) {
 
  .container [style*="grid-template-columns:repeat(2, minmax(280px"] {
    grid-template-columns: 1fr !important; 
  }
  .container [style*="grid-template-columns:repeat(2, minmax(280px"] > * {
    min-width: 0; 
  }
}

.container section[style*="flex-direction:column"][style*="justify-content:center"] {
  justify-content: flex-start !important;
}

.card, .card * { min-width: 0; }
.card p, .card li, .card h2, .card h3 { overflow-wrap: anywhere; word-break: break-word; }