@import url("https://fonts.googleapis.com/css?family=Inter:wght@600;700;800;900");

:root {
  /* BRAND COLORS (LOCKED) */
  --dc-cream2: #f8efd4;
  --dc-cream2-rgb: 248, 239, 212;
  --dc-cream: #fefaec;
  --dc-cream-rgb: 254, 250, 236;
  --dc-mocha: #e7ddc2;
  --dc-mocha-rgb: 231, 221, 194;
  --dc-mocha-dark: #b9b19b;
  --dc-mocha-dark-rgb: 185, 177, 155;
  --dc-mocha-dark-dark: #948e7c;
  --dc-mocha-dark-dark-rgb: 148, 142, 124;
  --dc-deer: #745548;
  --dc-deer-rgb: 116, 85, 72;
  --dc-black: #050f28;
  --dc-black-rgb: 5, 15, 40;
  --dc-gold: #c9a24d;
  --dc-gold-rgb: 201, 162, 77;
  --dc-red: #a13a22;
  --dc-red-rgb: 161, 58, 34;
  --dc-wheat: #eadcc4;
  --dc-wheat-rgb: 234, 220,196;
  --dc-burgundy: #53110c;
  --dc-burgundy-lite: #7a1b14;
  /* GENERIC COLOR LABELS */
  --dc-bg: var(--dc-cream2);
  --dc-card: var(--dc-cream2);
  --dc-text: var(--dc-black);
  --dc-text-muted: var(--dc-mocha);
  --dc-border: var(--dc-mocha-dark);
  --dc-accent: var(--dc-gold);
  --dc-accent-text: var(--dc-black);
  --dc-error: var(--dc-red);
  --dc-success: var(--dc-green);
  --dc-hover: var(--dc-wheat);

  --dc-bg-dark: var(--dc-black);
  --dc-card-dark: var(--dc-mocha-dark-dark);
  --dc-text-dark: var(--dc-cream);
  --dc-text-dark-muted: var(--dc-cream2);
  --dc-border-dark: var(--dc-mocha);
  --dc-accent-dark: var(--dc-gold);
  --dc-accent-dark-text: var(--dc-black);

  --dc-depth1: var(--dc-mocha);
  --dc-depth2: var(--dc-mocha-dark);
  --dc-depth3: var(--dc-mocha-dark-dark);


  --dc-bg-rgb: var(--dc-cream-rgb);
  --dc-card-rgb: var(--dc-cream2-rgb);
  --dc-text-rgb: var(--dc-black-rgb);
  --dc-text-muted-rgb: var(--dc-mocha-rgb);
  --dc-border-rgb: var(--dc-mocha-dark-rgb);
  --dc-accent-rgb: var(--dc-gold-rgb);
  --dc-accent-text-rgb: var(--dc-black-rgb);
  --dc-error-rgb: var(--dc-red-rgb);
  --dc-success-rgb: var(--dc-green-rgb);
  --dc-bg-dark-rgb: var(--dc-black-rgb);
  --dc-card-dark-rgb: var(--dc-mocha-dark-dark-rgb);
  --dc-text-dark-rgb: var(--dc-cream-rgb);
  --dc-text-dark-muted-rgb: var(--dc-cream2-rgb);
  --dc-border-dark-rgb: var(--dc-mocha-rgb);
  --dc-accent-dark-rgb: var(--dc-gold-rgb);
  --dc-accent-dark-text-rgb: var(--dc-black-rgb);
  --dc-depth1-rgb: var(--dc-mocha-rgb);
  --dc-depth2-rgb: var(--dc-mocha-dark-rgb);
  --dc-depth3-rgb: var(--dc-mocha-dark-dark-rgb);
  
  --dc-content-max: 1120px;
  --dc-content-gutter: 24px;

  --text: #050f28;
  --bg: var(--dc-cream2);
  --teal-link: #26a8ab;
  --teal-link-hover: #2fc8cb;
  --visited: #6b7280;
  --active: #2fc8cb;
  --gold: #d1a45a;

  --content-left: 0px;
  --gold-soft: rgba(201, 162, 77, 0.35);
  --night: #050b15;
  --night-2: #06162a;
/*
  --color1: #f8efd4;
  --color2: #e7ddc2;
  --color3: #def3f5;
  --article-row-bg: #f8efd4;
  --article-row-alt: #e7ddc2;
  --article-hover: #def3f5;
*/
  --dc-charcoal-rgb: 5 15 40;
  --dc-vanilla-rgb: 248, 239, 212;
  --line: rgba(5, 15, 40, 0.18);
  --muted: rgba(244,246,251,0.78);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--dc-bg);
  color: var(--dc-text);
}

