@charset "UTF-8";

/* =========================================================
   Odyssey Investments - Custom CSS 
   ========================================================= */

/* ---------- Design Tokens ---------- */
:root{
  /* Brand palette (from your Tailwind config) */
  --od-50:  #f0f5ed;
  --od-100: #f1f5f9;
  --od-200: #e3eedd;
  --od-300: #cbd5e1;
  --od-400: #9bb58d;
  --od-500: #6e895f;
  --od-600: #4b643d;
  --od-700: #364b2b;
  --od-800: #192811;
  --od-900: #15200f;

  --white: #ffffff;
  --black: #000000;

  --container: 72rem; /* ~1152px */
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.25rem;

  --shadow-sm: 0 1px 2px rgba(0,0,0,.06);

  --ring: rgba(155, 181, 141, 0.65);
  --border: rgba(203, 213, 225, 0.8);

  --font-sans: "Instrument Sans", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-serif: "Ledger", Georgia, "Times New Roman", serif;
}

/* ---------- Base / Reset ---------- */
html{ scroll-behavior: smooth; }
::-webkit-scrollbar{ display:none; }

*{ box-sizing:border-box; }
body{
  margin:0;
  background: var(--white);
  color: var(--od-800);
  font-family: var(--font-sans);

  /* global “body copy” default you asked for */
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.65;
}

img{ max-width:100%; height:auto; display:block; }

a{ color:inherit; text-decoration:none; }
a:focus{ outline:none; }
:focus-visible{
  outline: none;
  box-shadow: 0 0 0 3px var(--ring);
  border-radius: 0.5rem;
}

.sr-only{
  position:absolute !important;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0);
  white-space:nowrap; border:0;
}

/* helpers replacing Tailwind classes used by JS */
.hidden{ display:none !important; }
.opacity-0{ opacity:0 !important; }
.opacity-100{ opacity:1 !important; }
.pointer-events-none{ pointer-events:none !important; }

/* ---------- Layout ---------- */
.container{
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width:640px){
  .container{ padding:0 1.5rem; }
}

.section{ padding: 4rem 0; }
@media (min-width:640px){
  .section{ padding: 5rem 0; }
}

.bg-white{ background: var(--white); }
.bg-soft{ background: var(--od-50); }
.bg-gradient-soft{
  background: linear-gradient(to bottom, var(--od-50), var(--white));
}

/* ---------- Typography ---------- */
.h1{
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--od-600);
  line-height: 1.1;
  margin: 0 0 1rem 0;
  font-size: 2.25rem;
}
@media (min-width:640px){
  .h1{ font-size: 3rem; }
}

.h2{
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--od-600);
  line-height: 1.2;
  margin: 0 0 1.25rem 0;
  font-size: 1.875rem;
}

.h2-italic {
	font-style:italic;
}

@media (min-width:640px){
  .h2{ font-size: 2.25rem; }
}

.h3{
  font-weight: 500;
  color: var(--od-900);
  margin: 0 0 0.75rem 0;
  font-size: 1.25rem;
}

.lead{
  color: var(--od-600);
  font-size: 1.125rem;
  font-weight: 300;
  margin: 0;
}
@media (min-width:640px){
  .lead{ font-size: 1.25rem; }
}

.muted{ color: var(--od-600); }

.small-muted{
  color: var(--od-500);
  font-size: 0.95rem;
  font-weight: 300;
}

/* ---------- Header ---------- */
.site-header{
  position: fixed;
  top:0; left:0; right:0;
  z-index: 50;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(203,213,225,.6);
}

.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 0.75rem;
  padding: 1rem 0;
}

.logo{
  display:inline-flex;
  align-items:center;
  gap: 0.5rem;
  white-space:nowrap;
}
.logo img{ height: 2.5rem; width:auto; }
@media (min-width:640px){
  .logo img{ height: 2.75rem; }
}

/* Desktop nav */
.nav-desktop{
  display:none;
  align-items:center;
  gap: 2rem;
}
@media (min-width:768px){
  .nav-desktop{ display:flex; }
}

