:root{
  --article-accent:#bb9b49;
  --article-accent-dark:#9c8037;
  --article-dark:#0a272c;
  --article-text:#1f2328;
  --article-muted:#5f6368;
  --article-line:#e6e6e6;
  --article-bg:#ffffff;
  --article-soft:#f8f7f3;
  --article-radius:18px;
  --article-shadow:0 8px 28px rgba(0,0,0,.06);
  --article-wrap:1100px;
  --article-narrow:820px;
  --toTop-right:22px;
  --toTop-bottom:22px
}
*,*::before,*::after{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  color:var(--article-text);
  background:#fff;
  -webkit-text-size-adjust:100%;
  text-rendering:optimizeLegibility
}
img{
  max-width:100%;
  height:auto;
  display:block
}
iframe{
  width:100%;
  border:0
}
table{
  width:100%;
  border-collapse:collapse
}
a{
  color:inherit;
  text-decoration:none
}
a:focus,
button:focus,
[tabindex="0"]:focus,
summary:focus{
  outline:3px solid var(--article-accent);
  outline-offset:2px
}
@media (prefers-reduced-motion: reduce){
  *,
  *::before,
  *::after{
    animation-duration:.01ms !important;
    animation-iteration-count:1 !important;
    transition-duration:.01ms !important;
    scroll-behavior:auto !important
  }
}

.article-shell{
  width:min(var(--article-wrap),calc(100% - 32px));
  margin:0 auto
}
.article-shell--narrow{
  width:min(var(--article-narrow),calc(100% - 32px));
  margin:0 auto
}
.article-section{
  padding:24px 0
}
.article-section--tight{
  padding:16px 0
}
.article-section--hero{
  padding:24px 0 16px
}

.article-breadcrumb{
  list-style:none;
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  justify-content:flex-start;
  margin:0 0 16px;
  padding:0;
  color:var(--article-muted);
  font-size:.95rem
}
.article-breadcrumb li{
  list-style:none
}
.article-breadcrumb li+li::before{
  content:"/";
  margin-right:8px;
  color:var(--article-muted)
}
.article-breadcrumb a{
  color:var(--article-muted)
}
.article-breadcrumb a:hover{
  color:var(--article-accent)
}

.article-hero{
  border:1px solid var(--article-line);
  border-radius:24px;
  overflow:hidden;
  background:linear-gradient(180deg,#faf8f1 0%,#fff 100%);
  box-shadow:var(--article-shadow)
}
.article-hero__media{
  aspect-ratio:16/9;
  background:#f2f2f2
}
.article-hero__media img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center
}
.article-hero__content{
  padding:24px 20px
}
.article-hero__meta{
  display:flex;
  flex-wrap:wrap;
  gap:10px 14px;
  margin:0 0 10px;
  color:var(--article-muted);
  font-size:.95rem
}
.article-hero__title{
  margin:0 0 12px;
  font-size:clamp(2rem,5vw,3.2rem);
  line-height:1.08;
  color:#111
}
.article-hero__lead{
  margin:0;
  max-width:900px;
  font-size:1.08rem;
  line-height:1.8;
  color:#31363b
}

.article-jumplinks{
  position:sticky;
  top:0;
  z-index:20;
  background:rgba(255,255,255,.96);
  backdrop-filter:saturate(180%) blur(10px);
  border-bottom:1px solid var(--article-line)
}
.article-jumplinks__inner{
  width:min(var(--article-wrap),calc(100% - 32px));
  margin:0 auto;
  display:flex;
  gap:10px;
  overflow-x:auto;
  padding:12px 0;
  scrollbar-width:none
}
.article-jumplinks__inner::-webkit-scrollbar{
  display:none
}
.article-jumplinks a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  white-space:nowrap;
  min-height:42px;
  padding:10px 14px;
  border:1px solid var(--article-line);
  border-radius:999px;
  background:#fff;
  color:#1d1f23;
  font-weight:700;
  font-size:.95rem
}
.article-jumplinks a:hover,
.article-jumplinks a.is-active{
  border-color:var(--article-accent);
  color:var(--article-accent)
}

