.blog-main {
  min-height: 100vh;
  padding-top: var(--header-height);
  background: var(--white);
}

.blog-hero {
  padding: 105px 0 92px;
  background: var(--black);
  color: var(--white);
}

.blog-hero-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 8vw;
  align-items: end;
}

.blog-kicker,
.post-kicker,
.post-meta,
.breadcrumb,
.toc-title,
.article-section-label {
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.blog-kicker,
.post-kicker {
  margin: 0 0 28px;
  color: var(--yellow);
}

.blog-hero h1,
.post-hero h1 {
  margin: 0;
  font-family: var(--display);
  font-weight: 950;
  line-height: 0.9;
  letter-spacing: -0.07em;
  text-transform: uppercase;
}

.blog-hero h1 {
  max-width: 980px;
  font-size: clamp(4rem, 8vw, 8rem);
}

.blog-hero h1 span,
.post-hero h1 span {
  color: var(--yellow);
}

.blog-hero-copy {
  max-width: 470px;
  margin: 0 0 8px;
  color: var(--gray);
  font-size: 1.12rem;
  line-height: 1.7;
}

.blog-index {
  padding: 110px 0 130px;
}

.blog-featured {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  min-height: 560px;
  border: 1px solid var(--black);
}

.blog-featured-art {
  position: relative;
  min-height: 100%;
  padding: 32px;
  background:
    linear-gradient(rgba(10, 10, 10, 0.17) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 10, 10, 0.17) 1px, transparent 1px),
    var(--yellow);
  background-size: 20% 20%;
  overflow: hidden;
}

.blog-featured-art strong {
  display: block;
  margin-left: -10px;
  font-family: var(--display);
  font-size: clamp(10rem, 23vw, 22rem);
  font-weight: 950;
  line-height: 0.72;
  letter-spacing: -0.13em;
}

.blog-featured-art span {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.1em;
}

.blog-featured-copy {
  display: flex;
  flex-direction: column;
  padding: clamp(36px, 5vw, 72px);
  background: var(--black);
  color: var(--white);
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 20px;
  margin: 0;
  color: var(--gray);
}

.post-meta span:first-child {
  color: var(--yellow);
}

.blog-featured-copy h2 {
  margin: auto 0 26px;
  font-family: var(--display);
  font-size: clamp(2.5rem, 5vw, 5.2rem);
  font-weight: 950;
  line-height: 0.94;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.blog-featured-copy > p:not(.post-meta) {
  max-width: 690px;
  margin: 0 0 34px;
  color: var(--gray);
  font-size: 1.06rem;
  line-height: 1.65;
}

.text-link {
  align-self: flex-start;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--yellow);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.blog-section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin: 110px 0 46px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--black);
}

.blog-section-heading h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.blog-section-heading p {
  max-width: 420px;
  margin: 0 0 5px;
  color: #5c5c5c;
  line-height: 1.65;
}

.post-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--line-light);
  border-left: 1px solid var(--line-light);
}

.post-card {
  display: flex;
  min-height: 470px;
  flex-direction: column;
  padding: 36px;
  border-right: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  transition: background 200ms ease, color 200ms ease;
}

.post-card:hover {
  background: var(--yellow);
}

.post-card h3 {
  margin: auto 0 24px;
  font-family: var(--display);
  font-size: clamp(2rem, 3.6vw, 3.6rem);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.post-card > p:not(.post-meta) {
  margin: 0 0 32px;
  color: #555;
  line-height: 1.65;
}

.post-card:hover .post-meta,
.post-card:hover > p {
  color: rgba(10, 10, 10, 0.7);
}

.topic-map {
  margin-top: 105px;
  padding: 70px;
  background: var(--yellow);
}

.topic-map > p {
  margin: 0 0 32px;
}

.topic-map h2 {
  max-width: 850px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 950;
  line-height: 0.92;
  letter-spacing: -0.065em;
  text-transform: uppercase;
}

.topic-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin: 62px 0 0;
  padding: 0;
  list-style: none;
  border-top: 2px solid var(--black);
}

