*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html,
body{
  width:100%;
  min-height:100%;
  overflow-x:hidden;
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  text-rendering:optimizeLegibility;
}

html{
  scroll-behavior:smooth;
}

body{
  background:#fff;
  color:#111;
  font-family:Inter,Arial,Helvetica,sans-serif;
}

a{
  color:inherit;
  text-decoration:none;
}

img,
svg{
  display:block;
}

.blog-article-page{
  width:100%;
  min-height:100vh;
  overflow:hidden;
  background:#fff;
}

.article-shell{
  width:100%;
  max-width:1180px;
  margin:0 auto;
  padding-left:22px;
  padding-right:22px;
}

.article-hero{
  padding:56px 0 54px;
  border-bottom:1px solid #e8e8e8;
  background:#f3f3f3;
}

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

.article-back{
  display:inline-flex;
  align-items:center;
  gap:9px;
  margin-bottom:30px;
  color:#3f3f3f;
  font-size:14px;
  line-height:1;
  font-weight:800;
}

.article-back svg{
  width:18px;
  height:18px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
  transition:transform .18s ease;
}

.article-back:hover svg,
.article-back:focus-visible svg{
  transform:translateX(-3px);
}

.article-kicker{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  gap:9px 14px;
  margin-bottom:20px;
  color:#5a5a5a;
  font-size:13px;
  line-height:1.4;
  font-weight:700;
}

.article-category{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 12px;
  border:1px solid #d8d8d8;
  border-radius:999px;
  background:#fff;
  color:#235fc7;
  font-weight:800;
}

.article-hero h1{
  max-width:760px;
  color:#111;
  font-size:43px;
  line-height:1.02;
  letter-spacing:-1.55px;
  font-weight:800;
}

.article-lead{
  max-width:720px;
  margin-top:22px;
  color:#484848;
  font-size:17px;
  line-height:1.72;
}

.article-hero-media{
  width:100%;
  overflow:hidden;
  border-radius:24px;
  background:#e7e7e7;
  box-shadow:0 24px 60px rgba(0,0,0,.09);
}

.article-hero-media img{
  width:100%;
  aspect-ratio:16/10;
  object-fit:cover;
  object-position:center;
}

.article-main{
  display:grid;
  grid-template-columns:1fr;
  gap:38px;
  padding-top:54px;
  padding-bottom:72px;
}

.article-toc{
  align-self:start;
  padding:22px;
  border:1px solid #e5e5e5;
  border-radius:18px;
  background:#f8f8f8;
}

.article-toc-title{
  margin-bottom:14px;
  font-size:13px;
  line-height:1;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}

.article-toc ol{
  list-style:none;
  display:grid;
  gap:10px;
}

.article-toc a{
  display:grid;
  grid-template-columns:24px 1fr;
  gap:8px;
  color:#4a4a4a;
  font-size:14px;
  line-height:1.45;
  font-weight:700;
}

.article-toc a span:first-child{
  color:#8a8a8a;
}

.article-toc a:hover,
.article-toc a:focus-visible{
  color:#111;
  outline:none;
}

.article-content{
  min-width:0;
  max-width:760px;
}

.article-intro{
  padding-bottom:28px;
  border-bottom:1px solid #e8e8e8;
  color:#252525;
  font-size:20px;
  line-height:1.68;
  font-weight:650;
}

.article-section{
  scroll-margin-top:110px;
  padding-top:38px;
}

.article-section h2{
  color:#111;
  font-size:30px;
  line-height:1.12;
  letter-spacing:-.75px;
  font-weight:800;
}

.article-section p{
  margin-top:17px;
  color:#3f3f3f;
  font-size:17px;
  line-height:1.78;
}

.article-callout{
  margin-top:42px;
  padding:28px;
  border-radius:22px;
  background:#111;
  color:#fff;
}

.article-callout h2{
  color:#fff;
  font-size:25px;
  line-height:1.15;
  letter-spacing:-.5px;
  font-weight:800;
}

.article-callout ul{
  display:grid;
  gap:12px;
  margin-top:19px;
  list-style:none;
}

.article-callout li{
  position:relative;
  padding-left:27px;
  color:rgba(255,255,255,.82);
  font-size:15px;
  line-height:1.55;
  font-weight:650;
}

.article-callout li::before{
  content:"";
  position:absolute;
  top:.45em;
  left:0;
  width:14px;
  height:8px;
  border-left:2px solid #fff;
  border-bottom:2px solid #fff;
  transform:rotate(-45deg);
}