/* Your nav-link styles (Option B underline) */
.nav-link{
  font-size: .875rem;
  font-weight: 300;
  color: var(--od-500);
  position: relative;
  transition: color .2s ease;
}
.nav-link:hover{ color: var(--od-800); }
.nav-link::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-4px;
  height:1px;
  width:100%;
  background: rgba(155,181,141,.6);
  opacity:0;
  transition: opacity .2s ease;
}
.nav-link:hover::after{ opacity:1; }
.nav-link--active{ color: var(--od-800); }
.nav-link--active::after{ opacity:1; }

/* Header actions */
.header-actions{
  display:flex;
  align-items:center;
  gap: 0.5rem;
}

/* Mobile menu button */
.mobile-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  border: 1px solid transparent;
  color: var(--od-600);
  background: transparent;
  cursor:pointer;
  transition: background .2s ease, color .2s ease;
}
.mobile-btn:hover{ background: rgba(240,245,237,0.6); }
@media (min-width:768px){
  .mobile-btn{ display:none; }
}

/* Mobile panel */
.mobile-panel{
  border-top: 1px solid rgba(203,213,225,.6);
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
}
.mobile-nav{
  display:grid;
  gap: 0.5rem;
  padding: 1rem 0;
}
.mobile-link{
  padding: 0.5rem 0;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--od-700);
  transition: color .2s ease;
}
.mobile-link:hover{ color: var(--od-900); }
.mobile-link--active{ color: var(--od-900); font-weight: 400; }

/* ---------- Buttons ---------- */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 0.5rem;
  border-radius: 0.75rem;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  cursor:pointer;
  transition: background .2s ease, border-color .2s ease, color .2s ease, transform .1s ease;
  border: 1px solid transparent;
  user-select:none;
  white-space:nowrap;
}
.btn:active{ transform: translateY(1px); }

.btn-primary{
  background: var(--od-700);
  color: var(--white);
}
.btn-primary:hover{ background: var(--od-800); }

.btn-outline{
  background: transparent;
  color: var(--od-700);
  border-color: rgba(203,213,225,.9);
}
.btn-outline:hover{ background: rgba(240,245,237,0.75); }

.btn-lg{ padding: 1rem 2.5rem; font-size: 1.125rem; }

/* ---------- Hero ---------- */
.hero{
  padding-top: 7rem; /* offsets fixed header */
  padding-bottom: 3.5rem;
}
@media (min-width:640px){
  .hero{ padding-top: 10rem; padding-bottom: 4rem; }
}

.grid-2{
  display:grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items:center;
}
@media (min-width:768px){
  .grid-2{
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.hero-actions{
  display:flex;
  flex-direction:column;
  gap: 0.75rem;
  margin-top: 1.25rem;
}
@media (min-width:640px){
  .hero-actions{
    flex-direction:row;
    gap: 1rem;
  }
}

.media-frame{
  overflow:hidden;
  border-radius: var(--radius-2xl);
  height: 18rem;
}
@media (min-width:640px){
  .media-frame{ height: 24rem; }
}
@media (min-width:768px){
  .media-frame{ height: 24rem; }
}

/* ---------- Slider ---------- */
.hero-slider{
  position:relative;
  overflow:hidden;
  border-radius: var(--radius-2xl);
  height: 100%;
}
.hero-track{
  display:flex;
  height:100%;
  width:100%;
  transition: transform 700ms ease-in-out;
}
.hero-slide{
  min-width:100%;
  height:100%;
}
.hero-slide img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.hero-overlay{
  pointer-events:none;
  position:absolute;
  inset:0;
  background: linear-gradient(to top, rgba(0,0,0,0.30), rgba(0,0,0,0), rgba(0,0,0,0));
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 999px;
    border: .5px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.1);
    color: #15200f70;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background .2s ease, opacity .2s ease;
    box-shadow: var(--shadow-sm);
}
.slider-btn:hover{ background: rgba(255,255,255,1); }
.slider-btn.prev{ left: 0.75rem; }
.slider-btn.next{ right: 0.75rem; }

.hero-dots{
  position:absolute;
  bottom: 1rem;
  left:50%;
  transform: translateX(-50%);
  z-index:10;
  display:flex;
  gap: 0.5rem;
}
.hero-dot {
    width: 0.65rem;
    height: 0.65rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.25);
    border: 1px solid rgba(255,255,255,0.35);
    cursor: pointer;
    transition: background .2s ease;
}
.hero-dot:hover{ background: rgba(255,255,255,0.9); }
.hero-dot.is-active{ background: rgba(255,255,255,5); }

