.blog-page { background: var(--cream); }
.blog-hero { position: relative; min-height: 560px; display: grid; align-items: end; padding: 180px 0 88px; color: #fff; background: var(--ink-deep); overflow: hidden; isolation: isolate; }
.blog-hero::before { content: ""; position: absolute; inset: 0; z-index: -2; opacity: .3; background: linear-gradient(90deg, rgba(6,7,18,.98), rgba(6,7,18,.75)), url('./assets-v4/blog/garlic-naan.png') center 56%/cover; }
.blog-hero::after { content: "BLOG"; position: absolute; right: -18px; bottom: -92px; z-index: -1; color: rgba(255,255,255,.045); font-family: var(--display); font-size: clamp(190px, 27vw, 430px); line-height: .8; }
.blog-hero__inner { position: relative; }
.blog-hero h1, .article-hero h1 { max-width: 900px; margin: 0; font-family: var(--display); font-size: clamp(82px, 10vw, 150px); font-weight: 400; line-height: .82; letter-spacing: -.02em; text-transform: uppercase; }
.blog-hero h1 em, .article-hero h1 em { color: var(--orange); font-style: normal; }
.blog-hero__intro { max-width: 610px; margin: 24px 0 0; color: rgba(255,255,255,.72); font-size: 18px; }

.blog-index { padding: 110px 0 130px; }
.blog-index__heading { max-width: 720px; margin-bottom: 48px; }
.blog-index__heading h2 { font-size: clamp(58px, 7vw, 96px); }
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 34px 24px; }
.blog-card { min-width: 0; background: #fff; border: 1px solid var(--line); transition: transform .35s ease, box-shadow .35s ease; }
.blog-card:hover { transform: translateY(-8px); box-shadow: 0 24px 55px rgba(12,15,38,.13); }
.blog-card__image { position: relative; aspect-ratio: 1.34 / 1; overflow: hidden; background: var(--ink); }
.blog-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s cubic-bezier(.2,.8,.2,1); }
.blog-card:hover .blog-card__image img { transform: scale(1.06); }
.blog-card__number { position: absolute; right: 14px; bottom: 14px; width: 46px; height: 46px; display: grid; place-items: center; color: var(--ink); border-radius: 50%; background: var(--gold); font-size: 11px; font-weight: 800; }
.blog-card__body { min-height: 245px; display: flex; flex-direction: column; padding: 25px 25px 28px; }
.blog-card__meta, .article-meta { margin: 0 0 13px; color: var(--orange); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.blog-card h2 { margin: 0; font-family: var(--display); font-size: 40px; font-weight: 400; line-height: .95; text-transform: uppercase; }
.blog-card p:not(.blog-card__meta) { margin: 16px 0 24px; color: #62656c; font-size: 14px; }
.blog-card__link { margin-top: auto; font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.blog-card__link span { color: var(--orange); }

.article-hero { position: relative; padding: 180px 0 92px; color: #fff; background: var(--ink-deep); overflow: hidden; }
.article-hero::after { content: ""; position: absolute; right: -10%; bottom: -70%; width: 560px; height: 560px; border: 1px solid rgba(255,255,255,.12); border-radius: 50%; box-shadow: 0 0 0 70px rgba(255,255,255,.025), 0 0 0 140px rgba(255,255,255,.018); }
.article-hero h1 { max-width: 1050px; font-size: clamp(76px, 9vw, 132px); }
.article-hero .article-meta { color: var(--gold); }
.article-layout { padding: 80px 0 120px; }
.article-featured { position: relative; width: min(1100px, 100%); margin: 0 auto 70px; aspect-ratio: 1.78 / 1; overflow: hidden; border: 10px solid #fff; box-shadow: 0 26px 70px rgba(12,15,38,.16); }
.article-featured img { width: 100%; height: 100%; object-fit: cover; }
.article-content { width: min(820px, 100%); margin-inline: auto; color: #42454c; font-size: 17px; line-height: 1.85; }
.article-content .lead { margin-top: 0; color: var(--ink); font-size: 22px; line-height: 1.6; }
.article-content h2 { margin: 64px 0 20px; color: var(--ink); font-size: clamp(48px, 5.4vw, 70px); }
.article-content h3 { margin: 38px 0 10px; color: var(--ink); font-family: var(--display); font-size: 35px; font-weight: 400; line-height: 1; text-transform: uppercase; }
.article-content ul, .article-content ol { padding-left: 22px; }
.article-content li { margin-bottom: 8px; }
.article-note { margin: 48px 0; padding: 28px 32px; color: var(--ink); border-left: 5px solid var(--orange); background: #fff; font-weight: 600; }
.article-actions { width: min(820px, 100%); margin: 70px auto 0; padding-top: 34px; display: flex; align-items: center; justify-content: space-between; gap: 24px; border-top: 1px solid var(--line); }
.article-actions > a:not(.button) { font-size: 12px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.related-posts { padding: 100px 0; color: #fff; background: var(--ink); }
.related-posts__heading { margin-bottom: 36px; }
.related-posts .blog-grid { grid-template-columns: repeat(3, 1fr); }
.related-posts .blog-card { color: var(--ink); }

@media (max-width: 900px) {
  .blog-hero { min-height: 500px; padding-top: 150px; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .article-hero { padding-top: 155px; }
  .article-featured { aspect-ratio: 1.45 / 1; }
  .related-posts .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .related-posts .blog-card:last-child { display: none; }
}

@media (max-width: 620px) {
  .blog-hero { min-height: 450px; padding: 135px 0 65px; }
  .blog-hero h1, .article-hero h1 { font-size: clamp(67px, 21vw, 92px); }
  .blog-hero__intro { font-size: 15px; }
  .blog-index, .article-layout, .related-posts { padding-block: 78px; }
  .blog-grid, .related-posts .blog-grid { grid-template-columns: 1fr; }
  .related-posts .blog-card:last-child { display: block; }
  .blog-card__body { min-height: 220px; }
  .article-hero { padding: 135px 0 66px; }
  .article-featured { margin-bottom: 46px; aspect-ratio: 1.15 / 1; border-width: 6px; }
  .article-content { font-size: 16px; }
  .article-content .lead { font-size: 19px; }
  .article-actions { align-items: flex-start; flex-direction: column; }
}