.article-related{
  padding-top:68px;
  padding-bottom:78px;
  border-top:1px solid #e9e9e9;
}

.article-related-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:20px;
  margin-bottom:26px;
}

.article-related-head h2{
  color:#111;
  font-size:34px;
  line-height:1.08;
  letter-spacing:-.9px;
  font-weight:800;
}

.article-related-all{
  flex:0 0 auto;
  font-size:14px;
  font-weight:800;
  text-decoration:underline;
  text-underline-offset:4px;
}

.article-related-grid{
  display:grid;
  grid-template-columns:1fr;
  gap:20px;
}

.article-related-card{
  overflow:hidden;
  border:1px solid #e3e3e3;
  border-radius:20px;
  background:#fff;
  transition:transform .18s ease,box-shadow .18s ease,border-color .18s ease;
}

.article-related-card:hover,
.article-related-card:focus-visible{
  transform:translateY(-2px);
  border-color:#c8c8c8;
  box-shadow:0 18px 40px rgba(0,0,0,.07);
  outline:none;
}

.article-related-card img{
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
}

.article-related-card-body{
  padding:20px;
}

.article-related-card span{
  color:#235fc7;
  font-size:12px;
  line-height:1;
  font-weight:800;
}

.article-related-card h3{
  margin-top:12px;
  color:#111;
  font-size:20px;
  line-height:1.22;
  letter-spacing:-.35px;
  font-weight:800;
}

.article-cta{
  padding:0 0 88px;
}

.article-cta-box{
  display:grid;
  grid-template-columns:1fr;
  gap:26px;
  align-items:center;
  padding:32px 24px;
  border-radius:26px;
  background:#111;
  color:#fff;
}

.article-cta-box h2{
  max-width:760px;
  color:#fff;
  font-size:34px;
  line-height:1.1;
  letter-spacing:-.85px;
  font-weight:800;
}

.article-cta-box p{
  max-width:700px;
  margin-top:14px;
  color:rgba(255,255,255,.68);
  font-size:16px;
  line-height:1.65;
}

.article-cta-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.article-cta-primary,
.article-cta-secondary{
  min-height:50px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:0 20px;
  border-radius:12px;
  font-size:14px;
  font-weight:800;
}

.article-cta-primary{
  background:#fff;
  color:#111;
}

.article-cta-secondary{
  border:1px solid rgba(255,255,255,.35);
  color:#fff;
}

@media (min-width:768px){
  .article-shell{
    padding-left:40px;
    padding-right:40px;
  }

  .article-hero{
    padding-top:72px;
    padding-bottom:72px;
  }

  .article-hero h1{
    font-size:58px;
    letter-spacing:-2.1px;
  }

  .article-main{
    padding-top:72px;
    padding-bottom:88px;
  }

  .article-related-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }

  .article-cta-box{
    padding:42px;
  }
}

@media (min-width:1024px){
  .article-hero-grid{
    grid-template-columns:minmax(0,1.05fr) minmax(420px,.95fr);
    gap:64px;
  }

  .article-main{
    grid-template-columns:250px minmax(0,760px);
    gap:64px;
    justify-content:center;
  }

  .article-toc{
    position:sticky;
    top:104px;
  }

  .article-related-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
  }

  .article-cta-box{
    grid-template-columns:minmax(0,1fr) auto;
    gap:48px;
    padding:48px;
  }

  .article-cta-actions{
    justify-content:flex-end;
  }
}

@media (max-width:767px){
  .article-hero{
    padding-top:44px;
    padding-bottom:48px;
  }

  .article-back{
    margin-bottom:24px;
  }

  .article-hero h1{
    font-size:39px;
    letter-spacing:-1.25px;
  }

  .article-lead{
    font-size:16px;
  }

  .article-main{
    padding-top:48px;
    padding-bottom:66px;
  }

  .article-intro{
    font-size:18px;
  }

  .article-section h2{
    font-size:27px;
  }

  .article-section p{
    font-size:16px;
  }

  .article-related-head{
    align-items:flex-start;
    flex-direction:column;
  }

  .article-related-head h2,
  .article-cta-box h2{
    font-size:31px;
  }
}

@media (prefers-reduced-motion:reduce){
  *,
  *::before,
  *::after{
    scroll-behavior:auto !important;
    transition:none !important;
  }
}