/* ---------- Section patterns ---------- */
.section-title{
  text-align:center;
  margin-bottom: 3rem;
}
@media (min-width:640px){
  .section-title{ margin-bottom: 4rem; }
}
.max-3xl{ max-width: 48rem; margin: 0 auto; }

.cards-3{
  display:grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width:768px){
  .cards-3{ grid-template-columns: repeat(3, 1fr); gap: 2rem; }
}

.card{
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  padding: 2rem;
}

.icon-box{
  width: 3rem;
  height: 3rem;
  border-radius: 0.75rem;
  background: rgba(241,245,249,0.7);
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom: 1.5rem;
  color: var(--od-600);
  font-size: 1.25rem;
}

.split-2{
  display:grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width:768px){
  .split-2{ grid-template-columns: 1fr 1fr; gap: 3rem; }
}

.feature-block{
  border-left: 4px solid rgba(203,213,225,0.9);
  padding-left: 1.5rem;
  margin-bottom: 2rem;
}

.link-inline{
  color: var(--od-700);
  font-weight: 500;
  transition: color .2s ease;
}
.link-inline:hover{ color: var(--od-800); }

/* ---------- clients images ---------- */
.clients-img{
  border-radius: var(--radius-2xl);
  overflow:hidden;
  border: 1px solid rgba(203,213,225,0.9);
  background: var(--white);
  margin: 0 auto 1.5rem auto;
  height: 7rem;
}

/* ---------- Services images ---------- */
.service-img{
  border-radius: var(--radius-2xl);
  overflow:hidden;
  border: 1px solid rgba(203,213,225,0.9);
  background: var(--white);
  margin: 0 auto 1.5rem auto;
  height: 12.5rem;
}
.service-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* ---------- Process ---------- */
.process-3{
  display:grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}
@media (min-width:768px){
  .process-3{ grid-template-columns: repeat(3, 1fr); gap: 3rem; }
}

.step{
  text-align:center;
}
.step-badge{
  width: 5rem;
  height: 5rem;
  border-radius: 999px;
  background: var(--od-700);
  color: var(--white);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 600;
  font-size: 1.5rem;
  margin: 0 auto 1.5rem auto;
}

/* ---------- FAQ ---------- */
.faq-wrap{
  max-width: 48rem;
  margin: 0 auto;
  display:grid;
  gap: 1rem;
}
.faq{
  border: 1px solid rgba(203,213,225,0.9);
  border-radius: var(--radius-xl);
  background: var(--white);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}
@media (min-width:640px){
  .faq{ padding: 1.5rem; }
}

.faq summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap: 1rem;
}
.faq summary::-webkit-details-marker{ display:none; }

.faq-q{
  font-size: 1rem;
  font-weight: 500;
  color: var(--od-900);
  margin:0;
}
@media (min-width:640px){
  .faq-q{ font-size: 1.125rem; }
}

.faq-toggle{
  width: 2rem;
  height: 2rem;
  border-radius: 0.75rem;
  border: 1px solid rgba(203,213,225,0.9);
  color: var(--od-700);
  display:flex;
  align-items:center;
  justify-content:center;
  transition: background .2s ease, transform .2s ease;
  flex: 0 0 auto;
  margin-top: 0.125rem;
}
.faq[open] .faq-toggle{
  background: rgba(240,245,237,0.7);
}
.faq[open] .faq-toggle svg{
  transform: rotate(45deg);
}
.faq-a{
  margin-top: 1rem;
  color: var(--od-600);
}

/* ---------- Trust block ---------- */
.trust-logo{
  margin: 0 auto 2rem auto;
  width: 11rem;
}
@media (min-width:640px){
  .trust-logo{ width: 14rem; }
}
@media (min-width:768px){
  .trust-logo{ width: 16rem; }
}