h1, h2, h3, h4, h5, h6, p, ul, li {
  color: var(--dc-text);
}

ul,
ol {
  color: inherit;
  margin: 0.75em 0 1em 0;
  padding: 0;
}

li {
  color: inherit;
  font-weight: inherit;
  margin: 0.35em 0;
  line-height: 1.6;
}

ul {
  list-style-type: square;
  list-style-position: outside;
  margin: 0.75em 0 1em 70px;
  padding-left: 0;
}

ul li::marker {
  color: rgba(5, 15, 40, 0.75);
  font-size: 0.9em;
}

ul.legal-list {
  list-style-type: square;
  list-style-position: outside;
  margin: 0.75em 0 1em 50px;
  padding-left: 0;
}

ul.legal-list li {
  margin: 0.35em 0;
  line-height: 1.6;
}

ul.legal-list li::marker {
  color: rgba(5, 15, 40, 0.75);
  font-size: 0.9em;
}

.legal-body ul {
  padding-left: 1.8rem !important;
  list-style: disc !important;
}

.legal-body li {
  padding-left: 0 !important;
}

.legal-body li::before {
  content: none !important;
}

audio {
  height: auto !important;
  min-height: 34px !important;
}

.hero-needs-js {
  --hero-bg: linear-gradient(
    to bottom,
    var(--dc-black),
    var(--dc-mocha-dark)
  );
}

/* =========================
   Global logo glass block
   ========================= */

.brand {
  padding: 10px;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  box-shadow:
    0 0 0 1px rgb(var(--dc-cream2-rgb) / .16),
    0 12px 28px rgb(var(--dc-black-rgb) / .40),
    inset 0 1px 0 rgb(var(--dc-cream2-rgb) / .10);
}

/* =========================
   Global Section Content Lane
   Core standard for visitor pages
   Bucket files may tune variables only
   ========================= */

.section {
  background-color: var(--dc-cream2);
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}

