.ashrams-blog {
    width: 100%;
    max-width: 100%;
    background: #ffffff;
    padding: 0;
}

.ashrams-blog__shell {
    width: 100%;
    max-width: none;
    margin: 0;
    background: #ffffff;
    padding: 0 0 86px;
}

.ashrams-blog__top {
    width: 100%;
}

.ashrams-blog__eyebrow {
    display: none;
}

.ashrams-blog__hero {
    position: relative;
    border: 0;
    border-radius: 0;
    overflow: visible;
    background: #ffffff;
}

/* Title + intro sit on the sky area of the hero image */
.ashrams-blog__hero-content {
    position: absolute;
    top: calc(clamp(2.75rem, 5vw, 3.75rem) + 40px);
    left: 0;
    right: 0;
    z-index: 3;
    max-width: 52rem;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 4vw, 2rem);
    text-align: center;
    pointer-events: none;
}

.ashrams-blog__hero-content h1,
.ashrams-blog__hero-content .ashrams-blog__hero-kicker--mobile,
.ashrams-blog__hero-content .ashrams-blog__hero-intro {
    pointer-events: auto;
}

/* The Ashrāms Journal — FS clamp(2rem, 3.65vw, 3.2rem) / 51px max; FW 300 */
.ashrams-blog__hero-content h1 {
    margin: -1.5rem 0 0;
    font-family: var(--ashrams-serif, 'Cormorant Infant', 'Cormorant Garamond', Georgia, serif);
    font-size: clamp(2rem, 3.65vw, 3.2rem);
    font-weight: 300;
    line-height: 1.08;
    letter-spacing: 0.01em;
    color: #1a1a1a;
}

/* Mobile-only kicker — hidden on desktop; FS 6px */
.ashrams-blog__hero-content .ashrams-blog__hero-kicker--mobile {
    display: none;
    margin: 0;
    max-width: none;
    font-family: var(--ashrams-inter, 'Inter'), var(--ashrams-sans, 'DM Sans', system-ui, sans-serif);
    font-size: 0.375rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.32em;
    text-transform: uppercase;
    color: #8a8a8a;
}