.topic-list li {
  padding: 20px 12px 20px 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.35);
  font-weight: 800;
}

.blog-cta {
  padding: 100px 0;
  background: var(--black);
  color: var(--white);
}

.blog-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}

.blog-cta h2 {
  max-width: 770px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 6rem);
  font-weight: 950;
  line-height: 0.92;
  letter-spacing: -0.06em;
  text-transform: uppercase;
}

.post-hero {
  padding: 70px 0 92px;
  background: var(--black);
  color: var(--white);
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 70px;
  color: var(--gray);
}

.breadcrumb a:hover {
  color: var(--yellow);
}

.post-hero h1 {
  max-width: 1150px;
  font-size: clamp(3.5rem, 7.4vw, 7.5rem);
}

.post-deck {
  max-width: 850px;
  margin: 42px 0 0;
  color: #d2d2d2;
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.post-hero .post-meta {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
}

.article-shell {
  display: grid;
  grid-template-columns: 250px minmax(0, 780px);
  gap: 8vw;
  justify-content: center;
  padding-top: 96px;
  padding-bottom: 120px;
}

.article-toc {
  position: sticky;
  top: calc(var(--header-height) + 30px);
  align-self: start;
  padding-top: 18px;
  border-top: 4px solid var(--yellow);
}

.toc-title {
  margin: 0 0 20px;
}

.article-toc ol {
  margin: 0;
  padding-left: 20px;
  color: #555;
  font-size: 0.9rem;
}

.article-toc li {
  margin: 0 0 13px;
}

.article-toc a:hover {
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 3px;
}

.article-content {
  min-width: 0;
  color: #202020;
  font-size: 1.12rem;
  line-height: 1.82;
}

.article-content > p:first-child {
  margin-top: 0;
  font-size: 1.32rem;
  line-height: 1.65;
}

.article-content h2 {
  margin: 84px 0 24px;
  padding-top: 8px;
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.5vw, 4.5rem);
  font-weight: 950;
  line-height: 0.98;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  scroll-margin-top: calc(var(--header-height) + 30px);
}

.article-content h3 {
  margin: 46px 0 16px;
  font-size: 1.55rem;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

.article-content p,
.article-content ul,
.article-content ol {
  margin-top: 0;
  margin-bottom: 25px;
}

.article-content li {
  margin-bottom: 10px;
  padding-left: 6px;
}

.article-content strong {
  color: var(--black);
}

.article-content a:not(.button) {
  text-decoration: underline;
  text-decoration-color: var(--yellow);
  text-decoration-thickness: 3px;
  text-underline-offset: 3px;
}

.article-callout {
  margin: 48px 0;
  padding: 32px;
  border-left: 9px solid var(--yellow);
  background: #f3f3f3;
}

.article-callout p:last-child {
  margin-bottom: 0;
}

.article-section-label {
  display: block;
  margin-bottom: 12px;
  color: #666;
}

.article-steps {
  margin: 38px 0 !important;
  padding: 0 !important;
  list-style: none;
  counter-reset: steps;
  border-top: 2px solid var(--black);
}

.article-steps li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 18px;
  margin: 0;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-light);
  counter-increment: steps;
}

.article-steps li::before {
  content: counter(steps, decimal-leading-zero);
  color: #666;
  font-size: 0.75rem;
  font-weight: 900;
}

.article-steps strong {
  display: block;
  margin-bottom: 4px;
}

.article-table-wrap {
  max-width: 100%;
  margin: 42px 0;
  overflow-x: auto;
  border: 1px solid var(--line-light);
}

.article-content table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
  font-size: 0.94rem;
}

.article-content th,
.article-content td {
  padding: 16px;
  border-bottom: 1px solid var(--line-light);
  text-align: left;
  vertical-align: top;
}

.article-content th {
  background: var(--black);
  color: var(--white);
}

.article-content tr:last-child td {
  border-bottom: 0;
}