.article-layout{
  display:grid;
  grid-template-columns:minmax(0,1fr) 300px;
  gap:28px
}
.article-layout--single{
  display:block
}
.article-main{
  min-width:0
}
.article-sidebar{
  min-width:0
}

.article-content{
  font-size:1.03rem;
  line-height:1.85;
  color:#23272d
}
.article-content > *:first-child{
  margin-top:0
}
.article-content p{
  margin:0 0 16px
}
.article-content h2{
  margin:34px 0 12px;
  font-size:clamp(1.5rem,3vw,2.15rem);
  line-height:1.2;
  color:#111
}
.article-content h3{
  margin:26px 0 10px;
  font-size:1.28rem;
  line-height:1.3;
  color:#111
}
.article-content h4{
  margin:22px 0 8px;
  font-size:1.08rem;
  line-height:1.35;
  color:#111
}
.article-content ul,
.article-content ol{
  margin:0 0 18px 22px;
  padding:0
}
.article-content li{
  margin:0 0 8px
}
.article-content strong{
  color:#111
}
.article-content em{
  color:#444
}
.article-content blockquote{
  margin:24px 0;
  padding:18px 18px 18px 22px;
  border-left:4px solid var(--article-accent);
  background:#faf8f2;
  border-radius:0 14px 14px 0
}
.article-content blockquote p:last-child{
  margin-bottom:0
}
.article-content table{
  margin:18px 0;
  border:1px solid var(--article-line);
  border-radius:14px;
  overflow:hidden;
  display:block
}
.article-content thead th{
  background:#f7f5ef;
  color:#111;
  font-weight:800
}
.article-content th,
.article-content td{
  padding:12px 14px;
  text-align:left;
  border-bottom:1px solid var(--article-line);
  border-right:1px solid var(--article-line)
}
.article-content tr:last-child td{
  border-bottom:none
}
.article-content th:last-child,
.article-content td:last-child{
  border-right:none
}
.article-content details{
  margin:0 0 12px;
  border:1px solid var(--article-line);
  border-radius:14px;
  background:#fff;
  padding:12px 14px
}
.article-content details > summary{
  cursor:pointer;
  list-style:none;
  font-weight:800;
  color:#111
}
.article-content details > summary::-webkit-details-marker{
  display:none
}
.article-content details > *:not(summary){
  margin-top:10px
}
.article-content .intro-text{
  font-size:1.08rem;
  color:#31363b
}
.article-content .sign-card{
  border-left:4px solid var(--article-accent);
  padding-left:18px;
  margin:34px 0;
  scroll-margin-top:100px
}
.article-content .comparison-table{
  margin:20px 0;
  overflow-x:auto;
  border:1px solid var(--article-line);
  border-radius:14px;
  background:#fff
}
.article-content .testimonial{
  background:#f8f7f3;
  border:1px solid var(--article-line);
  border-radius:16px;
  padding:20px;
  margin:22px 0
}
.article-content .testimonial blockquote{
  margin:0;
  padding:0;
  border:0;
  background:transparent
}
.article-content .metric-number{
  font-size:2rem;
  color:var(--article-accent);
  font-weight:800;
  line-height:1
}