.section > .section-content {
  width: min(var(--dc-content-max), calc(100% - (var(--dc-content-gutter) * 2)));
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.section-header-link {
  display: block;
  text-decoration: none;
}

/* =========================
   Global standard section copy
   Applies to normal visitor-page body copy
   ========================= */

/* =========================
   Global legal/editorial body copy
   ========================= */

.legal-body p,
.legal-body li {
  font-family: "Inter", sans-serif;
  font-size: 1.08rem;
  font-weight: 400;
  line-height: 1.45;
  color: var(--dc-text);
}

.legal-body p {
  margin-top: 0;
  margin-bottom: 1.08em;
}

.legal-body ul,
.legal-body ol {
  margin-top: 0.55em;
  margin-bottom: 1.15em;
  padding-left: 1.8rem !important;
  list-style-position: outside;
}

.legal-body ul {
  list-style-type: disc !important;
}

.legal-body li {
  margin: 0.28em 0;
  padding-left: 0 !important;
}

.legal-body li::before {
  content: none !important;
}

.legal-body li::marker {
  color: rgba(var(--dc-black-rgb), 0.75);
  font-size: 0.9em;
}


/* neutralize old manual shoves that fight centering */
.featured-guide,
.library-cards,
.library-results,
.library-pillars,
.pillar-grid,
.wing-search-wrapper,
#library-results-box,
.library-article-list-wrapper,
.library-search-results {
  max-width: var(--dc-page-lane, 1120px);
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box;
}

.library-cards {
  padding-left: 0 !important;
}

#library-results-box,
.library-article-list-wrapper,
.library-search-results,
.section > div[style*="margin-left"],
.section-content > div[style*="margin-left"],
.section [align="center"] > div[style*="margin-left"] {
  margin-left: auto !important;
  margin-right: auto !important;
}

.section-header-bar {
  margin: var(--section-header-margin, 10px 0 14px);
  padding: var(--section-header-padding, 16px 26px);
  border-radius: var(--section-header-radius, 18px);
  width: max-content;
  max-width: 100%;
  min-width: 90px;      /* adjust up/down as needed */
  min-height: 40px;
  background-color: #000;
  box-shadow:
    0 10px 26px rgba(var(--dc-black-rgb, 5, 15, 40), 0.35),
    inset 0 1px 0 rgba(var(--dc-cream2-rgb, 248, 239, 212), 0.09);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--section-header-gap, 12px);
}

.section-header-bar .section-title {
  margin: 0;
  font-size: var(--section-title-size, 34px);
  font-weight: 800;
  letter-spacing: .2px;
  color: var(--dc-gold);
}

.section-header-link img,
.section-header-bar img {
  display: block;
  max-width: var(--section-header-img-max, 100%);
  height: auto;
}

.section > .section-content,
.index-pillars-grid {
  width: min(var(--dc-page-lane), calc(100% - (var(--dc-page-gutter) * 2)));
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.section > .section-content {
  width: min(var(--dc-page-lane, 1120px), calc(100% - (var(--dc-page-gutter, 24px) * 2)));
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

.dc-phone-menu {
  display: none;
}

/* =========================
   Animated hamburger
   ========================= */

.dc-phone-menu {
  display: none;
}

#sticky-nav-inner .brand {
  padding: 10px;
  border-radius: 14px;

  background: rgba(0, 0, 0, 0.50) !important;

  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);

  box-shadow:
    0 0 0 1px rgba(248, 239, 212, 0.18),
    0 14px 34px rgba(0, 0, 0, 0.45),
    inset 0 1px 0 rgba(248, 239, 212, 0.10);
}

/* ==========================================
   Three Pillars Of Transformation
   base / desktop
   ========================================== */

.library-pillars {
  background: var(--dc-cream2);
}

.library-cards.library-card-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 350px));
  gap: 24px;
  justify-content: start;
  width: auto;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
  padding-left: 0;
}

.library-cards.library-card-row > .library-card-link {
  width: auto;
  max-width: none;
  flex: none;
}

/* ========= LISTEN BUTTON GLOBAL ========== */

.listen-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #000;
  color: var(--dc-cream2);
  padding: 6px 16px 7px;
  border: 0;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  cursor: pointer;
  transition: box-shadow 0.18s ease, color 0.18s ease;
  white-space: nowrap;
}

.listen-icon {
  background: #000;
  color: var(--dc-cream2);
  font-size: 1rem;
  display: inline-block;
  margin-top: 1px;
}

.listen-btn:hover,
.listen-btn:focus,
.listen-btn:focus-visible,
.listen-btn:active {
  background: var(--dc-black);
  color: #fff;
  border: 0;
  outline: 0;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.60);
}

.listen-btn:hover .listen-icon,
.listen-btn:focus .listen-icon,
.listen-btn:focus-visible .listen-icon,
.listen-btn:active .listen-icon {
  color: #fff;
}

.dc-related-item {
  margin: 0 0 8px 0;
  line-height: 1.25;
}

.dc-related-item + .dc-related-item {
  margin-top: 12px;
}