.ashrams-blog__hero-kicker-brand {
    color: var(--ashrams-terracotta, #984629);
}

/* Hero intro — Figma: Manrope 400, 21px / 32px, #5E5E5F; ours: FS 18px / 28px, FW 300 */
.ashrams-blog__hero-intro--mobile {
    display: none;
}

.ashrams-blog__hero-content .ashrams-blog__hero-intro {
    margin: 2.65rem auto 0;
    max-width: 38rem;
    color: #5E5E5F;
    font-family: var(--ashrams-manrope, 'Manrope'), var(--ashrams-sans, 'DM Sans', system-ui, sans-serif);
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 28px;
    letter-spacing: 0;
}

.ashrams-blog__hero-media {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 0;
}

.ashrams-blog__hero-image {
    width: 100%;
    height: clamp(22rem, 40vw, 32rem);
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

/* place-himalayas.png: sky behind text, lake + reflection in lower half */
.ashrams-blog__hero-media:has(.ashrams-blog__hero-image--default) {
    /* +offset moves image down; matching +height keeps water/reflection in frame */
    --blog-hero-shift: 75px;
}

.ashrams-blog__hero-image--default {
    height: clamp(
        calc(30rem + var(--blog-hero-shift, 75px)),
        calc(56vw + var(--blog-hero-shift, 75px)),
        calc(44rem + var(--blog-hero-shift, 75px))
    );
    background-size: cover;
    background-position: center calc(62% + var(--blog-hero-shift, 75px));
}

@media (min-aspect-ratio: 3/2) {
    .ashrams-blog__hero-image--default {
        background-size: cover;
        background-position: center calc(60% + var(--blog-hero-shift, 75px));
    }
}

@media (min-aspect-ratio: 16/10) {
    .ashrams-blog__hero-image--default {
        background-size: cover;
        background-position: center calc(58% + var(--blog-hero-shift, 75px));
    }
}

/* Softer bottom fade so turquoise lake + reflection stay visible */
.ashrams-blog__hero-media:has(.ashrams-blog__hero-image--default)::after {
    height: 18%;
    background: linear-gradient(
        to top,
        #ffffff 0%,
        rgba(255, 255, 255, 0.55) 48%,
        transparent 100%
    );
}

.ashrams-blog__hero-media::before,
.ashrams-blog__hero-media::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    pointer-events: none;
    z-index: 1;
}

/* No top fade — text sits on the sky; white wash hid copy */
.ashrams-blog__hero-media::before {
    display: none;
}

.ashrams-blog__hero-media::after {
    bottom: 0;
    height: 40%;
    background: linear-gradient(
        to top,
        #ffffff 0%,
        rgba(255, 255, 255, 0.9) 30%,
        rgba(255, 255, 255, 0.4) 58%,
        transparent 100%
    );
}

.ashrams-blog__scroll {
    position: absolute;
    left: 50%;
    bottom: calc(1.65rem + 30px);
    transform: translateX(-50%);
    z-index: 2;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.45rem;
    color: #6b7280;
    font-family: var(--ashrams-sans, 'DM Sans', system-ui, sans-serif);
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.ashrams-blog__scroll::after {
    content: '';
    display: block;
    width: 1px;
    height: 2.75rem;
    background: linear-gradient(to bottom, #b8bec8 0%, rgba(184, 190, 200, 0.35) 100%);
}

.ashrams-blog__filter {
    position: relative;
    z-index: 4;
    background: #ffffff;
    margin-top: -1px;
    padding-top: 1.25rem;
}

.ashrams-blog__categories {
    padding: clamp(1.5rem, 2.5vw, 2rem) 0 0;
}

/* Category nav — Figma: Inter 500, ~11px, inactive #b0b0b0, active #984629 + 2px bar */
.ashrams-blog__categories-row {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: flex-end;
    gap: clamp(1.25rem, 2vw, 2rem);
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 0 clamp(1.5rem, 5vw, 6rem) 0.95rem;
    border-bottom: 1px solid #e8e6e3;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.ashrams-blog__categories-row::-webkit-scrollbar {
    display: none;
}

.ashrams-blog__category {
    position: relative;
    flex: 0 0 auto;
    white-space: nowrap;
    text-decoration: none;
    text-transform: uppercase;
    font-family: var(--ashrams-inter, 'Inter'), var(--ashrams-sans, 'DM Sans', system-ui, sans-serif);
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    line-height: 1;
    color: #b0b0b0;
    padding: 0 0 0.6rem;
    border-bottom: 0;
    transition: color 0.2s ease;
}

.ashrams-blog__category:hover {
    color: #984629;
}

.ashrams-blog__category.is-active {
    color: #984629;
}

.ashrams-blog__category.is-active::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: calc(100% + 0.25rem);
    height: 2px;
    background: #984629;
}

.ashrams-blog__latest {
    width: 100%;
    max-width: min(79.0625rem, calc(100% - clamp(3.5rem, 10vw, 12rem)));
    margin: 0 auto;
    padding: clamp(2.85rem, 4.8vw, 4rem) clamp(1.25rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.5rem);
    text-align: center;
    text-transform: uppercase;
    font-family: var(--ashrams-sans, 'DM Sans', system-ui, sans-serif);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    line-height: 1;
    color: #9CA3AF;
    background: #ffffff;
}

.ashrams-blog__listing {
    width: 100%;
    max-width: min(79.0625rem, calc(100% - clamp(3.5rem, 10vw, 12rem)));
    margin: 0 auto;
    padding: 0 clamp(1.25rem, 3vw, 2rem) clamp(2rem, 3vw, 2.5rem);
    background: #ffffff;
}

/* Figma 1440: 1266×418 row, 200px gap, 8px/40px padding, #E5E7EB border */
.ashrams-blog__post {
    display: grid;
    grid-template-columns: minmax(0, 1fr) clamp(268px, 34.5%, 448px);
    gap: clamp(2rem, 13.89vw, 12.5rem);
    align-items: stretch;
    min-height: 418px;
    padding: clamp(1.5rem, 3vw, 2rem) 0 10px;
    border-top: 0;
    border-bottom: 1px solid #E5E7EB;
}

.ashrams-blog__post:first-of-type {
    margin-top: 0;
}

.ashrams-blog__post-body {
    display: flex;
    flex-direction: column;
    min-height: calc(clamp(268px, 34.5vw, 448px) * 3.38 / 4);
    margin-left: -0.75rem;
}

/* Figma: Playfair Display 400 — scaled FS 28px / 35px */
.ashrams-blog__post-body h2 {
    margin: 0.5rem 0 0.85rem;
    max-width: 28rem;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
    font-size: 1.75rem;
    font-weight: 300;
    font-style: normal;
    font-synthesis: none;
    line-height: 35px;
    letter-spacing: 0.01em;
    color: #2d3139;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ashrams-blog__post-body h2 a {
    font: inherit;
    letter-spacing: inherit;
    line-height: inherit;
    color: inherit;
    text-decoration: none;
}

.ashrams-blog__post-body h2 a:hover {
    color: #b85f3b;
}

.ashrams-blog__post-category {
    margin: 0;
    text-transform: uppercase;
    font-family: var(--ashrams-inter, 'Inter'), var(--ashrams-sans, 'DM Sans', system-ui, sans-serif);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    color: #984629;
}

/* Figma: Inter 400, 18px / 29.25px, #666666 */
.ashrams-blog__post-excerpt {
    margin: 0;
    max-width: 40rem;
    color: #666666;
    font-family: 'Inter', system-ui, sans-serif;
    font-size: 16px;
    font-weight: 300;
    font-style: normal;
    font-synthesis: none;
    line-height: 26px;
    letter-spacing: 0;
}

/* Figma: Inter 700, ~10px, black, book icon + tight gap above grey line */
.ashrams-blog__post-meta {
    margin-top: auto;
    margin-bottom: 0;
    padding-bottom: 0;
    text-transform: uppercase;
    font-family: var(--ashrams-inter, 'Inter'), var(--ashrams-sans, 'DM Sans', system-ui, sans-serif);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    line-height: 1;
    color: #171b25;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
}

.ashrams-blog__post-meta-icon {
    display: inline-flex;
    flex-shrink: 0;
    width: 0.875rem;
    height: 0.6875rem;
    color: inherit;
}

.ashrams-blog__post-meta-icon svg {
    display: block;
    width: 100%;
    height: 100%;
}

.ashrams-blog__post-image-wrap {
    display: block;
    align-self: start;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
}

.ashrams-blog__post-image-wrap img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3.38;
    object-fit: cover;
}

.ashrams-blog__empty {
    text-align: center;
    color: #616a7f;
    padding: 3rem 0;
}

/* Figma: 1–4, …, 12 + NEXT › — Inter, active bold + underline */
.ashrams-blog__pagination {
    width: 100%;
    max-width: min(79.0625rem, calc(100% - clamp(3.5rem, 10vw, 12rem)));
    margin: 0 auto;
    padding: clamp(2rem, 3.5vw, 2.75rem) clamp(1.25rem, 3vw, 2rem) clamp(2.5rem, 4vw, 3.5rem);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(1.75rem, 5vw, 3.25rem);
    background: #ffffff;
}

.ashrams-blog__pagination-pages {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(1.1rem, 2.6vw, 1.85rem);
}

.ashrams-blog__pagination-pages a,
.ashrams-blog__pagination-pages span {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.1rem;
    padding-bottom: 0.35rem;
    font-family: var(--ashrams-inter, 'Inter'), var(--ashrams-sans, 'DM Sans', system-ui, sans-serif);
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0;
    text-transform: none;
    color: #9CA3AF;
    text-decoration: none;
    text-align: center;
}

.ashrams-blog__pagination-pages a:hover {
    color: #171b25;
}

.ashrams-blog__pagination-pages .is-current {
    color: #171b25;
    font-weight: 700;
}

.ashrams-blog__pagination-pages .is-current::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: calc(100% + 0.15rem);
    height: 1px;
    background: #171b25;
}