.article-card,
.article-box,
.article-cta,
.article-faq,
.article-related,
.article-sidebar__box{
  background:#fff;
  border:1px solid var(--article-line);
  border-radius:18px;
  box-shadow:var(--article-shadow)
}
.article-box{
  padding:22px
}
.article-cta{
  padding:24px 20px;
  background:linear-gradient(180deg,#faf8f1 0%,#fff 100%);
  text-align:center
}
.article-cta h2,
.article-cta h3{
  margin:0 0 10px
}
.article-cta p{
  margin:0 0 14px;
  line-height:1.8
}
.article-btn-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  justify-content:center
}
.article-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:12px 18px;
  border-radius:12px;
  font-weight:800;
  text-align:center;
  border:2px solid var(--article-accent);
  transition:.2s ease
}
.article-btn:hover,
.article-btn:focus-visible{
  transform:translateY(-1px)
}
.article-btn--primary{
  background:var(--article-accent);
  color:#fff
}
.article-btn--secondary{
  background:#fff;
  color:var(--article-accent)
}

.article-sidebar{
  position:relative
}
.article-sidebar__box{
  padding:18px;
  margin-bottom:18px;
  position:sticky;
  top:76px
}
.article-sidebar__box h2,
.article-sidebar__box h3{
  margin:0 0 10px;
  font-size:1.08rem
}
.article-sidebar__box p{
  margin:0 0 12px;
  line-height:1.7;
  color:#333
}
.article-link-list{
  list-style:none;
  margin:0;
  padding:0
}
.article-link-list li{
  margin:0 0 10px
}
.article-link-list a{
  color:#111;
  text-decoration:underline;
  text-underline-offset:2px
}
.article-link-list a:hover{
  color:var(--article-accent)
}

.article-related{
  padding:22px
}
.article-related h2{
  margin:0 0 14px
}
.article-related-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px
}
.article-related-card{
  border:1px solid var(--article-line);
  border-radius:16px;
  overflow:hidden;
  background:#fff
}
.article-related-card__media{
  aspect-ratio:4/3;
  background:#f2f2f2
}
.article-related-card__media img{
  width:100%;
  height:100%;
  object-fit:cover
}
.article-related-card__content{
  padding:14px
}
.article-related-card__title{
  margin:0 0 8px;
  font-size:1rem;
  line-height:1.35
}
.article-related-card__title a:hover{
  color:var(--article-accent)
}
.article-related-card__text{
  margin:0 0 12px;
  color:#444;
  line-height:1.65;
  font-size:.95rem
}

.article-faq{
  padding:24px 20px;
  background:var(--article-dark);
  color:#fff
}
.article-faq h2{
  margin:0 0 10px;
  color:var(--article-accent)
}
.article-faq .faq-intro{
  margin:0 0 16px;
  color:rgba(255,255,255,.86);
  line-height:1.8
}
.article-faq details{
  max-width:none;
  margin:0 0 12px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:14px;
  background:rgba(255,255,255,.03);
  padding:12px 14px
}
.article-faq details > summary{
  cursor:pointer;
  font-weight:900;
  color:var(--article-accent);
  list-style:none
}
.article-faq details > summary::-webkit-details-marker{
  display:none
}
.article-faq details > p,
.article-faq details > div,
.article-faq details > table,
.article-faq details > ul{
  margin-top:10px;
  color:rgba(255,255,255,.86)
}
.article-faq table{
  border-color:rgba(255,255,255,.15)
}
.article-faq th,
.article-faq td{
  border-color:rgba(255,255,255,.15)
}
.article-faq thead th{
  background:rgba(255,255,255,.08);
  color:#fff
}

.article-author{
  display:flex;
  flex-wrap:wrap;
  gap:10px 18px;
  align-items:center;
  margin:0 0 10px;
  color:var(--article-muted);
  font-size:.95rem
}

.article-note{
  font-size:.95rem;
  color:var(--article-muted)
}