.dc-jump-station {
  width: min(610px, calc(100% - 40px));
  margin: 20px auto 38px auto;
  padding: 22px 24px 24px 24px;
  box-sizing: border-box;
  text-align: center;
  background:var(--dc-cream2);
  border: 1px solid rgba(5,15,40,0.16);
  border-radius: 26px;
  box-shadow: 0 18px 38px rgba(5,15,40,0.22);
}
.dc-jump-title {
  width: min(560px, 100%);
  margin: 0 auto 14px auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
  font-size: 0.88rem;
  line-height: 1.1;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--dc-black);
}
.dc-jump-title::before,
.dc-jump-title::after {
  content: "";
  display: block;
  flex: 1 1 0;
  height: 2px;
  max-width: 225px;
  border-radius: 999px;
}
.dc-jump-title::before {
  background: linear-gradient(to right, rgba(5,15,40,0), rgba(5,15,50,0.43));
}
.dc-jump-title::after {
  background: linear-gradient(to right, rgba(5,15,40,0.50), rgba(5,15,40,0));
}
.dc-jump-inner {
  display: grid;
  grid-template-columns: 1fr 112px 1fr;
  gap: 18px;
  align-items: center;
}
.dc-jump-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.dc-jump-links-left {
  align-items: flex-end;
}
.dc-jump-links-right {
  align-items: flex-start;
}
.dc-jump-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  min-height: 32px;
  padding: 7px 16px;
  border-radius: 999px;
  background: var(--dc-black);
  color: var(--dc-cream2);
  font-size: 0.86rem;
  line-height: 1.1;
  font-weight: 800;
  text-decoration: none;
  box-sizing: border-box;
  transition: color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease;
}
.dc-jump-links a:hover,
.dc-jump-links a:focus {
  background: var(--dc-black);
  color: #ffffff;
  box-shadow: 0 8px 18px rgba(5,15,40,0.38);
  transform: translateY(-1px);
}
.dc-jump-head {
  width: 112px;
  height: 142px;
  border-radius: 999px;
  overflow: hidden;
  background: var(--dc-black);
  box-shadow: 0 12px 24px rgba(5,15,40,0.22);
}
.dc-jump-head img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.dc-foot {
  width: 100%;
  clear: both;
}
.dc-foot-sep {
  padding-top: 25px;
  padding-bottom: 25px;
}
.dc-bottom {
  text-align: center;
  padding-top: 20px;
  padding-bottom: 50px;
}
.dc-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  padding-bottom: 22px;
}
.dc-links a {
  display: inline-block;
  text-decoration: none;
}
.dc-copy,
.dc-copy2 {
  text-align: center;
}

/* =========================================================
   NEW FOOTER — ENTICEMENT
   COMPLETE DESKTOP LAYOUT
   ========================================================= */

.dc-footer-content-zone {
    width: 100%;
    margin: 0 auto;
    padding: 0 16px;
    box-sizing: border-box;
}

/* The pair */
.dc-footer-content-zone > .dc-grid {
    display: grid !important;
    grid-template-columns: 450px 450px !important;
    column-gap: 20px !important;
    row-gap: 20px !important;

    width: 920px !important;
    max-width: 100% !important;

    margin: 0 auto !important;
    padding: 0 !important;

    justify-content: center !important;
    align-items: stretch !important;

    box-sizing: border-box !important;
}

/* Both panels: identical dimensions */
.dc-footer-content-zone > .dc-grid > .dc-card,
.dc-footer-content-zone > .dc-grid > .dc-image {
    position: relative !important;

    width: 450px !important;
    min-width: 450px !important;
    max-width: 450px !important;

    height: 450px !important;
    min-height: 450px !important;
    max-height: 450px !important;

    margin: 0 !important;

    box-sizing: border-box !important;
    overflow: hidden !important;
}

/* Right panel */
.dc-footer-content-zone > .dc-grid > .dc-image {
    padding: 0 !important;
    background: #05070a !important;
}

