*{
  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;
}

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

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

button,
select{
  font:inherit;
}

button,
a,
select{
  -webkit-tap-highlight-color:transparent;
}

img,
svg{
  display:block;
}

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

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

.blog-hero{
  border-bottom:1px solid #e9e9e9;
  background:#f3f3f3;
}

.blog-hero-inner{
  min-height:360px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  padding-top:72px;
  padding-bottom:72px;
  text-align:center;
}

.blog-eyebrow,
.blog-section-label{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  padding:0 12px;
  border:1px solid #dfdfdf;
  border-radius:999px;
  background:#fff;
  color:#555;
  font-size:13px;
  line-height:1;
  font-weight:800;
}

.blog-eyebrow{
  margin-bottom:22px;
}

.blog-hero h1{
  max-width:900px;
  color:#111;
  font-size:46px;
  line-height:1.02;
  letter-spacing:-1.6px;
  font-weight:800;
}

.blog-hero p{
  max-width:760px;
  margin-top:24px;
  color:#484848;
  font-size:17px;
  line-height:1.7;
}

.blog-content{
  padding-top:66px;
  padding-bottom:76px;
}

.blog-toolbar{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:28px;
  margin-bottom:30px;
}

.blog-section-label{
  margin-bottom:16px;
  background:#f7f7f7;
}

.blog-toolbar h2,
.blog-newsletter h2{
  color:#111;
  font-size:34px;
  line-height:1.08;
  letter-spacing:-.9px;
  font-weight:800;
}

.blog-filter{
  flex:0 0 auto;
  display:flex;
  align-items:center;
  gap:10px;
  color:#555;
  font-size:13px;
  font-weight:700;
}

.blog-select-wrap{
  position:relative;
  display:block;
}

.blog-select-wrap select{
  min-width:176px;
  height:42px;
  padding:0 40px 0 14px;
  border:1px solid #e1e1e1;
  border-radius:10px;
  outline:none;
  appearance:none;
  background:#f6f6f6;
  color:#111;
  font-size:13px;
  font-weight:700;
  cursor:pointer;
}

.blog-select-wrap select:focus-visible{
  border-color:#111;
  box-shadow:0 0 0 3px rgba(0,0,0,.08);
}

.blog-select-wrap svg{
  position:absolute;
  top:50%;
  right:13px;
  width:16px;
  height:16px;
  pointer-events:none;
  transform:translateY(-50%);
  fill:none;
  stroke:#111;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
}

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

.blog-card{
  min-width:0;
  display:flex;
  overflow:hidden;
  border:1px solid #e4e4e4;
  border-radius:20px;
  background:#fff;
  box-shadow:0 16px 34px rgba(0,0,0,.035);
  transition:transform .18s ease,border-color .18s ease,box-shadow .18s ease;
}

.blog-card-link{
  width:100%;
  min-width:0;
  min-height:100%;
  display:flex;
  flex-direction:column;
  color:inherit;
  cursor:pointer;
  outline:none;
}

.blog-card-link:focus-visible{
  box-shadow:inset 0 0 0 3px #111;
}

.blog-card:hover,
.blog-card:focus-within{
  transform:translateY(-2px);
  border-color:#cfcfcf;
  box-shadow:0 20px 44px rgba(0,0,0,.07);
}

.blog-card[hidden]{
  display:none !important;
}

.blog-card-media{
  width:100%;
  aspect-ratio:16/9;
  overflow:hidden;
  background:#efefef;
}

.blog-card-media img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  transition:transform .28s ease;
}

.blog-card:hover .blog-card-media img{
  transform:scale(1.025);
}

.blog-card-body{
  flex:1;
  display:flex;
  flex-direction:column;
  padding:20px 20px 22px;
}

.blog-card-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:13px;
  color:#686868;
  font-size:12px;
  line-height:1.35;
  font-weight:700;
}

.blog-card-meta span:first-child{
  color:#235fc7;
}

.blog-card h3{
  color:#111;
  font-size:21px;
  line-height:1.18;
  letter-spacing:-.45px;
  font-weight:800;
}

