body{
  margin:0;
  font-family:'Lato',sans-serif;
  background:#f4f6f9;
  color:#1f2937;
  font-size:17px;
}

*{
  box-sizing:border-box;
}

.container{
  width:min(92%,1180px);
  margin:0 auto;
}

.content-narrow{
  max-width:980px;
  margin:0 auto;
}

.center{
  text-align:center;
}

/* HEADER */

.site-header{
  background:#fff;
  border-bottom:1px solid #e5e7eb;
}

.header-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 0;
  position:relative;
}

.logo img{
  display:block;
  max-height:60px;
}

.nav{
  display:flex;
  gap:26px;
  align-items:center;
}

.nav a{
  text-decoration:none;
  color:#1f2937;
  font-size:15px;
  font-weight:500;
}

.nav-item{
  position:relative;
}

.dropdown{
  position:absolute;
  top:100%;
  left:0;
  background:#fff;
  min-width:260px;
  display:none;
  border:1px solid #e5e7eb;
  box-shadow:0 8px 24px rgba(0,0,0,.08);
  z-index:999;
}

.nav-item:hover .dropdown{
  display:block;
}

.dropdown a{
  display:block;
  padding:12px 18px;
}

/* SECTIONS */

.section{
  padding:90px 0;
}

.section.alt{
  background:#e9eef5;
}

h1,h2,h3,h4{
  line-height:1.25;
  color:#111827;
}

h1{
  font-size:48px;
  font-weight:300;
  margin:0 0 24px;
}

h2{
  font-size:34px;
  font-weight:600;
  margin:0 0 24px;
}

h3{
  font-size:22px;
  font-weight:600;
  margin:28px 0 12px;
}

h4{
  font-size:18px;
  margin:24px 0 10px;
}

p{
  line-height:1.75;
  margin:0 0 20px;
}

ul{
  line-height:1.7;
}

a{
  color:#0645d8;
}

.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
}

/* BUTTON */

.btn{
  display:inline-block;
  padding:13px 24px;
  background:#2563eb;
  color:#fff;
  text-decoration:none;
  border-radius:7px;
  font-size:15px;
  font-weight:600;
}

.btn:hover{
  opacity:.95;
}

.btn-secondary{
  background:#111827;
}

/* HOME HERO */

.hero-home{
  background:#e9eef5;
  padding:80px 0;
}

.hero-grid{
  align-items:center;
}

.hero-copy{
  max-width:560px;
}

.hero-copy h1{
  font-size:48px;
  font-weight:300;
}

.hero-copy p{
  max-width:520px;
}

.hero-video{
  width:100%;
}

.video-frame{
  position:relative;
  width:100%;
  padding-top:56.25%;
  border-radius:10px;
  overflow:hidden;
  background:#111827;
  box-shadow:0 10px 28px rgba(0,0,0,.10);
}

.video-frame iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

/* PRODUCT PAGES */

.product-hero{
  background:#e9eef5;
  padding:55px 0 65px;
}

.product-hero-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:70px;
  align-items:center;
}

.product-hero-copy{
  max-width:520px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.product-hero-copy h1{
  font-size:48px;
  font-weight:300;
  margin:0 0 18px;
}

.product-kicker{
  font-size:22px;
  color:#374151;
  margin-bottom:22px;
}

.product-actions{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
  margin-top:28px;
}

.product-hero-media{
  width:100%;
}

.product-video{
  position:relative;
  width:100%;
  padding-top:56.25%;
  border-radius:14px;
  overflow:hidden;
  background:#111827;
  box-shadow:0 12px 32px rgba(0,0,0,.14);
}

.product-video video,
.product-video iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  object-fit:cover;
}

.product-media-cta{
  margin-top:22px;
}

.product-section{
  padding:95px 0;
}

.product-section.alt{
  background:#e9eef5;
}

.product-narrow{
  max-width:900px;
  margin:0 auto;
}

.product-list{
  padding-left:24px;
  margin-bottom:26px;
}

.product-list li{
  margin-bottom:10px;
}

.product-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
  margin-top:38px;
}

