.article-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100svh - 5.3rem);
  background: #e8dfd2;
}
.article-hero-copy {
  padding: clamp(4rem, 9vw, 9rem) max(5vw, calc((100vw - 1180px) / 2));
  padding-right: clamp(2rem, 5vw, 5rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.article-hero h1 {
  font-size: clamp(3.4rem, 6.5vw, 7rem);
  max-width: 800px;
}
.article-dek {
  font-size: 1.15rem;
  max-width: 620px;
}
.article-hero-image {
  min-height: 650px;
}
.article-hero-image img {
  object-position: center;
}
.article-layout {
  width: min(1100px, 90vw);
  margin: 0 auto;
  padding: clamp(5rem, 10vw, 10rem) 0;
  display: grid;
  grid-template-columns: 250px minmax(0, 720px);
  gap: clamp(3rem, 8vw, 8rem);
  align-items: start;
}
.article-aside {
  position: sticky;
  top: 8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
}
.post-content {
  font-size: 1.08rem;
  line-height: 1.85;
}
.post-content > p:first-child {
  font: 500 clamp(1.45rem, 2.7vw, 2rem) / 1.45 var(--serif);
}
.post-content h2 {
  font-size: clamp(2rem, 4vw, 3.2rem);
  margin: 3.5rem 0 1rem;
}
.post-content h3 {
  margin-top: 2.4rem;
}
.post-content ul {
  padding-left: 1.2rem;
}
.post-content li {
  margin: 0.65rem 0;
}
.article-cta {
  margin-top: 5rem;
  padding: clamp(2rem, 5vw, 4rem);
  border-radius: var(--radius);
  background: var(--sage);
  color: #fff;
}
.article-cta h2 {
  margin-top: 0;
}
.article-cta .eyebrow {
  color: #f2b49e;
}
.journal-back {
  padding-bottom: 5rem;
}
.journal-card-image {
  height: 240px;
  margin: -1.7rem -1.7rem 1.5rem;
  overflow: hidden;
  border-radius: var(--radius) var(--radius) 0 0;
}
.journal-card-image img {
  transition: transform 0.5s;
}
.blog-card:hover .journal-card-image img {
  transform: scale(1.025);
}
@media (max-width: 800px) {
  .article-hero {
    grid-template-columns: 1fr;
  }
  .article-hero-copy {
    min-height: 65svh;
    padding: 5rem 6vw;
  }
  .article-hero-image {
    min-height: 60svh;
  }
  .article-layout {
    display: block;
  }
  .article-aside {
    position: static !important;
    margin-bottom: 3rem;
    padding-bottom: 1.5rem;
  }
  .post-content {
    position: relative;
    clear: both;
    font-size: 1rem;
  }
}