.blog-card p{
  margin-top:12px;
  color:#4a4a4a;
  font-size:14px;
  line-height:1.62;
}

.blog-card-readmore{
  display:inline-flex;
  align-items:center;
  gap:8px;
  margin-top:auto;
  padding-top:20px;
  color:#111;
  font-size:13px;
  line-height:1;
  font-weight:800;
}

.blog-card-readmore svg{
  width:17px;
  height:17px;
  fill:none;
  stroke:currentColor;
  stroke-width:2;
  stroke-linecap:round;
  stroke-linejoin:round;
  transition:transform .18s ease;
}

.blog-card:hover .blog-card-readmore svg,
.blog-card-link:focus-visible .blog-card-readmore svg{
  transform:translateX(3px);
}

.blog-empty{
  margin-bottom:24px;
  padding:28px;
  border:1px solid #e4e4e4;
  border-radius:18px;
  background:#f7f7f7;
  color:#444;
  font-size:15px;
  line-height:1.6;
  text-align:center;
}

.blog-pagination{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin-top:36px;
}

.blog-page-control,
.blog-page-number{
  min-width:40px;
  height:40px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid #dedede;
  border-radius:10px;
  background:#fff;
  color:#111;
  font-size:13px;
  line-height:1;
  font-weight:800;
  cursor:pointer;
  transition:background .18s ease,color .18s ease,border-color .18s ease;
}

.blog-page-control{
  min-width:72px;
  padding:0 14px;
}

.blog-page-number[aria-current="page"],
.blog-page-control:hover:not(:disabled),
.blog-page-control:focus-visible:not(:disabled),
.blog-page-number:hover,
.blog-page-number:focus-visible{
  border-color:#111;
  background:#111;
  color:#fff;
  outline:none;
}

.blog-page-control:disabled{
  opacity:.38;
  cursor:not-allowed;
}

.blog-page-numbers{
  display:flex;
  gap:8px;
}

.blog-newsletter{
  padding-bottom:88px;
}

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

.blog-section-label-dark{
  border-color:rgba(255,255,255,.28);
  background:rgba(255,255,255,.1);
  color:#fff;
}

.blog-newsletter h2{
  max-width:760px;
  color:#fff;
}

.blog-newsletter p{
  max-width:720px;
  margin-top:16px;
  color:rgba(255,255,255,.68);
  font-size:16px;
  line-height:1.65;
}

.blog-newsletter-link{
  min-height:52px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  justify-self:start;
  padding:0 22px;
  border-radius:12px;
  background:#fff;
  color:#111;
  font-size:15px;
  font-weight:800;
  transition:transform .18s ease,opacity .18s ease;
}

.blog-newsletter-link:hover,
.blog-newsletter-link:focus-visible{
  transform:translateY(-1px);
  opacity:.9;
  outline:none;
}

@media (max-width:767px){
  .blog-hero-inner{
    min-height:330px;
    padding-top:58px;
    padding-bottom:58px;
  }

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

  .blog-hero p{
    font-size:16px;
  }

  .blog-content{
    padding-top:54px;
    padding-bottom:66px;
  }

  .blog-toolbar{
    align-items:stretch;
    flex-direction:column;
    gap:22px;
  }

  .blog-toolbar h2,
  .blog-newsletter h2{
    font-size:31px;
  }

  .blog-filter{
    align-items:stretch;
    flex-direction:column;
    gap:8px;
  }

  .blog-select-wrap select{
    width:100%;
  }

  .blog-card h3{
    font-size:20px;
  }

  .blog-pagination{
    gap:8px;
  }

  .blog-page-control{
    min-width:64px;
    padding:0 10px;
  }
}

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

  .blog-hero-inner{
    min-height:410px;
    padding-top:88px;
    padding-bottom:88px;
  }

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

  .blog-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:22px;
  }

  .blog-newsletter-box{
    padding:40px;
  }
}

@media (min-width:1024px){
  .blog-grid{
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:22px 20px;
  }

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

  .blog-newsletter h2{
    font-size:46px;
    letter-spacing:-1.35px;
  }

  .blog-newsletter-link{
    justify-self:end;
  }
}

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