.articles-hero {
  padding: 45px 0;
  border-bottom: 1px solid var(--line);
}
.articles-hero h1,
.post-header h1 {
  font: 800 clamp(48px, 6vw, 78px) / 0.98 Manrope, sans-serif;
  letter-spacing: -0.055em;
  margin: 10px 0 24px;
  max-width: 940px;
}
.articles-hero h1 em {
  font-style: normal;
  color: #8c8c8c;
}
.articles-hero > div > p:last-child {
  font-size: 19px;
  color: var(--muted);
  max-width: 650px;
}
.articles-section {
  padding: 50px 0 120px;
}
.article-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px;
}
.article-card {
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.article-cover {
  height: 340px;
  background: #e8e8e5;
  border-radius: var(--radius);
  overflow: hidden;
  display: grid;
  place-items: center;
}
.article-cover span {
  font: 800 42px Manrope;
  letter-spacing: 0.18em;
  color: #b8b8b3;
}
.article-cover img {
  transition: transform 0.45s ease;
}
.article-card:hover .article-cover img {
  transform: scale(1.025);
}
.article-card-body {
  padding: 20px 2px 10px;
}
.article-meta {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 0.12em;
  color: var(--muted);
}
.article-card h2 {
  font: 700 clamp(26px, 3vw, 36px) / 1.08 Manrope;
  margin: 14px 0 12px;
  letter-spacing: -0.035em;
}
.article-card p {
  color: var(--muted);
  margin: 0 0 18px;
  max-width: 620px;
}
.article-link,
.back-link {
  font-size: 13px;
  font-weight: 700;
  border-bottom: 1px solid currentColor;
}
.empty-state {
  padding: 60px 0 120px;
  max-width: 650px;
}
.empty-state h2 {
  font: 700 42px/1.05 Manrope;
  margin: 10px 0;
}
.empty-state p {
  color: var(--muted);
}
.post-page {
  padding: 80px 0 120px;
}
.post-header {
  padding-top: 20px;
}
.post-header .article-meta {
  margin-top: 55px;
}
.post-lead {
  font-size: 21px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 760px;
}
.post-cover {
  height: min(58vw, 620px);
  margin-top: 55px;
  border-radius: var(--radius);
  overflow: hidden;
}
.post-content {
  max-width: 780px;
  padding-top: 60px;
  font-size: 18px;
  line-height: 1.85;
}
.post-content h2,
.post-content h3 {
  font-family: Manrope, sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 2em 0 0.65em;
}
.post-content h2 {
  font-size: 36px;
}
.post-content h3 {
  font-size: 27px;
}
.post-content p {
  margin: 0 0 1.35em;
}
.post-content img {
  height: auto;
  border-radius: 12px;
  margin: 38px 0;
}
.post-content blockquote {
  margin: 35px 0;
  padding: 4px 0 4px 24px;
  border-left: 3px solid var(--ink);
  font-size: 22px;
}
.post-content a {
  text-decoration: underline;
}
.post-content ul,
.post-content ol {
  padding-left: 24px;
}
.articles-footer {
  background: #1f1f1f;
  color: #fff;
  padding: 38px 0;
}
.articles-footer .wrap {
  display: flex;
  align-items: center;
  gap: 30px;
}
.articles-footer img {
  width: auto;
  height: 30px;
}
.articles-footer p {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
}
.articles-footer a {
  margin-left: auto;
  font-size: 12px;
}
@media (max-width: 760px) {
  .articles-hero {
    padding: 75px 0 60px;
  }
  .article-grid {
    grid-template-columns: 1fr;
  }
  .article-cover {
    height: 270px;
  }
  .post-page {
    padding-top: 50px;
  }
  .post-header .article-meta {
    margin-top: 38px;
  }
  .post-cover {
    width: calc(100% - 28px);
    height: 58vw;
    margin-top: 38px;
  }
  .post-content {
    padding-top: 42px;
    font-size: 17px;
  }
  .articles-footer .wrap {
    align-items: flex-start;
    flex-direction: column;
  }
  .articles-footer a {
    margin-left: 0;
  }
}
