.blog-hero .wrap,
.blog-feature .wrap,
.blog-grid .wrap{
  z-index:auto;
}
.blog-hero{
  padding:clamp(2rem,5vw,4rem) 0 clamp(2rem,4vw,3rem);
  text-align:left;
}
html body .blog-hero .eyebrow{
  display:block;
  font-family:var(--sans);
  font-size:1rem;
  font-weight:600;
  letter-spacing:.12em;
  text-transform:uppercase;
  color:var(--wine);
  margin:0 0 1.4rem;
}
.blog-hero h1{
  font-family:var(--serif);
  font-weight:400;
  font-size:clamp(2.6rem,5.2vw,5.2rem);
  line-height:.98;
  letter-spacing:-.03em;
  max-width:14ch;
  margin:0;
  color:var(--ink);
  animation:heroIn 1s cubic-bezier(.2,.7,.2,1) both;
}
.blog-hero h1 em{font-style:normal;color:inherit;font-weight:inherit}
.blog-hero .lede{
  font-size:clamp(1.15rem,1.5vw,1.4rem);
  line-height:1.55;
  color:var(--ink-soft);
  max-width:40ch;
  margin:1.6rem 0 0;
}
.topic-row{
  display:flex;
  gap:.5rem;
  flex-wrap:wrap;
  margin-top:2.2rem;
}
html body .topic-pill{
  font-family:var(--sans);
  font-size:1rem;
  font-weight:600;
  letter-spacing:0;
  text-transform:none;
  padding:.6rem 1.1rem;
  border-radius:999px;
  border:1px solid rgba(36,24,40,.18);
  background:transparent;
  color:var(--ink);
  cursor:pointer;
  min-height:44px;
}
html body .topic-pill.is-on,
html body .topic-pill[aria-pressed="true"]{
  background:var(--ink);
  border-color:var(--ink);
  color:var(--ivory);
}

.blog-feature{padding:0 0 clamp(2rem,4vw,3rem)}
html body .post-card.is-featured{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(min(100%,22rem),1fr));
  gap:0;
  align-items:stretch;
  background:#fff;
  border:0;
  border-radius:28px;
  overflow:hidden;
  box-shadow:none;
  text-decoration:none;
  color:var(--ink);
  transform:none;
}
html body .post-card.is-featured:hover,
html body .post-card.is-featured:focus-visible{
  transform:none;
  box-shadow:none;
}
.is-featured .card-img{
  aspect-ratio:4/3;
  border-radius:0;
  overflow:hidden;
  background:var(--powder);
}
.is-featured .card-img::after{content:none}
.is-featured .card-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:none;
  animation:none;
}
.is-featured .card-body{
  padding:clamp(1.6rem,3vw,2.6rem);
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:1rem;
}
html body .is-featured .card-label{
  font-size:1rem;
  font-weight:600;
  letter-spacing:0;
  text-transform:none;
  color:var(--wine);
  margin:0;
}
.is-featured .card-title{
  font-size:clamp(1.8rem,3vw,3rem);
  line-height:1.05;
  letter-spacing:-.02em;
  margin:0;
  max-width:none;
}
.is-featured .card-excerpt{
  font-size:1.1rem;
  line-height:1.6;
  margin:0;
  max-width:none;
}
html body .is-featured .card-cta{
  margin-top:0;
}
html body .is-featured .card-cta::after{content:none}

.blog-grid{padding:0 0 clamp(5rem,10vw,9rem)}
.posts-grid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(min(100%,20rem),1fr));
  gap:1rem;
}
html body .posts-grid .post-card{
  display:flex;
  flex-direction:column;
  text-decoration:none;
  color:var(--ink);
  background:#fff;
  border:0;
  border-radius:24px;
  box-shadow:none;
  overflow:hidden;
  transform:none;
  transition:transform .5s cubic-bezier(.2,.7,.2,1);
}
html body .posts-grid .post-card:hover,
html body .posts-grid .post-card:focus-visible{
  transform:translateY(-6px);
  box-shadow:none;
}
.posts-grid .card-img{
  aspect-ratio:16/10;
  overflow:hidden;
  border-radius:0;
  position:relative;
  background:var(--powder);
}
.posts-grid .card-img::after{content:none}
.posts-grid .card-img img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  filter:none;
}
.posts-grid .card-body{
  padding:1.4rem 1.5rem 1.6rem;
  display:flex;
  flex-direction:column;
  gap:.7rem;
  flex:1;
}
html body .posts-grid .card-label{
  font-family:var(--sans);
  font-size:.95rem;
  font-weight:600;
  letter-spacing:0;
  text-transform:none;
  color:var(--wine);
  margin:0;
}
.posts-grid .card-title{
  font-family:var(--serif);
  font-size:1.4rem;
  font-weight:400;
  line-height:1.15;
  letter-spacing:-.01em;
  margin:0;
  color:var(--ink);
}
.posts-grid .card-excerpt{
  font-size:1.02rem;
  color:var(--ink-soft);
  line-height:1.55;
  margin:0;
}

html body .card-cta{
  font-family:var(--sans);
  font-size:1rem;
  letter-spacing:0;
  text-transform:none;
  color:var(--wine);
  font-weight:600;
  display:inline-flex;
  align-items:center;
}

@keyframes pop{from{transform:scale(.95) translateY(18px)}to{transform:none}}
@supports (animation-timeline:view()){
  .posts-grid .post-card.rise{
    animation:pop linear both;
    animation-timeline:view();
    animation-range:entry 8% entry 50%;
  }
}
@supports not (animation-timeline:view()){
  .posts-grid .post-card.rise{transform:scale(.95) translateY(18px)}
  .posts-grid .post-card.rise.in{animation:pop .7s cubic-bezier(.2,.7,.2,1) both}
}

.blog-meet{
  position:relative;
  background:var(--powder);
  border-radius:clamp(24px,4vw,48px) clamp(24px,4vw,48px) 0 0;
  margin:0 clamp(.5rem,1.5vw,1.25rem);
  padding:clamp(4rem,8vw,7rem) clamp(1.25rem,4vw,3rem) 0;
}
.blog-meet-grid{
  max-width:1340px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(min(100%,22rem),1fr));
  gap:2rem;
  align-items:center;
  padding-bottom:clamp(3rem,5vw,4rem);
}
.blog-meet h2{
  font-family:var(--serif);
  font-weight:400;
  font-size:clamp(2.2rem,4.2vw,4.2rem);
  line-height:1;
  letter-spacing:-.03em;
  margin:0;
  color:var(--ink);
}
.blog-meet p{
  font-size:1.15rem;
  line-height:1.6;
  color:var(--ink-soft);
  max-width:40ch;
  margin:0 0 1.6rem;
}

html body footer.about-foot{
  background:var(--powder);
  margin:0 clamp(.5rem,1.5vw,1.25rem);
}

@media(max-width:880px){
  html body a.meet-btn{
    width:100%;
    justify-content:center;
    text-align:center;
    white-space:normal;
  }
}
@media(prefers-reduced-motion:reduce){
  .blog-hero h1,
  .posts-grid .post-card.rise{
    animation:none !important;
    opacity:1;
    transform:none;
  }
  html body .posts-grid .post-card,
  html body .posts-grid .post-card:hover,
  html body .posts-grid .post-card:focus-visible{
    transition:none !important;
    transform:none;
  }
}