.sticky-cta-desktop{
  position:fixed;
  right:22px;
  bottom:86px;
  z-index:9999;
  opacity:0;
  pointer-events:none;
  transition:.2s;
  display:flex;
  flex-direction:column;
  gap:10px;
  width:260px;
  max-width:calc(100vw - 44px)
}
.sticky-cta-desktop.is-visible{
  opacity:1;
  pointer-events:auto
}
.sticky-cta-desktop__primary,
.sticky-cta-desktop__secondary{
  display:flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:12px 16px;
  border-radius:14px;
  text-align:center;
  text-decoration:none;
  font-weight:800;
  font-size:14px;
  line-height:1.2
}
.sticky-cta-desktop__primary{
  background:var(--article-accent);
  color:#fff;
  border:2px solid var(--article-accent)
}
.sticky-cta-desktop__secondary{
  background:var(--article-accent);
  color:#000;
  border:2px solid #000
}

.sticky-cta-mobile{
  position:fixed;
  left:16px;
  right:16px;
  bottom:calc(56px + env(safe-area-inset-bottom,0px));
  z-index:9999;
  display:none;
  gap:8px;
  opacity:0;
  pointer-events:none;
  transition:.2s
}
.sticky-cta-mobile.is-visible{
  opacity:1;
  pointer-events:auto
}
.sticky-cta-mobile.sticky-lift{
  bottom:calc(180px + env(safe-area-inset-bottom,0px))
}
.sticky-cta-mobile .sticky-cta__btn{
  flex:1;
  text-align:center;
  padding:12px 10px;
  border-radius:12px;
  font-weight:800;
  text-decoration:none;
  color:#fff;
  background:var(--article-accent);
  min-height:48px;
  display:flex;
  align-items:center;
  justify-content:center
}
.sticky-cta-mobile .sticky-cta__btn:nth-child(2),
.sticky-cta-mobile .sticky-cta__btn:nth-child(3){
  background:transparent;
  border:2px solid var(--article-accent);
  color:var(--article-accent)
}

#toTop{
  position:fixed !important;
  right:var(--toTop-right) !important;
  bottom:var(--toTop-bottom) !important;
  width:52px !important;
  height:52px !important
}

.embed-responsive,
.article-video{
  position:relative;
  width:100%;
  padding-top:56.25%;
  overflow:hidden;
  border-radius:18px;
  background:#000
}
.embed-responsive iframe,
.article-video iframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%
}

@media (max-width:1024px){
  .article-layout{
    grid-template-columns:1fr
  }
  .article-sidebar__box{
    position:static
  }
  .article-related-grid{
    grid-template-columns:repeat(2,minmax(0,1fr))
  }
}
@media (max-width:768px){
  .article-shell,
  .article-shell--narrow,
  .article-jumplinks__inner{
    width:min(100% - 20px,var(--article-wrap))
  }
  .article-hero__content{
    padding:20px 16px
  }
  .article-content{
    font-size:1rem
  }
  .article-box,
  .article-cta,
  .article-related,
  .article-faq{
    padding:18px 16px
  }
  .article-related-grid{
    grid-template-columns:1fr
  }
  .sticky-cta-desktop{
    display:none !important
  }
  .sticky-cta-mobile{
    display:flex
  }
  body{
    padding-bottom:140px
  }
  :root{
    --toTop-right:16px;
    --toTop-bottom:120px
  }
}
@media (min-width:769px){
  .sticky-cta-desktop{
    display:flex
  }
  .sticky-cta-mobile{
    display:none !important
  }
  :root{
    --toTop-right:22px;
    --toTop-bottom:22px
  }
}

/* ===== CLS PATCH: blog article pages ===== */
.hero-media,
.hero-image,
.page-hero-image,
.blog-hero-image,
.featured-image,
.hero img,
.hero-image img,
.blog-hero img,
.blog-hero-image img,
.featured-image img,
.post-thumbnail img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.hero-section,
.page-hero,
.blog-hero,
.blog-hero-section,
.featured-media {
  min-height: 360px;
}

.sticky-cta,
.mobile-sticky-cta,
.desktop-sticky-cta,
.cta-bar-fixed,
.cta-sticky-wrap,
.sticky-book-bar {
  min-height: 56px;
}

@media (max-width: 767px) {
  body {
    padding-bottom: 64px;
  }
}