.trust-kicker{
  font-size: 0.875rem;
  color: var(--od-600);
  margin: 0 0 1rem 0;
}

/* ---------- Footer ---------- */
.site-footer{
  background: var(--od-900);
  color: var(--white);
  padding: 3rem 0;
}

.footer-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}
@media (min-width:640px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}
@media (min-width:1024px){
  .footer-grid{ grid-template-columns: repeat(4, 1fr); }
}

.footer-brand img{
  height: 3rem;
  width:auto;
  margin-bottom: 1rem;
}
.footer-muted{
  color: rgba(227,238,221,0.85);
  font-size: 0.875rem;
}

.footer-title{
  margin: 0 0 1rem 0;
  font-weight: 500;
  font-size: 1rem;
}
.footer-links{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(227,238,221,0.85);
}
.footer-links a:hover{ color: var(--white); }

.footer-bottom{
  border-top: 1px solid rgba(110,137,95,0.35);
  padding-top: 2rem;
  text-align:center;
  color: rgba(227,238,221,0.7);
  font-size: 0.75rem;
}

/* ---------- Scroll to top ---------- */
.scroll-top{
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 50;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  background: var(--od-700);
  color: var(--white);
  border: 1px solid rgba(0,0,0,0.08);
  box-shadow: 0 8px 18px rgba(0,0,0,0.18);
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  transition: background .2s ease, opacity .2s ease, transform .1s ease;
}
.scroll-top:hover{ background: var(--od-800); }
.scroll-top:active{ transform: translateY(1px); }


/* =========================================================
   Financial Planning page additions
   ========================================================= */

.page-hero{
  padding-top: 7rem;     /* offset fixed header */
  padding-bottom: 3rem;
}
@media (min-width:640px){
  .page-hero{ padding-top: 10rem; padding-bottom: 4rem; }
}

.page-hero-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items:center;
}
@media (min-width:768px){
  .page-hero-grid{
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
  }
}

.page-hero-title{
  font-family: var(--font-serif);
  font-weight: 400;
  color: var(--od-900);
  line-height: 1.1;
  margin: 0 0 1rem 0;
  font-size: 2.25rem;
}
@media (min-width:640px){
  .page-hero-title{ font-size: 3rem; }
}

.page-hero-media{
  overflow:hidden;
  border-radius: var(--radius-2xl);
  height: 11.5rem;
  border: 1px solid rgba(203,213,225,0.9);
  background: var(--white);
}
@media (min-width:640px){
  .page-hero-media{ height: 12.5rem; }
}
@media (min-width:768px){
  .page-hero-media{ height: 12.5rem; }
}

.page-hero-media img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.rich-text p{
  margin: 0 0 1rem 0;
  color: var(--od-600);
}
.rich-text p:last-child{ margin-bottom:0; }

.callout{
  background: rgba(240,245,237,0.8);
  border: 1px solid rgba(203,213,225,0.85);
  border-radius: var(--radius-2xl);
  padding: 2rem;
}

.bullet-list{
  list-style:none;
  padding:0;
  margin:0;
  display:grid;
  gap: .5rem;
  color: var(--od-700);
}
.bullet-list li{
  position:relative;
  padding-left: 1.1rem;
}
.bullet-list li::before{
  content:"•";
  position:absolute;
  left:0;
  top:0;
  color: rgba(110,137,95,0.95);
}