/* Right-panel image cannot escape its box */
.dc-footer-content-zone > .dc-grid > .dc-image > img {
    display: block !important;

    width: 100% !important;
    height: 100% !important;

    min-width: 0 !important;
    max-width: 100% !important;

    margin: 0 !important;
    padding: 0 !important;

    object-fit: contain !important;

    border: 0 !important;
    box-sizing: border-box !important;
}


/* =========================================================
   RESPONSIVE
   Stack cleanly when 920px + breathing room won't fit
   ========================================================= */

@media (max-width: 960px) {

    .dc-footer-content-zone > .dc-grid {
        grid-template-columns: 1fr !important;

        width: 100% !important;
        max-width: 450px !important;

        row-gap: 20px !important;

        margin: 0 auto !important;
    }

    .dc-footer-content-zone > .dc-grid > .dc-card,
    .dc-footer-content-zone > .dc-grid > .dc-image {
        width: 100% !important;
        min-width: 0 !important;
        max-width: 450px !important;

        margin: 0 auto !important;
    }

}

/* NEW FOOTER — SEPARATOR */

.dc-footer-sep-zone {
    width: 100%;
    box-sizing: border-box;
}

.dc-footer-sep-zone .dc-sep {
    width: min(980px, 92vw);
    margin: 0 auto;
    display: grid;
    justify-items: center;
}

.dc-footer-sep-zone .dc-line {
    margin-left: auto;
    margin-right: auto;
}

/* ---------MONETIZATION STYLES ----------- */
.admodal-banner {
  width: 100%;
  background: #000;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.admodal-banner img {
  display: block;
  max-width: 100%;
  height: auto;
}

.admodal-banner,
.admodal-banner img {
  border-radius: 12px;
}

.ad-product-frame {
    width: 350px;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    box-sizing: border-box;
}

.ad-product-frame a {
    display: block;
    width: 350px;
    height: 350px;
}

.ad-switcher-slide--product {
    padding: 0 !important;
}

.ad-product-image {
    display: block;
    width: 350px;
    height: 350px;
    object-fit: contain;
}

.ad-product-instruction {
    width: 350px;
    height: 50px;
    background: var(--dc-cream2);
    color: var(--dc-burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    padding: 0 10px;
    box-sizing: border-box;
}
.admodal-inner {
  scrollbar-width: auto;
  scrollbar-color: var(--dc-cream2) var(--dc-deer);
}

.admodal-inner::-webkit-scrollbar {
  width: 12px;
}

.admodal-inner::-webkit-scrollbar-track {
  background: var(--dc-deer);
}

.admodal-inner::-webkit-scrollbar-thumb {
  background: var(--dc-cream2);
  border-radius: 6px;
}

.admodal-inner::-webkit-scrollbar-button {
  background: var(--dc-cream2);
}

.ad-switcher-controls button:hover {
    color: #ffffff;
}

#admodal .ad-story-copy,
#admodal .admodal-intro,
#admodal .admodal-disclosure,
#admodal .ad-story-copy p {
    color:#0b1730;
}

.dc-inducement {
  width: 100%;
  text-align: center;
}

.dc-inducement .js-admodal-trigger {
  display: inline-block;
}