.ashrams-blog__pagination-ellipsis {
    min-width: 0;
    padding-bottom: 0;
    letter-spacing: 0.12em;
}

.ashrams-blog__pagination-next {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-family: var(--ashrams-inter, 'Inter'), var(--ashrams-sans, 'DM Sans', system-ui, sans-serif);
    font-size: 0.75rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #171b25;
    text-decoration: none;
    white-space: nowrap;
}

a.ashrams-blog__pagination-next:hover {
    color: #984629;
}

.ashrams-blog__pagination-chevron {
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1;
}

body.ashrams-blog-page {
    overflow-x: hidden;
    background: #ffffff;
}

body.ashrams-blog-page .ashrams-footer {
    margin-top: 0;
    padding-top: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
}

body.ashrams-blog-page .ashrams-footer__forest {
    border-top: 0;
}

@media (max-width: 999px) {
    .ashrams-blog__shell {
        padding-bottom: 3.5rem;
    }

    .ashrams-blog__categories,
    .ashrams-blog__latest,
    .ashrams-blog__listing,
    .ashrams-blog__pagination {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .ashrams-blog__post {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        min-height: 0;
        padding: clamp(1.25rem, 3vw, 1.75rem) 0;
    }

    .ashrams-blog__post-body {
        display: block;
        min-height: 0;
        margin-left: 0;
    }

    .ashrams-blog__post-meta {
        margin-top: 1.25rem;
        margin-bottom: 0;
    }

    .ashrams-blog__post-image-wrap {
        max-width: 28rem;
    }

    /* Keep title + intro on sky only — FS scales down as width narrows */
    .ashrams-blog__hero-content {
        top: clamp(1rem, 3.25vw, 1.75rem);
    }

    .ashrams-blog__hero-content h1 {
        font-size: clamp(1.65rem, 5vw, 2rem);
        margin-top: -0.75rem;
    }

    .ashrams-blog__hero-content .ashrams-blog__hero-intro {
        font-size: clamp(0.9rem, 2.6vw, 1rem);
        line-height: 1.5;
        margin-top: 1.85rem;
        max-width: min(34rem, 90vw);
    }

    .ashrams-blog__hero-media:has(.ashrams-blog__hero-image--default) {
        --blog-hero-shift: 60px;
    }

    .ashrams-blog__hero-image--default {
        height: clamp(
            calc(22rem + var(--blog-hero-shift, 60px)),
            calc(58vw + var(--blog-hero-shift, 60px)),
            calc(32rem + var(--blog-hero-shift, 60px))
        );
        background-size: cover;
        background-position: center calc(56% + 45px);
    }
}

@media (max-width: 480px) {
    .ashrams-blog__shell {
        padding-bottom: 2rem;
    }

    .ashrams-blog__categories,
    .ashrams-blog__latest,
    .ashrams-blog__listing,
    .ashrams-blog__pagination {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .ashrams-blog__categories-row {
        gap: 0.6rem;
        justify-content: flex-start;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .ashrams-blog__category {
        font-size: 0.5625rem;
        letter-spacing: 0.07em;
    }

    .ashrams-blog__hero-content {
        top: clamp(0.75rem, 3.5vw, 1.25rem);
    }

    .ashrams-blog__hero-content h1 {
        font-size: clamp(1.45rem, 7vw, 1.75rem);
        margin-top: -0.5rem;
    }

    .ashrams-blog__hero-content .ashrams-blog__hero-intro {
        font-size: clamp(0.8125rem, 3.4vw, 0.9rem);
        line-height: 1.45;
        margin-top: 1.35rem;
        max-width: 92vw;
    }

    .ashrams-blog__hero-content .ashrams-blog__hero-intro--mobile {
        font-size: 0.6875rem;
        line-height: 1.45;
    }

    .ashrams-blog__hero-image {
        height: 14rem;
    }

    .ashrams-blog__hero-media:has(.ashrams-blog__hero-image--default) {
        --blog-hero-shift: 45px;
    }

    .ashrams-blog__hero-image--default {
        height: calc(20rem + var(--blog-hero-shift, 45px));
        background-position: center calc(52% + 35px);
    }

    .ashrams-blog__scroll::after {
        height: 2rem;
    }

    .ashrams-blog__post-body h2 {
        font-size: clamp(1.375rem, 7.5vw, 1.75rem);
        max-width: min(28rem, 100%);
        line-height: 1.25;
    }
}

@media (max-width: 600px) {
    .ashrams-blog__hero-content {
        --blog-hero-gap-xs: 0.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: var(--blog-hero-gap-xs);
    }

    .ashrams-blog__hero-content .ashrams-blog__hero-kicker--mobile {
        display: block;
        margin: 0;
        max-width: none;
        font-size: 0.375rem;
        line-height: 1.2;
    }

    .ashrams-blog__hero-intro--desktop {
        display: none;
    }

    /* The Ashrāms Journal — FS 28px; equal xs gap via flex above/below */
    .ashrams-blog__hero-content h1 {
        font-size: 1.75rem;
        margin: 0;
    }

    .ashrams-blog__hero-content .ashrams-blog__hero-intro--mobile {
        display: block;
        margin: 0 auto;
        font-size: 0.6875rem;
        line-height: 1.45;
    }
}

body.ashrams-blog-detail-page {
    overflow-x: hidden;
    background: #F9F9F9;
}

body.ashrams-blog-detail-page .ashrams-header {
    position: relative;
    background: #F9F9F9;
    padding-bottom: 0;
}

body.ashrams-blog-detail-page .ashrams-header__nav {
    transform: none;
    align-items: center;
    min-height: 81px;
}

body.ashrams-blog-detail-page .ashrams-header__logo img {
    max-width: none;
}

@media (min-width: 1000px) {
    body.ashrams-blog-detail-page .ashrams-header__logo img {
        width: 132px;
        height: 80px;
    }
}

body.ashrams-blog-detail-page .ashrams-footer {
    margin-top: 0;
    padding-top: 0;
    background: #F9F9F9;
    border: 0;
    box-shadow: none;
}

body.ashrams-blog-detail-page .ashrams-footer__forest {
    border-top: 0;
}

body.ashrams-blog-detail-page .ashrams-footer__forest-bg {
    background-color: #F9F9F9;
}

body.ashrams-blog-detail-page .ashrams-footer__forest::before {
    background: linear-gradient(
        to bottom,
        #F9F9F9 0%,
        #F9F9F9 28%,
        rgba(249, 249, 249, 0.72) 48%,
        rgba(249, 249, 249, 0.28) 62%,
        transparent 100%
    );
}

.ashrams-blog-detail {
    background: #F9F9F9;
    padding: clamp(2.25rem, 4.25vw, 3.25rem) 0 clamp(3.5rem, 7vw, 5.5rem);
}

.ashrams-blog-detail__shell {
    width: min(1030px, calc(100% - 2rem));
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(1rem, 2.5vw, 1.5rem);
    padding-right: clamp(1rem, 2.5vw, 1.5rem);
    box-sizing: border-box;
}

@media (min-width: 601px) {
    .ashrams-blog-detail__shell {
        display: flex;
        flex-direction: column;
    }

    .ashrams-blog-detail__masthead {
        order: 1;
    }

    .ashrams-blog-detail__meta-band {
        order: 2;
        text-align: center;
    }

    .ashrams-blog-detail__figure {
        order: 3;
    }

    .ashrams-blog-detail__body {
        order: 4;
    }
}

.ashrams-blog-detail__related {
    width: min(1185.5px, calc(100% - 2rem - 14.5px));
    margin-left: auto;
    margin-right: auto;
    margin-top: clamp(3rem, 5.5vw, 5.5rem);
    padding-left: clamp(1rem, 2.5vw, 1.5rem);
    padding-right: clamp(1rem, 2.5vw, 1.5rem);
    padding-top: clamp(2.25rem, 4.5vw, 4.5rem);
    border-top: 0.5px solid #E5E7EB;
    box-sizing: border-box;
}

.ashrams-blog-detail__masthead {
    max-width: 52rem;
    margin: 0 auto;
    text-align: center;
    padding: 0;
}

.ashrams-blog-detail__category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    min-height: 1.75rem;
    padding: 0.25rem 0.9rem;
    border: 1px solid #d8dce3;
    border-radius: 999px;
    font-family: var(--ashrams-inter, 'Inter'), var(--ashrams-sans, 'DM Sans', system-ui, sans-serif);
    font-size: 0.625rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    color: #984629;
    text-transform: uppercase;
}

/* Figma 1440: Ysabeau Infant 400, 64px / 70.4px, -1.28px, #000 */
.ashrams-blog-detail__title {
    max-width: 46rem;
    margin: 40px auto 0;
    font-family: 'Ysabeau Infant', var(--ashrams-nav-font, 'Ysabeau Infant'), system-ui, sans-serif;
    font-size: clamp(2rem, 4.44vw, 4rem);
    font-weight: 400;
    font-style: normal;
    font-synthesis: none;
    line-height: 1.1;
    letter-spacing: -0.02em;
    text-align: center;
    color: #000000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

@media (min-width: 1301px) {
    .ashrams-blog-detail__title {
        font-size: 64px;
        line-height: 70.4px;
        letter-spacing: -1.28px;
    }
}

.ashrams-blog-detail__dek {
    max-width: 36rem;
    margin: 20px auto 0;
    font-family: 'Inter', var(--ashrams-sans, 'DM Sans', system-ui, sans-serif);
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.65;
    color: #444748;
}

.ashrams-blog-detail__dek-text--mobile {
    display: none;
}

.ashrams-blog-detail__meta-band {
    width: 100%;
    margin-top: 40px;
    border-top: 0.5px solid #d8dce3;
    border-bottom: 0.5px solid #d8dce3;
    padding: 28px 0;
}

.ashrams-blog-detail__meta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-top: 0;
}

.ashrams-blog-detail__meta--mobile {
    display: none;
}

.ashrams-blog-detail__meta-block {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
}

.ashrams-blog-detail__meta-block--date .ashrams-blog-detail__meta-copy {
    text-align: left;
}

.ashrams-blog-detail__avatar {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 50%;
    background: #f0b5a8;
    color: #ffffff;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.ashrams-blog-detail__meta-copy {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    text-align: left;
}

.ashrams-blog-detail__meta-copy strong {
    font-family: 'Inter', var(--ashrams-sans, 'DM Sans', system-ui, sans-serif);
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.2;
    color: #111111;
}

.ashrams-blog-detail__meta-copy span {
    font-family: 'Inter', var(--ashrams-sans, 'DM Sans', system-ui, sans-serif);
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.2;
    color: #98a2b3;
    text-transform: none;
    letter-spacing: 0;
}

.ashrams-blog-detail__meta-divider {
    width: 1px;
    height: 2.25rem;
    background: #d8dce3;
    flex-shrink: 0;
}

.ashrams-blog-detail__figure {
    margin: 0;
    width: min(1024px, calc(100vw - 2rem));
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.ashrams-blog-detail__figure-media {
    border-radius: 16px;
    overflow: hidden;
}

.ashrams-blog-detail__figure-media img {
    display: block;
    width: 100%;
    aspect-ratio: 1024 / 439;
    height: auto;
    object-fit: cover;
}

.ashrams-blog-detail__figure-caption {
    margin: 12px 0 0;
    font-family: 'Inter', var(--ashrams-sans, 'DM Sans', system-ui, sans-serif);
    font-size: 0.75rem;
    font-weight: 300;
    line-height: 1.5;
    color: #98a2b3;
    text-align: left;
}

.ashrams-blog-detail__body {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    max-width: 56rem;
    margin: 0 auto;
    padding-top: 48px;
    color: #1B1C1C;
    font-family: 'Inter', var(--ashrams-inter, 'Inter'), system-ui, sans-serif;
    font-size: 18px;
    font-weight: 300;
    line-height: 29px;
}

.ashrams-blog-detail__body > * {
    margin: 0;
}

.ashrams-blog-detail__body > h3:empty,
.ashrams-blog-detail__body > h3.d__none_lg,
.ashrams-blog-detail__body > p:empty,
.ashrams-blog-detail__body > p:has(> br:only-child),
.ashrams-blog-detail__body > hr {
    display: none;
}

.ashrams-blog-detail__body p,
.ashrams-blog-detail__body li,
.ashrams-blog-detail__body span,
.ashrams-blog-detail__body strong {
    font-family: inherit !important;
    font-size: inherit !important;
    font-weight: inherit;
    line-height: inherit !important;
    color: inherit !important;
}

.ashrams-blog-detail__body h2,
.ashrams-blog-detail__body h3,
.ashrams-blog-detail__body h4 {
    font-family: 'Cormorant Infant', var(--ashrams-serif, 'Cormorant Infant'), Georgia, serif;
    font-size: clamp(1.625rem, 3.1vw, 2.25rem);
    font-weight: 500;
    font-style: normal;
    font-synthesis: none;
    line-height: 1.3;
    letter-spacing: 0.01em;
    color: #000000;
}

.ashrams-blog-detail__body h2:not(:first-child),
.ashrams-blog-detail__body h3:not(:first-child) {
    margin-top: 28px;
}

.ashrams-blog-detail__body p,
.ashrams-blog-detail__body ul,
.ashrams-blog-detail__body ol,
.ashrams-blog-detail__body blockquote {
    margin: 0;
}

.ashrams-blog-detail__body img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.ashrams-blog-detail__related-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 1.5rem;
    margin-bottom: clamp(2rem, 3.5vw, 2.75rem);
}

.ashrams-blog-detail__related-head h2 {
    margin: 0;
    font-family: 'Ysabeau Infant', var(--ashrams-nav-font, 'Ysabeau Infant'), system-ui, sans-serif;
    font-size: clamp(2rem, 2.85vw, 2.5rem);
    font-weight: 600;
    font-style: normal;
    font-synthesis: none;
    letter-spacing: 0;
    line-height: 1.1;
    text-transform: none;
    color: #000000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ashrams-blog-detail__related-head a {
    font-family: 'Inter', var(--ashrams-inter, 'Inter'), system-ui, sans-serif;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0;
    text-transform: none;
    line-height: 1.2;
    color: #984629;
    text-decoration: none;
    white-space: nowrap;
}

.ashrams-blog-detail__related-head a:hover {
    color: #b85f3b;
}

.ashrams-blog-detail__related-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: clamp(1.5rem, 2.5vw, 2rem);
}

.ashrams-blog-detail__story {
    min-width: 0;
}

.ashrams-blog-detail__story-image {
    display: block;
    border-radius: 8px;
    overflow: hidden;
    text-decoration: none;
}

.ashrams-blog-detail__story-image img {
    display: block;
    width: calc(100% - 3px);
    margin: 0 auto;
    aspect-ratio: 4 / 3.35;
    object-fit: cover;
}

.ashrams-blog-detail__story-category,
.ashrams-blog-detail__story-title {
    max-width: calc(100% - 10px);
}

.ashrams-blog-detail__story-category {
    margin: 1.125rem 0 0.625rem;
    text-transform: uppercase;
    font-family: 'Inter', var(--ashrams-inter, 'Inter'), system-ui, sans-serif !important;
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    line-height: 1.2;
    color: #99452A;
}

.ashrams-blog-detail__story-title {
    margin: 0;
    font-family: 'Playfair Display', Georgia, 'Times New Roman', serif !important;
    font-size: clamp(1.25rem, 1.6vw, 1.5rem);
    font-weight: 500;
    font-style: normal;
    font-synthesis: none;
    line-height: 1.35;
    letter-spacing: 0.01em;
    color: #000000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.ashrams-blog-detail__story-title a {
    font-family: inherit !important;
    font-size: inherit !important;
    font-weight: inherit !important;
    line-height: inherit !important;
    letter-spacing: inherit !important;
    color: inherit;
    text-decoration: none;
}

.ashrams-blog-detail__story-title a:hover {
    color: #984629;
}

@media (max-width: 999px) {
    .ashrams-blog-detail__shell,
    .ashrams-blog-detail__related {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .ashrams-blog-detail__title {
        max-width: none;
    }

    .ashrams-blog-detail__related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .ashrams-blog-detail {
        padding-top: 1.5rem;
        padding-bottom: 3rem;
    }

    .ashrams-blog-detail__shell,
    .ashrams-blog-detail__related {
        width: 100%;
        padding-left: 1.59375rem; /* 25.5px — Figma 393 → 342px content */
        padding-right: 1.59375rem;
    }

    .ashrams-blog-detail__masthead {
        max-width: none;
    }

    .ashrams-blog-detail__category {
        margin-top: 0;
    }

    .ashrams-blog-detail__title {
        max-width: none;
        margin-top: 1.25rem;
        font-size: clamp(1.75rem, 8.2vw, 2rem);
        font-weight: 500;
        line-height: 1.15;
        letter-spacing: -0.02em;
    }

    .ashrams-blog-detail__dek {
        margin-top: 1.5rem;
        font-size: 0.875rem;
        line-height: 1.55;
        color: #667085;
    }

    .ashrams-blog-detail__figure {
        --blog-detail-hero-ratio: 342 / 192.3800048828125;
        width: 100%;
        margin-top: 3rem;
        margin-left: auto;
        margin-right: auto;
        left: auto;
        transform: none;
        border-radius: 12px;
        overflow: hidden;
    }

    .ashrams-blog-detail__figure-media {
        border-radius: 0;
        aspect-ratio: var(--blog-detail-hero-ratio);
    }

    .ashrams-blog-detail__figure-media img {
        width: 100%;
        height: 100%;
        aspect-ratio: unset;
        object-fit: cover;
    }

    .ashrams-blog-detail__figure-caption {
        position: absolute;
        left: 0;
        right: 0;
        bottom: 0;
        margin: 0;
        padding: 0.75rem 0.875rem;
        background: linear-gradient(
            to top,
            rgba(0, 0, 0, 0.72) 0%,
            rgba(0, 0, 0, 0.48) 55%,
            transparent 100%
        );
        color: #ffffff;
        font-family: 'Inter', var(--ashrams-inter, 'Inter'), system-ui, sans-serif;
        font-size: 12px;
        font-weight: 300;
        font-style: italic;
        line-height: 18px;
        letter-spacing: 0;
        vertical-align: middle;
        text-align: left;
    }

    .ashrams-blog-detail__meta-band {
        margin-top: 2.5rem;
        border-top: 0;
        border-bottom: 0;
        padding: 0;
        text-align: center;
    }

    .ashrams-blog-detail__meta--desktop {
        display: none;
    }

    .ashrams-blog-detail__meta--mobile {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0;
        width: auto;
        max-width: 100%;
        margin: 0 auto;
    }

    .ashrams-blog-detail__meta--mobile .ashrams-blog-detail__meta-block {
        gap: 0.75rem;
    }

    .ashrams-blog-detail__meta--mobile .ashrams-blog-detail__avatar {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 0.75rem;
        color: #984629;
        background: #f0b5a8;
    }

    .ashrams-blog-detail__meta--mobile .ashrams-blog-detail__meta-copy {
        gap: 0.15rem;
        text-align: left;
    }

    .ashrams-blog-detail__meta--mobile .ashrams-blog-detail__meta-copy strong {
        font-family: 'Inter', var(--ashrams-inter, 'Inter'), system-ui, sans-serif;
        font-size: 0.875rem;
        font-weight: 700;
        line-height: 1.2;
        color: #111111;
    }

    .ashrams-blog-detail__meta--mobile .ashrams-blog-detail__meta-copy span {
        font-family: 'Inter', var(--ashrams-inter, 'Inter'), system-ui, sans-serif;
        font-size: 0.75rem;
        font-weight: 400;
        line-height: 1.2;
        color: #98a2b3;
    }

    .ashrams-blog-detail__body {
        padding-top: 3.25rem;
        font-size: 1rem;
        line-height: 1.625;
    }

    .ashrams-blog-detail__body h2,
    .ashrams-blog-detail__body h3,
    .ashrams-blog-detail__body h4 {
        font-family: 'Ysabeau Infant', var(--ashrams-nav-font, 'Ysabeau Infant'), system-ui, sans-serif;
        color: #1B1C1C;
    }

    .ashrams-blog-detail__related-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 399px) {
    .ashrams-blog-detail__title {
        font-weight: 600;
    }

    .ashrams-blog-detail__dek {
        max-width: none;
        margin-left: auto;
        margin-right: auto;
        text-align: center;
    }

    .ashrams-blog-detail__dek-text--desktop {
        display: none;
    }

    .ashrams-blog-detail__dek-text--mobile {
        display: block;
        max-width: 16.875rem;
        margin: 0 auto;
        text-align: center;
        line-height: 1.55;
    }

    .ashrams-blog-detail__story-image {
        width: 100%;
        border-radius: 10px;
        aspect-ratio: 345 / 228;
    }

    .ashrams-blog-detail__story-image img {
        width: 100%;
        height: 100%;
        margin: 0;
        aspect-ratio: unset;
        object-fit: cover;
    }

    .ashrams-blog-detail__story-title {
        font-weight: 600;
    }
}