.process-4{
  display:grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width:768px){
  .process-4{
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.step-card{
  background: var(--white);
  border: 1px solid rgba(203,213,225,0.9);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem;
}

.step-head{
  display:flex;
  align-items:center;
  gap: .75rem;
  margin-bottom: .75rem;
}

.step-num{
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: var(--od-700);
  color: var(--white);
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight: 600;
}

.quote{
  font-family: var(--font-serif);
  color: var(--od-900);
  font-size: 1.35rem;
  line-height: 1.35;
  margin: 0 0 1rem 0;
}
.rule{
  width: 6rem;
  height: 1px;
  background: rgba(203,213,225,0.95);
  margin: 1rem auto;
}

/* =========================================================
   Desktop hover dropdown: Financial Planning & Services
   ========================================================= */

.nav-dropdown{
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown__toggle{
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: .4rem;
}

.nav-caret{
  font-size: .85em;
  opacity: .8;
  transition: transform .2s ease, opacity .2s ease;
}

.nav-dropdown__menu{
  position: absolute;
  top: 100%;
  margin-top: 8px;
  left: -12px;
  min-width: 16rem;
  background: rgba(255,255,255,0.98);
  border: 1px solid rgba(203,213,225,.75);
  border-radius: 0.9rem;
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
  padding: .4rem;
  z-index: 60;

  /* hidden by default */
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

/* Hover bridge: prevents dropdown from closing while moving cursor to menu */
.nav-dropdown__menu::before{
  content:"";
  position:absolute;
  left:0;
  right:0;
  top:-10px;     /* bridge height */
  height:10px;
}


/* Show on hover OR when focusing within (keyboard) */
.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown:hover .nav-caret,
.nav-dropdown:focus-within .nav-caret{
  transform: rotate(180deg);
  opacity: 1;
}

.nav-dropdown__item{
  display: block;
  padding: .55rem .7rem;
  border-radius: .7rem;
  font-size: .8rem;
  font-weight: 300;
  color: var(--od-700);
  text-decoration: none;
  transition: background .2s ease, color .2s ease;
}

.nav-dropdown__item:hover{
  background: rgba(240,245,237,0.9);
  color: var(--od-900);
}

.nav-dropdown__item--active{
  font-weight: 400;
  color: var(--od-900);
}

/* =========================================================
   Mobile dropdown (touch-friendly) using <details>
   ========================================================= */

.mobile-details{
  border: 0;
  padding: 0;
  margin: 0;
}

.mobile-details summary{
  list-style: none;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;

  padding: .6rem 0;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--od-700);
}

.mobile-details summary::-webkit-details-marker{ display:none; }

.mobile-details[open] summary{
  color: var(--od-900);
}

.mobile-details__menu{
  padding: .25rem 0 .6rem 0;
  display: grid;
  gap: .25rem;
}

.mobile-sub-link{
  display: block;
  padding: .45rem 0;
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--od-700);
  text-decoration: none;
}

.mobile-sub-link:hover{ color: var(--od-900); }

.mobile-sub-link--active{
  color: var(--od-900);
  font-weight: 400;
}

/* Caret rotation (reuses your .nav-caret icon) */
.mobile-details .nav-caret{
  transition: transform .2s ease, opacity .2s ease;
  opacity: .85;
}

.mobile-details[open] .nav-caret{
  transform: rotate(180deg);
  opacity: 1;
}

/*================Feature block link styles - Long and short of it================ */

.feature-block.feature-link{
  display:block;
  color:inherit;
  text-decoration:none;
  border-radius:12px;
  padding: 14px 16px; /* add padding if your .feature-block doesn't already */
  transition: background-color .18s ease, transform .18s ease;
}

.feature-block.feature-link:hover,
.feature-block.feature-link:focus-visible{
  background: rgba(240,245,237,0.9);
  transform: translateY(-1px);
  outline: none;
}

.feature-block.feature-link:focus-visible{
  outline: 2px solid rgba(155,181,141,0.8);
  outline-offset: 3px;
}

/* =========================================================
   Podcast page
   ========================================================= */

.podcast-hero{
  padding-top: 7.5rem; /* offset fixed header */
}

.podcast-hero-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  align-items: start;
}
@media (min-width: 900px){
  .podcast-hero-grid{
    grid-template-columns: 1.4fr .6fr;
    gap: 2rem;
    align-items: start;
  }
}

.podcast-hero-actions{
  display:flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.podcast-callout{
  padding: 1.5rem;
}

.podcast-section-head{
  margin-bottom: 1.25rem;
}

.podcast-player,
.podcast-playlist{
  padding: 0;
  overflow: hidden;
  border-radius: var(--radius-2xl);
}

/* Responsive iframe wrapper */
.podcast-iframe{
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
  display:block;
}

/* Make the playlist a little taller on desktop so the list is usable */
@media (min-width: 900px){
  .podcast-iframe--playlist{
    aspect-ratio: 16 / 8;
  }
}