.article-faq {
  margin-top: 80px;
}

.article-faq details {
  border-top: 1px solid var(--line-light);
}

.article-faq details:last-child {
  border-bottom: 1px solid var(--line-light);
}

.article-faq summary {
  padding: 21px 0;
  cursor: pointer;
  font-weight: 850;
  line-height: 1.35;
}

.article-faq details p {
  padding: 0 0 22px;
}

.article-author {
  margin-top: 80px;
  padding: 34px;
  background: var(--yellow);
}

.article-author h2 {
  margin: 0 0 14px;
  padding: 0;
  font-size: 2rem;
}

.article-author p:last-child {
  margin-bottom: 0;
}

.article-next {
  padding: 80px 0;
  background: var(--black);
  color: var(--white);
}

.article-next-grid {
  display: grid;
  grid-template-columns: 0.55fr 1.45fr;
  gap: 6vw;
  align-items: start;
}

.article-next h2 {
  margin: 0 0 26px;
  font-family: var(--display);
  font-size: clamp(2.5rem, 4.8vw, 5rem);
  font-weight: 950;
  line-height: 0.95;
  letter-spacing: -0.055em;
  text-transform: uppercase;
}

.article-next p {
  max-width: 650px;
  margin: 0 0 30px;
  color: var(--gray);
  line-height: 1.65;
}

@media (max-width: 900px) {
  .blog-hero-grid,
  .blog-featured,
  .article-shell {
    grid-template-columns: 1fr;
  }

  .blog-hero-grid {
    gap: 40px;
  }

  .blog-featured-art {
    min-height: 360px;
  }

  .blog-featured-copy {
    min-height: 520px;
  }

  .article-toc {
    position: static;
  }
}

@media (max-width: 760px) {
  .blog-hero,
  .post-hero {
    padding: 72px 0;
  }

  .blog-hero h1 {
    font-size: clamp(3.1rem, 14.5vw, 5rem);
    overflow-wrap: break-word;
  }

  .blog-index {
    padding: 72px 0 88px;
  }

  .blog-featured-art {
    min-height: 300px;
  }

  .blog-featured-copy {
    min-height: 560px;
    padding: 28px;
  }

  .blog-featured-copy h2 {
    font-size: clamp(2.25rem, 10.5vw, 3.5rem);
  }

  .blog-section-heading,
  .blog-cta-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .blog-section-heading {
    margin-top: 76px;
  }

  .blog-section-heading h2,
  .topic-map h2,
  .blog-cta h2 {
    font-size: clamp(2.65rem, 12vw, 4rem);
  }

  .post-grid,
  .topic-list,
  .article-next-grid {
    grid-template-columns: 1fr;
  }

  .post-card {
    min-height: 430px;
    padding: 28px;
  }

  .post-card h3 {
    font-size: clamp(2rem, 9vw, 3rem);
  }

  .topic-map {
    margin-top: 76px;
    padding: 42px 26px;
  }

  .blog-cta {
    padding: 72px 0;
  }

  .blog-cta-inner {
    display: flex;
    gap: 42px;
  }

  .blog-cta .button {
    width: 100%;
  }

  .breadcrumb {
    margin-bottom: 48px;
  }

  .post-hero h1 {
    font-size: clamp(2.7rem, 12.5vw, 4.2rem);
    overflow-wrap: break-word;
  }

  .post-deck {
    margin-top: 30px;
  }

  .article-shell {
    gap: 54px;
    padding-top: 64px;
    padding-bottom: 80px;
  }

  .article-content {
    font-size: 1.03rem;
    line-height: 1.76;
  }

  .article-content > p:first-child {
    font-size: 1.16rem;
  }

  .article-content h2 {
    margin-top: 64px;
    font-size: clamp(2.25rem, 10vw, 3.5rem);
    overflow-wrap: break-word;
  }

  .article-callout,
  .article-author {
    padding: 25px;
  }

  .article-next {
    padding: 64px 0;
  }
}
