.blog-hero {
  background: var(--bg);
  color: var(--ink);
  padding: 160px 32px 100px;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.blog-hero::after {
  content: 'I';
  position: absolute;
  right: -0.02em;
  bottom: -0.18em;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 68vw;
  line-height: 1;
  color: rgba(31, 29, 24, 0.04);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.05em;
}
.blog-hero .l {
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 36px;
}
.blog-hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(60px, 10vw, 160px);
  line-height: 0.92;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
}
.blog-hero h1 em {
  font-style: italic;
}
.blog-hero__sub {
  margin-top: 44px;
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-3);
}

.blog-featured {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 64px;
  align-items: center;
  padding: 72px 32px;
  max-width: 1760px;
  margin: 0 auto;
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
  background: transparent;
  transition: background 0.5s;
}
.blog-featured:hover {
  background: var(--ink);
}
.blog-featured__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(72px, 11vw, 160px);
  line-height: 1;
  color: var(--rule);
  letter-spacing: -0.03em;
  flex-shrink: 0;
  transition: color 0.5s;
}
.blog-featured:hover .blog-featured__num {
  color: rgba(241, 236, 226, 0.08);
}
.blog-featured__date {
  display: block;
  font-size: 10px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--ink-3);
  margin-bottom: 18px;
  transition: color 0.5s;
}
.blog-featured:hover .blog-featured__date {
  color: rgba(241, 236, 226, 0.38);
}
.blog-featured__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(26px, 3.2vw, 50px);
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 18px;
  transition: color 0.5s;
}
.blog-featured__title em {
  font-style: italic;
}
.blog-featured:hover .blog-featured__title {
  color: var(--bg);
}
.blog-featured__excerpt {
  font-size: 15px;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 52ch;
  margin: 0 0 28px;
  transition: color 0.5s;
}
.blog-featured:hover .blog-featured__excerpt {
  color: rgba(241, 236, 226, 0.6);
}
.blog-featured__cta {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: color 0.5s, gap 0.3s;
}
.blog-featured:hover .blog-featured__cta {
  color: var(--bg);
  gap: 20px;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}
.blog-card {
  padding: 40px 32px;
  border-right: 1px solid var(--rule);
  border-bottom: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 290px;
  position: relative;
  overflow: hidden;
  background: transparent;
  transition: background 0.4s;
}
.blog-card:nth-child(3n) {
  border-right: none;
}
.blog-card:hover {
  background: var(--ink);
}
.blog-card__num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 48px;
  line-height: 1;
  color: var(--rule);
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  transition: color 0.4s;
}
.blog-card:hover .blog-card__num {
  color: rgba(241, 236, 226, 0.08);
}
.blog-card__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(18px, 1.7vw, 24px);
  line-height: 1.18;
  letter-spacing: -0.01em;
  color: var(--ink);
  margin: 0 0 14px;
  flex: 1;
  transition: color 0.4s;
}
.blog-card__title em {
  font-style: italic;
}
.blog-card:hover .blog-card__title {
  color: var(--bg);
}
.blog-card__excerpt {
  font-size: 13px;
  line-height: 1.62;
  color: var(--ink-2);
  margin: 0 0 24px;
  transition: color 0.4s;
}
.blog-card:hover .blog-card__excerpt {
  color: rgba(241, 236, 226, 0.52);
}
.blog-card__footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
.blog-card__date {
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-3);
  transition: color 0.4s;
}
.blog-card:hover .blog-card__date {
  color: rgba(241, 236, 226, 0.35);
}
.blog-card__arrow {
  font-size: 16px;
  color: var(--ink-3);
  opacity: 0.5;
  transition: color 0.4s, opacity 0.4s, transform 0.3s;
}
.blog-card:hover .blog-card__arrow {
  color: var(--bg);
  opacity: 1;
  transform: translateX(4px);
}

.read-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: var(--ink);
  width: 0%;
  z-index: 200;
  transition: width 0.08s linear;
  pointer-events: none;
}