.product-card{
  background:#fff;
  border-radius:18px;
  padding:34px;
  border:1px solid #e5e7eb;
  box-shadow:0 10px 26px rgba(0,0,0,.05);
  display:flex;
  flex-direction:column;
  height:100%;
  transition:transform .25s ease,box-shadow .25s ease;
}

.product-card:hover{
  transform:translateY(-2px);
  box-shadow:0 16px 36px rgba(0,0,0,.10);
}

.product-card h3{
  margin-top:0;
  font-size:24px;
}

.product-price{
  font-size:30px;
  font-weight:700;
  color:#111827;
  margin:14px 0 20px;
}

.product-card ul{
  padding-left:22px;
  margin-bottom:22px;
}

.product-card li{
  margin-bottom:9px;
}

.paypal-form{
  margin-top:auto;
  text-align:center;
}

.paypal-form input[type="submit"]{
  display:inline-block;
  border:0;
  border-radius:8px;
  padding:13px 22px;
  background:#2563eb;
  color:#fff;
  font-size:15px;
  font-weight:700;
  cursor:pointer;
}

.paypal-note{
  font-size:13px;
  color:#6b7280;
  margin-top:12px;
}

.subscribe-button{
  width:260px;
  max-width:100%;
  height:auto;
}

.faq-list{
  margin-top:30px;
  border:1px solid #d8dee8;
  border-radius:18px;
  overflow:hidden;
  background:#fff;
  box-shadow:0 8px 24px rgba(0,0,0,.06);
}

.faq-list details{
  border-bottom:1px solid #d8dee8;
}

.faq-list details:last-child{
  border-bottom:0;
}

.faq-list summary{
  cursor:pointer;
  padding:18px 22px;
  font-weight:700;
}

.faq-list details div{
  padding:0 22px 22px;
}

.product-section .btn{
  margin-top:20px;
}

/* HOME CONTENT */

.content-narrow .grid-2{
  gap:60px;
}

.content-narrow .grid-2 h3{
  margin-top:18px;
}

.content-narrow .grid-2 p{
  font-size:16px;
}

/* BLOG */

.blog-post-section{
  background:#f4f6f9;
}

.blog-layout{
  display:grid;
  grid-template-columns:minmax(0,720px) minmax(380px,420px);
  gap:40px;
  justify-content:center;
  align-items:start;
}

.blog-main{
  min-width:0;
}

.blog-article{
  background:#fff;
  padding:42px;
  border-radius:18px;
  box-shadow:0 6px 20px rgba(0,0,0,.06);
  overflow:hidden;
}

.blog-meta{
  color:#6b7280;
  margin-bottom:28px;
}

.featured-image{
  width:100%;
  height:auto;
  display:block;
  border-radius:18px;
  margin:20px 0 35px;
}

.card-clean,
.blog-example-box{
  background:#f8fafc;
  border:1px solid #e5e7eb;
  border-radius:18px;
  padding:28px;
  margin-top:35px;
}

.feature-list{
  padding-left:22px;
}

.feature-list li{
  margin-bottom:12px;
}

.blog-sidebar{
  position:sticky;
  top:100px;
  width:100%;
  min-width:0;
}

.sidebar-card,
.sidebar-block{
  background:#fff;
  border-radius:18px;
  padding:24px;
  margin-bottom:25px;
  box-shadow:0 4px 18px rgba(0,0,0,.05);
  overflow:hidden;
}

.sidebar-card h3{
  margin-top:0;
}

.sidebar-card p{
  font-size:15px;
  line-height:1.6;
}

.sidebar-offer .ml-embedded{
  width:100%;
  max-width:100%;
  overflow:hidden;
}

.sidebar-offer iframe,
.sidebar-offer form,
.sidebar-offer input,
.sidebar-offer button{
  max-width:100%;
}

.sidebar-list{
  list-style:none;
  padding:0;
  margin:0;
}

.sidebar-list li{
  margin-bottom:10px;
}

.sidebar-list a{
  text-decoration:none;
  font-weight:600;
  overflow-wrap:anywhere;
}