.dc-inducement img {
  display: block;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

@media (orientation: portrait) and (max-width: 767px) {
  .dc-jump-station {
    width: calc(100% - 40px);
    margin: 25px auto 25px auto;
    padding: 20px 18px 22px 18px;
    border-radius: 24px;
  }
  .dc-jump-title {
    width: 100%;
    margin-bottom: 12px;
    gap: 9px;
    font-size: 0.82rem;
  }
  .dc-jump-title::before,
  .dc-jump-title::after {
    max-width: 72px;
    height: 1px;
  }
  .dc-jump-inner {
    grid-template-columns: 1fr 88px;
    gap: 12px;
    align-items: center;
  }
  .dc-jump-links-left {
    grid-column: 1;
    grid-row: 1;
    align-items: flex-end;
  }
  .dc-jump-links-right {
    grid-column: 1;
    grid-row: 2;
    align-items: flex-end;
  }
  .dc-jump-head {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 88px;
    height: 118px;
  }
  .dc-jump-links a {
    min-width: 142px;
    min-height: 32px;
    padding: 7px 14px;
    font-size: 0.86rem;
  }
}

.dc-takeaway {
    margin: 16px 0 16px 10px;
    padding-left: 10px;
    font-style: italic;
}

/* AD MODAL BASE / VISIBILITY */

body.admodal-open {
    overflow: hidden;
}

#admodal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 10050;
}

#admodal.is-open {
    display: block;
}

.admodal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.56);
}

.admodal-dialog {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    width: min(820px, calc(100vw - 32px));
    height: min(90vh, 920px);
    background: var(--dc-cream2);
    border-radius: 16px;
    box-shadow: 0 22px 60px rgba(0,0,0,.38);
    overflow: hidden;
}

.admodal-close {
    position: absolute !important;
    top: 18px !important;
    right: 18px !important;
    z-index: 20 !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    background-color: #111218 !important;
    color: #f5ecd8 !important;
    border: 1px solid rgba(0, 0, 0, 0.45) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 20px !important;
    font-weight: 600 !important;
    line-height: 1 !important;
    padding: 0 !important;
    cursor: pointer;
    box-shadow: none !important;
    transition:
        color 0.15s ease,
        font-size 0.15s ease,
        box-shadow 0.15s ease;
}

.admodal-close:hover {
    font-size: 22px !important;
    color: #ffffff !important;
    background-color: #111218 !important;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.45) !important;
    transform: none !important;
}

.admodal-close:focus-visible {
    outline: 2px solid #ffffff !important;
    outline-offset: 2px !important;
}

.admodal-inner {
    height: 100%;
    overflow-y: auto;
    padding: 64px 34px 32px;
    box-sizing: border-box;
}

/* ===== AD SWITCHER REQUIRED BEHAVIOR ===== */

.ad-switcher {
    width: 350px;
    max-width: 100%;
    margin: 0 auto 22px;
}

.ad-switcher-stage {
    position: relative;
    width: 350px;
    max-width: 100%;
    height: 400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    background: #eee7d5;
    box-shadow: 0 12px 26px rgba(0,0,0,.18);
}

/* hide every slide by default */
.ad-switcher-slide {
    display: none;
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
    box-sizing: border-box;
}

/* show ONLY the active slide */
.ad-switcher-slide.is-active {
    display: flex;
}

.ad-switcher-slide--product {
    padding: 0 !important;
    background: #fff;
}

/* controls */
.ad-switcher-controls {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 12px;
}

.ad-switcher-controls button {
    border: 0;
    border-radius: 9px;
    background: #000;
    color: var(--dc-cream2);
    padding: 9px 14px;
    font-weight: 700;
    cursor: pointer;
}

.ad-switcher-controls button:hover {
    color: #fff;
}

.right-img {
  float: right;
  margin-left: 10px;
  border-radius: 14px;
}

.left-img {
  float: left;
  margin-right: 10px;
  border-radius: 14px;
}

@media (max-width: 700px) {

  .ad-product-frame {
    width: 100%;
    max-width: 350px;
    height: auto;
  }

  .ad-product-frame a {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }

  .ad-product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .ad-product-instruction {
    width: 100%;
    height: 50px;
  }

  .ad-switcher-stage:has(.ad-switcher-slide--product.is-active) {
    height: auto;
    aspect-ratio: auto;
  }

  .ad-switcher-stage:has(.ad-switcher-slide--product.is-active)
  .ad-switcher-slide--product {
    position: relative;
    inset: auto;
  }


}