.post-hero {
  padding: 140px 32px 72px;
  max-width: none;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--rule);
}
.post-hero__bg {
  position: absolute;
  right: -0.04em;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(200px, 32vw, 520px);
  line-height: 1;
  color: rgba(31, 29, 24, 0.055);
  pointer-events: none;
  user-select: none;
  letter-spacing: -0.04em;
}
.post-hero__inner {
  max-width: 1760px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.post-hero__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 64px;
}
.post-back {
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-2);
  text-decoration: none;
  transition: opacity 0.3s;
}
.post-back:hover {
  opacity: 0.5;
}
.post-series {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.post-hero__meta {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 24px;
}
.post-num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(56px, 6vw, 84px);
  line-height: 1;
  color: var(--ink-3);
  letter-spacing: -0.03em;
}
.post-date-label {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-3);
}
.post-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(38px, 5.5vw, 88px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin: 0;
  max-width: 18ch;
}
.post-title em {
  font-style: italic;
}

.post-body {
  max-width: 680px;
  margin: 0 auto;
  padding: 64px 32px 100px;
}
.post-body p {
  font-size: 16px;
  line-height: 1.82;
  color: var(--ink-2);
  margin: 0 0 20px;
}
.post-body p:first-of-type {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(18px, 1.8vw, 24px);
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 36px;
}
.post-body ul {
  list-style: none;
  padding: 0 0 0 20px;
  margin: 4px 0 24px;
  border-left: 2px solid var(--rule);
}
.post-body ul li {
  font-size: 15px;
  line-height: 1.72;
  color: var(--ink-2);
  margin-bottom: 4px;
}
.post-pull {
  margin: 48px 0;
  padding: 0 0 0 28px;
  border-left: 3px solid var(--ink);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.42;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.post-q {
  display: block;
  margin-top: 48px;
  padding-top: 28px;
  border-top: 1px solid var(--rule);
  font-family: var(--serif);
  font-style: italic;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.62;
  color: var(--ink-2);
}

.post-prev {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 28px 32px;
  border-top: 1px solid var(--rule);
  text-decoration: none;
  color: inherit;
  background: transparent;
  transition: background 0.3s;
}
.post-prev:hover {
  background: rgba(31, 29, 24, 0.04);
}
.post-prev__dir {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--ink-3);
  flex-shrink: 0;
}
.post-prev__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 16px;
  color: var(--ink-2);
  letter-spacing: -0.005em;
}
.post-prev__title em {
  font-style: italic;
}

.post-next {
  display: block;
  background: var(--ink);
  color: var(--bg);
  text-decoration: none;
  padding: 80px 32px 80px;
  position: relative;
  overflow: hidden;
}
.post-next::after {
  content: '→';
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  font-size: clamp(80px, 14vw, 200px);
  color: rgba(241, 236, 226, 0.05);
  transition: transform 0.5s, color 0.4s;
  pointer-events: none;
  font-family: var(--serif);
}
.post-next:hover::after {
  transform: translateY(-50%) translateX(16px);
  color: rgba(241, 236, 226, 0.09);
}
.post-next__dir {
  display: block;
  font-size: 10px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(241, 236, 226, 0.38);
  margin-bottom: 22px;
}
.post-next__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 5vw, 80px);
  line-height: 1.04;
  letter-spacing: -0.012em;
  color: var(--bg);
  margin: 0 0 32px;
  max-width: 16ch;
}
.post-next__title em {
  font-style: italic;
}
.post-next__cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(241, 236, 226, 0.5);
  transition: gap 0.3s, color 0.3s;
}
.post-next:hover .post-next__cta {
  gap: 22px;
  color: var(--bg);
}

@media (max-width: 900px) {
  .blog-hero {
    padding: 120px 20px 80px;
  }
  .blog-featured {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 48px 20px;
  }
  .blog-featured__num {
    font-size: 56px;
    margin-bottom: 16px;
  }
  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .blog-card:nth-child(3n) {
    border-right: 1px solid var(--rule);
  }
  .blog-card:nth-child(2n) {
    border-right: none;
  }
  .post-hero {
    padding: 110px 20px 56px;
  }
  .post-hero__bg {
    display: none;
  }
  .post-hero__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 40px;
  }
  .post-body {
    padding: 48px 20px 80px;
  }
  .post-next {
    padding: 60px 20px;
  }
  .post-prev {
    padding: 24px 20px;
  }
}
@media (max-width: 600px) {
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-card {
    border-right: none !important;
  }
  .post-body p:first-of-type {
    font-size: 18px;
  }
}