.sidebar-list a:hover{
  text-decoration:underline;
}

.sidebar-button{
  display:block;
  text-align:center;
  background:#2563eb;
  color:#fff !important;
  padding:12px 16px;
  border-radius:8px;
  text-decoration:none;
  font-weight:700;
  margin:16px 0;
}

.sidebar-button:hover{
  background:#1d4ed8;
  text-decoration:none;
}

.sidebar-small-text{
  font-size:14px;
  color:#6b7280;
  margin:10px 0 8px;
  text-align:center;
}

.sidebar-review-qr{
  display:block;
  max-width:180px;
  width:100%;
  height:auto;
  margin:12px auto 0;
  border-radius:12px;
}

.blog-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.blog-card{
  background:#fff;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 6px 18px rgba(0,0,0,.06);
}

.blog-card img{
  width:100%;
  height:auto;
  display:block;
}

.blog-card h2,
.blog-card h3{
  margin:20px;
  font-size:22px;
}

.blog-card p{
  margin:0 20px 20px;
}

.read-more{
  display:inline-block;
  margin:0 20px 25px;
}

.blog-card a{
  color:inherit;
  text-decoration:none;
}

/* RELATED ARTICLES */

.related-articles{
  margin-top:35px;
}

.related-articles h2{
  margin-bottom:24px;
}

.related-article-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:24px;
}

.related-article-card{
  background:#fff;
  border:1px solid #e5e7eb;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 4px 14px rgba(0,0,0,.05);
}

.related-article-card img{
  width:100%;
  height:170px;
  object-fit:cover;
  display:block;
}

.related-article-card h3{
  font-size:18px;
  line-height:1.3;
  margin:18px 18px 10px;
}

.related-article-card p{
  font-size:15px;
  line-height:1.55;
  margin:0 18px 18px;
}

.related-article-card a{
  text-decoration:none;
}

.related-article-card a:hover{
  text-decoration:underline;
}

@media(max-width:700px){
  .related-article-grid{
    grid-template-columns:1fr;
  }

  .related-article-card img{
    height:200px;
  }
}

/* NEWS CATEGORY CARDS */

.category-grid{
  display:grid !important;
  grid-template-columns:repeat(6,1fr) !important;
  gap:2rem !important;
  max-width:1120px !important;
  margin:3rem auto 0 !important;
}

.category-card{
  grid-column:span 2 !important;
  background:#fff;
  border-radius:18px;
  padding:2rem;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
  display:flex !important;
  align-items:center !important;
  gap:1.5rem !important;
  min-height:210px !important;
}

.category-card:nth-child(4){
  grid-column:2 / span 2 !important;
}

.category-card:nth-child(5){
  grid-column:4 / span 2 !important;
}

.category-icon{
  width:86px;
  height:86px;
  border-radius:50%;
  background:#f3f7fb;
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 86px;
  font-size:3rem;
}

.category-card-content{
  flex:1;
}

.category-card-content h3{
  margin:0 0 .75rem;
  line-height:1.25;
}

.category-card-content p{
  margin:0 0 1rem;
  line-height:1.6;
}

.category-card-content .read-more{
  display:inline-block;
  margin:0;
  font-weight:700;
  text-decoration:none;
}

/* VIDEO */

.video-embed{
  margin:35px 0;
}

.ratio{
  position:relative;
}

.ratio-16x9{
  padding-top:56.25%;
}

.ratio iframe,
.ratio video{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:none;
  border-radius:16px;
  background:#111827;
}

/* IMAGES */

.image-centre{
  text-align:center;
}

.hero-image{
  width:100%;
  border-radius:18px;
}

.bottom-rounded{
  display:block;
  margin:20px auto 0;
  width:100%;
  max-width:820px;
  border-radius:42px;
  box-shadow:0 10px 28px rgba(0,0,0,.08);
}

.image-caption{
  text-align:center;
  color:#6b7280;
  margin-top:18px;
  font-size:14px;
}

/* CONTACT */

.contact-form{
  display:flex;
  flex-direction:column;
  gap:14px;
}

.contact-form label{
  display:block;
  margin-bottom:6px;
  font-weight:600;
}

.contact-form input,
.contact-form textarea,
.contact-form select{
  width:100%;
  padding:15px 16px;
  margin-bottom:18px;
  border:1px solid #d8d8d8;
  border-radius:10px;
  font-size:16px;
}

.contact-form textarea{
  resize:vertical;
}

.contact-form .btn{
  width:100%;
  margin-top:8px;
}

/* ABOUT */

.about-flex{
  display:flex;
  align-items:center;
  gap:60px;
}

.about-image{
  flex:0 0 360px;
}

.about-text{
  flex:1;
}

/* PROMO */

.promo-section{
  margin:30px 0;
  text-align:center;
}

.promo-section a{
  display:block;
  margin:0 auto 28px;
}

.promo-banner{
  display:block;
  width:100%;
  max-width:728px;
  margin:0 auto;
  border-radius:18px;
  overflow:hidden;
  box-shadow:0 10px 28px rgba(0,0,0,.08);
  transition:transform .25s ease,box-shadow .25s ease;
}

.promo-banner:hover{
  transform:translateY(-3px);
  box-shadow:0 14px 34px rgba(0,0,0,.12);
}

/* CONSULTATION */

.consultation-grid{
  display:grid;
  grid-template-columns:minmax(0,1fr) minmax(500px,.9fr);
  gap:60px;
  align-items:start;
}

.consultation-content,
.consultation-form{
  min-width:0;
}

.consultation-form{
  position:relative;
}

.form-card{
  background:#fff;
  padding:36px;
  border-radius:20px;
  box-shadow:0 10px 35px rgba(0,0,0,.08);
}

.form-card h2{
  margin-top:0;
  margin-bottom:12px;
}

.form-card p{
  margin-bottom:24px;
}

.form-card input,
.form-card textarea,
.form-card select{
  width:100%;
  padding:15px 16px;
  border:1px solid #d8d8d8;
  border-radius:10px;
  margin-bottom:18px;
  font-size:16px;
}

.form-card input[type="submit"]{
  background:#2563eb;
  color:#fff;
  border:0;
  cursor:pointer;
  transition:.3s ease;
}

.form-card input[type="submit"]:hover{
  opacity:.9;
}

.form-honeypot{
  position:absolute;
  left:-9999px;
  top:-9999px;
}

/* MORE DOORS ONLINE VIDEO PAGE */

.more-doors-online{
  padding:70px 0 0;
}

.more-doors-online .content-narrow{
  max-width:980px;
}

.more-doors-online h1{
  margin-bottom:18px;
}

.more-doors-online .lead{
  max-width:760px;
  margin-bottom:32px;
}

.video-wrapper{
  max-width:960px;
  margin:0 auto 34px;
  border-radius:18px;
  overflow:hidden;
  background:#111827;
  box-shadow:0 14px 36px rgba(0,0,0,.14);
}

.video-wrapper video{
  display:block;
  width:100%;
  height:auto;
}

.video-cta{
  max-width:760px;
  margin:0 0 60px;
}

.video-cta h2{
  font-size:30px;
  margin-bottom:14px;
}

.video-cta p{
  margin-bottom:22px;
}

/* FOOTER */

.site-footer{
  background:#111827;
  color:#fff;
  padding:60px 0 30px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.footer-grid a{
  color:#fff;
  text-decoration:none;
}

.footer-bottom{
  text-align:center;
  margin-top:40px;
  opacity:.7;
  font-size:14px;
}

.footer-nav-toggle{
  display:none;
}

.footer-nav{
  display:flex;
  flex-direction:column;
  gap:8px;
}

/* MOBILE NAV */

.nav-toggle{
  display:none;
  background:#12355b;
  color:#fff;
  border:0;
  padding:10px 14px;
  border-radius:8px;
  font-size:22px;
  cursor:pointer;
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:4px;
}

.nav-toggle span{
  display:block !important;
  width:22px !important;
  height:2px !important;
  background:#fff !important;
  border-radius:2px;
  margin:0 !important;
}

/* COOKIE BANNER */

.cookie-banner{
  position:fixed !important;
  bottom:20px !important;
  left:20px !important;
  right:20px !important;
  width:auto !important;
  max-width:none !important;
  background:#111827;
  color:#fff;
  padding:18px;
  border-radius:10px;
  z-index:999999 !important;
  display:none;
  box-shadow:0 10px 30px rgba(0,0,0,.25);
}

.cookie-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

.cookie-banner p{
  margin:0;
  font-size:.95rem;
  color:#fff;
}

.cookie-banner a{
  color:#60a5fa;
}

.cookie-banner button{
  background:#2563eb;
  border:0;
  color:#fff;
  padding:10px 18px;
  border-radius:6px;
  cursor:pointer;
  font-weight:600;
}

.cookie-banner button:hover{
  background:#1d4ed8;
}

/* BEM NEWS TOPIC GRID */

.bem-topic-grid{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:28px;
  max-width:1120px;
  margin:3rem auto 0;
}

.bem-topic-card{
  width:calc(33.333% - 20px);
  background:#fff;
  border-radius:18px;
  padding:32px;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
  display:flex;
  align-items:center;
  gap:24px;
  min-height:210px;
}

.bem-topic-icon{
  width:82px;
  height:82px;
  border-radius:50%;
  background:#f3f7fb;
  display:flex;
  align-items:center;
  justify-content:center;
  flex:0 0 82px;
  font-size:42px;
}

.bem-topic-content{
  flex:1;
}

.bem-topic-content h3{
  margin:0 0 10px;
  font-size:22px;
  line-height:1.25;
}

.bem-topic-content p{
  margin:0 0 14px;
  font-size:16px;
  line-height:1.55;
}

.bem-topic-link{
  display:inline-block;
  font-weight:700;
  text-decoration:none;
}

/* MOBILE */

@media(max-width:1100px){
  .blog-layout{
    grid-template-columns:minmax(0,1fr) minmax(360px,400px);
    gap:30px;
  }
}

@media(max-width:980px){
  .consultation-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:900px){

  .nav-toggle{
    display:flex !important;
  }

  .nav{
    display:none;
    position:absolute;
    top:100%;
    left:0;
    right:0;
    background:#fff;
    border-top:1px solid #e5e7eb;
    box-shadow:0 10px 24px rgba(0,0,0,.08);
    padding:18px;
    flex-direction:column;
    gap:0;
    z-index:9999;
  }

  .nav.active{
    display:flex;
  }

  .nav a{
    display:block;
    width:100%;
    padding:13px 0;
    border-bottom:1px solid #e5e7eb;
  }

  .dropdown{
    position:static;
    display:block;
    box-shadow:none;
    border:0;
    padding-left:15px;
  }

  .grid-2,
  .blog-layout,
  .footer-grid,
  .blog-grid,
  .product-hero-grid,
  .product-grid{
    grid-template-columns:1fr;
  }

  .blog-sidebar{
    position:static;
  }

  .category-grid{
    grid-template-columns:repeat(2,1fr) !important;
  }

  .category-card,
  .category-card:nth-child(4),
  .category-card:nth-child(5){
    grid-column:auto !important;
  }

  .bem-topic-card{
    width:calc(50% - 14px);
  }

  .section,
  .product-section{
    padding:60px 0;
  }

  .hero-home,
  .product-hero{
    padding:55px 0;
  }

  h1,
  .hero-copy h1,
  .product-hero-copy h1{
    font-size:36px;
  }

  h2{
    font-size:28px;
  }

  .blog-article,
  .product-card{
    padding:28px;
  }

  .site-footer{
    padding:40px 0 28px;
  }

  .footer-grid{
    gap:24px;
  }

  .footer-nav a{
    font-size:15px;
    line-height:1.5;
  }

  .footer-nav-toggle{
    display:flex !important;
    align-items:center;
    justify-content:space-between;
    width:100%;
    padding:12px 14px;
    border:0;
    background:#2563eb;
    color:#fff;
    border-radius:8px;
    font-weight:700;
    cursor:pointer;
  }

  .footer-nav{
    display:none !important;
    margin-top:14px;
  }

  .footer-nav.active{
    display:flex !important;
  }
}

@media(max-width:720px){
  .cookie-inner{
    flex-direction:column;
    align-items:flex-start;
  }

  .cookie-banner button{
    width:100%;
  }
}

@media(max-width:640px){

  body{
    font-size:16px;
  }

  .blog-article{
    padding:22px;
    border-radius:14px;
  }

  .sidebar-card,
  .sidebar-block{
    padding:22px;
  }

  .category-grid{
    grid-template-columns:1fr !important;
  }

  .category-card{
    min-height:auto !important;
    padding:1.5rem;
  }

  .category-icon{
    width:64px;
    height:64px;
    flex-basis:64px;
    font-size:2.4rem;
  }

  .bem-topic-card{
    width:100%;
  }

  .more-doors-online{
    padding:45px 0 0;
  }

  .video-cta h2{
    font-size:26px;
  }
}

.sidebar-offer .ml-embedded,
.sidebar-offer .ml-form-embedContainer,
.sidebar-offer .ml-form-embedWrapper{
  width:100% !important;
  max-width:100% !important;
  overflow:hidden !important;
}

/* Local Business Visibility Podcast */
.podcast-hero{background:linear-gradient(135deg,#0c2745,#123f6d);color:#fff;padding:90px 0}.podcast-hero h1{color:#fff}.podcast-hero h1,.podcast-episode-hero h1{max-width:900px;margin-left:auto;margin-right:auto}.podcast-kicker{text-transform:uppercase;letter-spacing:.11em;font-weight:800;font-size:14px;color:#65c8ff}.podcast-intro{font-size:21px;line-height:1.65;max-width:850px;margin:0 auto 30px}.podcast-heading{margin-bottom:38px}.podcast-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:30px}.podcast-card{display:grid;grid-template-columns:210px 1fr;background:#fff;border:1px solid #dce4ec;border-radius:16px;overflow:hidden;box-shadow:0 10px 30px rgba(12,39,69,.08)}.podcast-card-image img{width:100%;height:100%;min-height:260px;object-fit:cover;display:block}.podcast-card-placeholder{min-height:260px;display:flex;align-items:center;justify-content:center;text-align:center;padding:24px;background:linear-gradient(145deg,#102f50,#2563a2);color:#fff;font-size:21px;font-weight:800;line-height:1.35}.podcast-card-body{padding:27px}.podcast-card h3{font-size:24px;margin:7px 0 13px}.podcast-card h3 a,.podcast-read{text-decoration:none}.podcast-meta{font-size:14px;text-transform:uppercase;letter-spacing:.05em;color:#526273;font-weight:700}.podcast-read{font-weight:800}.podcast-empty{padding:30px;background:#eef5fb;border-radius:14px}.podcast-episode-hero{background:#eef5fb;padding:65px 0}.podcast-episode-hero .podcast-intro{margin-left:0}.podcast-artwork{max-width:440px;width:100%;height:auto;display:block;margin:0 auto 35px;border-radius:15px}.podcast-video{position:relative;padding-top:56.25%;margin:0 0 30px}.podcast-video iframe{position:absolute;inset:0;width:100%;height:100%;border:0;border-radius:13px}.podcast-links{display:flex;flex-wrap:wrap;gap:10px;margin:0 0 32px}.podcast-links .btn{margin:0}.podcast-copy{font-size:18px;line-height:1.75}.podcast-host{margin-top:30px;padding-top:20px;border-top:1px solid #dce4ec}
@media(max-width:1000px){.podcast-grid{grid-template-columns:1fr}}@media(max-width:640px){.podcast-hero{padding:60px 0}.podcast-card{grid-template-columns:1fr}.podcast-card-placeholder,.podcast-card-image img{min-height:220px}.podcast-intro{font-size:18px}.podcast-links .btn{width:100%;text-align:center}}
