@import url("https://api.fontshare.com/v2/css?f[]=satoshi@300,400,500,700,900&display=swap");

:root {
    --blog-black: #0F0F0F;
    --blog-panel: #151515;
    --blog-line: rgba(166, 124, 82, 0.28);
    --blog-gold: #A67C52;
    --blog-gold-bright: #A67C52;
    --blog-ivory: #F5F2EA;
    --blog-muted: rgba(245, 242, 234, 0.68);
    --blog-slate: #666868;
    --blog-font: "Satoshi", ui-sans-serif, system-ui, sans-serif;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body.blog-page {
    margin: 0;
    color: var(--blog-ivory);
    background:
        radial-gradient(circle at 18% 28%, rgba(213, 154, 84, 0.06), transparent 28%),
        linear-gradient(180deg, #070808 0%, #050606 100%);
    font-family: var(--blog-font);
}

.blog-page a {
    color: inherit;
    text-decoration: none;
}

.blog-page svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-linecap: round;
    stroke-linejoin: round;
    stroke-width: 1.8;
}

.blog-kicker {
    margin: 0;
    color: var(--blog-gold-bright);
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    line-height: 1.1;
    text-transform: uppercase;
}

.blog-hero {
    position: relative;
    isolation: isolate;
    display: grid;
    grid-template-columns: minmax(410px, 0.92fr) minmax(310px, 0.74fr);
    grid-template-areas: "copy art";
    gap: clamp(28px, 5vw, 96px);
    align-items: end;
    width: min(100% - 72px, 1490px);
    min-height: 640px;
    height: 92svh;
    max-height: 760px;
    margin-inline: auto;
    overflow: hidden;
    padding: 118px 0 42px;
}

.blog-hero::before,
.blog-hero::after,
.blog-hero__ambient {
    position: absolute;
    inset: 0 calc(50% - 50vw);
    z-index: -1;
    pointer-events: none;
    content: "";
}

.blog-hero::before {
    background:
        conic-gradient(from 230deg at 70% 42%, transparent 0 18%, rgba(213, 154, 84, 0.18) 20% 22%, transparent 25% 60%, rgba(90, 137, 125, 0.1) 64% 67%, transparent 70%),
        linear-gradient(115deg, transparent 0 12%, rgba(184, 111, 63, 0.14) 12.4%, transparent 13.1% 68%, rgba(213, 154, 84, 0.12) 68.4%, transparent 69.1%),
        radial-gradient(ellipse at 72% 46%, rgba(213, 154, 84, 0.16), transparent 32%),
        radial-gradient(ellipse at 18% 78%, rgba(79, 143, 123, 0.1), transparent 28%),
        linear-gradient(180deg, rgba(8, 9, 9, 0.5), rgba(8, 9, 9, 0.06) 56%, #080909 100%);
    opacity: 0.9;
}

.blog-hero::after {
    background:
        linear-gradient(90deg, rgba(8, 9, 9, 0.98), rgba(8, 9, 9, 0.58) 54%, rgba(8, 9, 9, 0.92)),
        linear-gradient(180deg, rgba(8, 9, 9, 0.78), transparent 24%, transparent 72%, #080909);
    box-shadow: inset 0 -120px 90px -70px rgba(8, 9, 9, 0.98);
}

.blog-hero__ambient {
    background:
        radial-gradient(ellipse at 68% 46%, rgba(213, 154, 84, 0.18), transparent 32%),
        radial-gradient(ellipse at 18% 78%, rgba(79, 143, 123, 0.12), transparent 28%);
    filter: blur(4px);
    opacity: 0.74;
}

.blog-hero__orbit {
    position: absolute;
    z-index: 3;
    left: -22%;
    top: -18%;
    display: block;
    width: min(46vw, 580px);
    aspect-ratio: 1;
    opacity: 0.58;
    background:
        radial-gradient(circle, transparent 0 27%, rgba(213, 154, 84, 0.2) 27.2% 27.6%, transparent 27.8%),
        radial-gradient(circle, transparent 0 43%, rgba(213, 154, 84, 0.16) 43.2% 43.5%, transparent 43.7%),
        radial-gradient(circle, transparent 0 60%, rgba(213, 154, 84, 0.11) 60.2% 60.5%, transparent 60.8%),
        radial-gradient(circle at 76% 44%, var(--blog-gold) 0 2px, transparent 2.6px),
        radial-gradient(circle at 54% 18%, var(--blog-gold) 0 2px, transparent 2.6px);
}

.blog-hero__content {
    position: relative;
    z-index: 5;
    grid-area: copy;
    max-width: 620px;
    align-self: center;
}

.blog-hero__content::before {
    position: absolute;
    left: 0;
    top: -34px;
    width: min(100%, 420px);
    height: 1px;
    background: linear-gradient(90deg, rgba(213, 154, 84, 0.72), transparent);
    content: "";
}

.blog-hero h1 {
    margin: 24px 0 0;
    max-width: 610px;
    color: #fffaf1;
    font-size: clamp(3.2rem, 5vw, 6rem);
    font-weight: 800;
    letter-spacing: 0;
    line-height: 1.02;
}

.blog-hero__line {
    display: block;
    overflow: hidden;
}

.blog-hero__line > span {
    display: block;
}

.blog-hero h1 em {
    color: var(--blog-gold);
    font-family: var(--blog-font);
    font-style: italic;
    font-weight: 600;
}

.blog-rule {
    display: block;
    width: 96px;
    height: 2px;
    margin: 28px 0 0;
    background: var(--blog-gold);
}

.blog-hero__content > p:not(.blog-kicker) {
    max-width: 570px;
    margin: 34px 0 0;
    color: var(--blog-muted);
    font-size: 1rem;
    line-height: 1.76;
}

.blog-hero__art {
    position: relative;
    z-index: 1;
    grid-area: art;
    min-width: 0;
    align-self: stretch;
    justify-self: end;
    width: 100%;
}

.blog-hero__image {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 360px;
    overflow: hidden;
    border: 1px solid rgba(213, 154, 84, 0.2);
    border-radius: 6px;
    background:
        linear-gradient(135deg, rgba(247, 241, 231, 0.035), transparent 44%),
        radial-gradient(circle at 50% 45%, rgba(213, 154, 84, 0.16), transparent 34%),
        #0b0b0b;
    box-shadow: 0 26px 90px rgba(0, 0, 0, 0.32);
}

.blog-hero__image::before,
.blog-hero__image::after {
    position: absolute;
    inset: 0;
    content: "";
}

.blog-hero__image::before {
    z-index: 2;
    background:
        linear-gradient(90deg, rgba(5, 5, 5, 0.78), transparent 55%, rgba(5, 5, 5, 0.52)),
        linear-gradient(0deg, rgba(5, 5, 5, 0.72), transparent 48%);
}

.blog-hero__image::after {
    z-index: 1;
    background-image:
        linear-gradient(rgba(213, 154, 84, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(213, 154, 84, 0.055) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: linear-gradient(90deg, transparent, black 22%, black 78%, transparent);
    animation: blogGridDrift 12s linear infinite;
}

.blog-hero__mark {
    position: absolute;
    left: 50%;
    top: 50%;
    z-index: 4;
    color: rgba(213, 154, 84, 0.84);
    font-family: var(--blog-font);
    font-size: clamp(5rem, 8vw, 8rem);
    line-height: 1;
    text-shadow: 0 0 42px rgba(213, 154, 84, 0.24);
    transform: translate(-50%, -50%);
    animation: blogMarkPulse 5.8s ease-in-out infinite;
}

.blog-hero__beam {
    position: absolute;
    z-index: 2;
    inset: 12% auto 10% 45%;
    display: block;
    width: 12%;
    transform: skewX(-18deg);
    background: linear-gradient(90deg, transparent, rgba(247, 241, 231, 0.14), rgba(213, 154, 84, 0.28), transparent);
    filter: blur(18px);
    opacity: 0.42;
    mix-blend-mode: screen;
    animation: blogBeamFloat 6.8s ease-in-out infinite alternate;
}

.blog-hero__beam--two {
    left: 64%;
    width: 8%;
    opacity: 0.26;
    transform: skewX(16deg);
    animation-duration: 8.2s;
}

@keyframes blogGridDrift {
    to {
        background-position: 52px 52px, 52px 52px;
    }
}

@keyframes blogBeamFloat {
    from {
        filter: blur(18px);
    }

    to {
        filter: blur(24px);
    }
}

@keyframes blogMarkPulse {
    0%,
    100% {
        text-shadow: 0 0 38px rgba(213, 154, 84, 0.2);
    }

    50% {
        text-shadow: 0 0 62px rgba(213, 154, 84, 0.34);
    }
}

.blog-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    min-height: 58px;
    padding: 0 32px;
    border: 1px solid rgba(213, 154, 84, 0.84);
    color: #fff8ec;
    background: rgba(12, 12, 12, 0.42);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.blog-button:hover {
    transform: translateY(-2px);
    border-color: var(--blog-gold-bright);
    background: rgba(213, 154, 84, 0.1);
}

.blog-button svg {
    color: var(--blog-gold-bright);
}

.blog-topics,
.blog-articles,
.blog-pagination,
.blog-subscribe {
    width: min(100% - 48px, 1560px);
    margin-inline: auto;
}

.blog-topics {
    padding: clamp(52px, 5.4vw, 76px) 0 0;
}

.blog-section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 28px;
}

.blog-section-head a {
    color: rgba(251, 246, 237, 0.76);
    font-size: 0.9rem;
}

.blog-section-head a span {
    color: var(--blog-gold-bright);
    margin-left: 8px;
}

.blog-topic-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 20px;
}

.blog-topic-card {
    position: relative;
    display: grid;
    overflow: hidden;
    min-height: 178px;
    align-content: center;
    padding: 28px 34px;
    border: 1px solid rgba(245, 242, 234, 0.1);
    background:
        radial-gradient(circle at 88% 0%, rgba(213, 154, 84, 0.08), transparent 42%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.014));
    transition: transform 220ms ease, border-color 220ms ease, background 220ms ease;
}

.blog-topic-card::before,
.blog-card::before {
    position: absolute;
    inset: 0;
    z-index: 1;
    opacity: 0;
    pointer-events: none;
    background: radial-gradient(circle at var(--blog-card-x, 50%) var(--blog-card-y, 50%), rgba(243, 194, 119, 0.18), transparent 32%);
    content: "";
    transition: opacity 220ms ease;
}

.blog-topic-card:hover,
.blog-topic-card.is-active {
    transform: translateY(-3px);
    border-color: rgba(243, 194, 119, 0.82);
    background:
        radial-gradient(circle at 82% 12%, rgba(213, 154, 84, 0.15), transparent 45%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.058), rgba(255, 255, 255, 0.012));
}

.blog-topic-card:hover::before,
.blog-card:hover::before {
    opacity: 1;
}

.blog-topic-card > *,
.blog-card > * {
    position: relative;
    z-index: 2;
}

.blog-topic-card__icon {
    display: block;
    margin-bottom: 24px;
    color: var(--blog-gold);
}

.blog-topic-card__icon svg {
    width: 40px;
    height: 40px;
}

.blog-topic-card strong,
.blog-topic-card small {
    display: block;
}

.blog-topic-card strong {
    color: #fff8ec;
    font-size: 1rem;
    line-height: 1.25;
}

.blog-topic-card small {
    margin-top: 10px;
    color: rgba(251, 246, 237, 0.74);
    font-size: 1.05rem;
}

.blog-articles {
    display: grid;
    grid-template-columns: 1.05fr 0.7fr 0.7fr;
    gap: 24px;
    padding: clamp(48px, 5vw, 70px) 0 0;
}

.blog-card {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(245, 242, 234, 0.12);
    border-radius: 5px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.015));
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
}

.blog-card--featured {
    grid-row: span 2;
}

.blog-card__image {
    position: relative;
    aspect-ratio: 1.84;
    overflow: hidden;
    background: #111;
}

.blog-card--featured .blog-card__image {
    aspect-ratio: 1.46;
}

.blog-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.58) contrast(1.08) brightness(0.76);
    transition: transform 400ms ease, filter 400ms ease;
}

.blog-card:hover .blog-card__image img {
    transform: scale(1.035);
    filter: saturate(0.7) contrast(1.08) brightness(0.86);
}

.blog-card__image span {
    position: absolute;
    left: 36px;
    top: 36px;
    display: inline-flex;
    min-height: 28px;
    align-items: center;
    padding: 0 12px;
    border-radius: 3px;
    color: #100d09;
    background: linear-gradient(135deg, #f2c176, #cc8743);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.blog-card__body {
    position: relative;
    min-height: 185px;
    padding: 28px 30px 34px;
}

.blog-card--featured .blog-card__body {
    min-height: 338px;
    padding: 36px;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin: 0 0 18px;
    color: rgba(251, 246, 237, 0.7);
    font-size: 0.84rem;
}

.blog-meta strong {
    color: var(--blog-gold-bright);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.blog-meta span::before {
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;
    margin: 0 12px 2px 0;
    border-radius: 50%;
    background: var(--blog-gold);
}

.blog-card h2 {
    max-width: 92%;
    margin: 0;
    color: #fff9ef;
    font-size: clamp(1.22rem, 1.55vw, 1.7rem);
    font-weight: 500;
    line-height: 1.28;
}

.blog-card--featured h2 {
    font-family: var(--blog-font);
    font-size: clamp(2rem, 3vw, 3.1rem);
    line-height: 1.12;
}

.blog-card__body > p:not(.blog-meta) {
    max-width: 640px;
    margin: 22px 0 30px;
    color: var(--blog-muted);
    font-size: 1rem;
    line-height: 1.75;
}

.blog-card__body > small {
    display: block;
    margin-top: 24px;
    color: rgba(251, 246, 237, 0.58);
    font-size: 0.9rem;
}

.blog-card__body > a {
    position: absolute;
    right: 30px;
    bottom: 32px;
    display: grid;
    place-items: center;
    width: 36px;
    height: 36px;
    color: var(--blog-gold-bright);
}

.blog-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff8ec;
    font-size: 0.9rem;
}

.blog-card__author img {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
}

.blog-card__author small {
    display: block;
    margin-top: 4px;
    color: rgba(251, 246, 237, 0.62);
}

.blog-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    padding: 40px 0 clamp(46px, 5vw, 70px);
}

.blog-pagination a,
.blog-pagination span {
    display: grid;
    place-items: center;
    width: 45px;
    height: 45px;
    border: 1px solid rgba(245, 242, 234, 0.08);
    border-radius: 4px;
    color: rgba(251, 246, 237, 0.82);
    background: rgba(255, 255, 255, 0.035);
    font-size: 0.9rem;
}

.blog-pagination .is-current {
    border-color: transparent;
    color: #130e08;
    background: linear-gradient(135deg, #f4c67c, #d18a43);
}

.blog-subscribe {
    display: grid;
    grid-template-columns: 150px minmax(280px, 1fr) minmax(360px, 600px);
    align-items: center;
    gap: 40px;
    min-height: 205px;
    padding: 34px clamp(24px, 3vw, 58px);
    border-top: 1px solid rgba(245, 242, 234, 0.08);
    border-bottom: 1px solid rgba(245, 242, 234, 0.1);
    background:
        linear-gradient(90deg, rgba(12, 12, 12, 0.88), rgba(22, 18, 14, 0.92)),
        radial-gradient(circle at 12% 52%, rgba(213, 154, 84, 0.24), transparent 12%),
        repeating-radial-gradient(ellipse at 95% 50%, rgba(213, 154, 84, 0.18) 0 1px, transparent 2px 8px);
}

.blog-subscribe__icon {
    display: grid;
    place-items: center;
    width: 112px;
    aspect-ratio: 1;
    border: 1px solid rgba(213, 154, 84, 0.48);
    border-radius: 50%;
    color: var(--blog-gold-bright);
    box-shadow: 0 0 0 24px rgba(213, 154, 84, 0.04);
}

.blog-subscribe__icon svg {
    width: 46px;
    height: 46px;
}

.blog-subscribe h2 {
    max-width: 650px;
    margin: 16px 0 0;
    color: #fff8ec;
    font-family: var(--blog-font);
    font-size: clamp(2rem, 3vw, 3.55rem);
    font-weight: 500;
    line-height: 1.13;
}

.blog-subscribe__form {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 190px;
    align-items: center;
    gap: 0;
}

.blog-subscribe__form input {
    min-width: 0;
    min-height: 60px;
    border: 1px solid rgba(213, 154, 84, 0.42);
    border-right: 0;
    outline: 0;
    padding: 0 24px;
    color: #fff8ec;
    background: rgba(7, 7, 7, 0.6);
    font: inherit;
}

.blog-subscribe__form input::placeholder {
    color: rgba(251, 246, 237, 0.5);
}

.blog-subscribe__form button {
    display: inline-flex;
    min-height: 60px;
    align-items: center;
    justify-content: center;
    gap: 16px;
    border: 1px solid transparent;
    color: #130d07;
    background: linear-gradient(135deg, #f8d18a, #d28d45);
    font: inherit;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
}

.blog-subscribe__form button svg {
    width: 18px;
    height: 18px;
}

.blog-subscribe__form small {
    grid-column: 1 / -1;
    margin-top: 16px;
    color: rgba(251, 246, 237, 0.58);
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

@media (max-width: 1180px) {
    .blog-hero {
        width: min(100% - 44px, 1120px);
        grid-template-columns: minmax(320px, 0.82fr) minmax(420px, 1.18fr);
        grid-template-areas: "copy art";
        min-height: calc(100% - 100px);
        height: 92svh;
        max-height: 760px;
        padding-top: 112px;
    }

    .blog-hero__content {
        max-width: 760px;
    }

    .blog-hero__art {
        justify-self: end;
        width: min(100%, 470px);
    }

    .blog-hero__image {
        height: 100%;
        min-height: 360px;
    }

    .blog-topic-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

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

    .blog-card--featured {
        grid-column: 1 / -1;
    }

    .blog-subscribe {
        grid-template-columns: 110px 1fr;
    }

    .blog-subscribe__form {
        grid-column: 1 / -1;
    }
}

@media (max-width: 860px) {
    .blog-hero {
        width: min(100% - 32px, 1490px);
        grid-template-columns: 1fr;
        grid-template-areas:
            "copy"
            "art";
        height: auto;
        max-height: none;
        min-height: 100svh;
        padding-top: 104px;
        padding-bottom: 34px;
        gap: 34px;
    }

    .blog-hero h1 {
        font-size: clamp(2.85rem, 12vw, 4.2rem);
        line-height: 1.03;
    }

    .blog-hero__content > p:not(.blog-kicker) {
        margin-bottom: 28px;
    }

    .blog-hero__art {
        justify-self: stretch;
        width: 100%;
    }

    .blog-hero__image {
        min-height: 320px;
    }

    .blog-hero__orbit {
        width: 430px;
        left: -160px;
        top: -110px;
    }

    .blog-topics,
    .blog-articles,
    .blog-pagination,
    .blog-subscribe {
        width: min(100% - 36px, 1560px);
    }
}

@media (max-width: 760px) {

    .blog-section-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .blog-topic-grid,
    .blog-articles {
        grid-template-columns: 1fr;
    }

    .blog-topic-card {
        min-height: 132px;
        padding: 24px;
    }

    .blog-card__body,
    .blog-card--featured .blog-card__body {
        min-height: auto;
        padding: 26px;
    }

    .blog-card__body > a {
        right: 22px;
        bottom: 22px;
    }

    .blog-card__body > small {
        padding-right: 52px;
    }

    .blog-subscribe {
        grid-template-columns: 1fr;
        gap: 26px;
        padding: 34px 22px;
    }

    .blog-subscribe__icon {
        width: 88px;
    }

    .blog-subscribe__form {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .blog-subscribe__form input {
        border-right: 1px solid rgba(213, 154, 84, 0.42);
    }
}

@media (max-width: 460px) {
    .blog-hero h1 {
        font-size: 2.6rem;
    }

    .blog-button {
        width: 100%;
        padding-inline: 20px;
    }

    .blog-pagination {
        gap: 8px;
    }

    .blog-pagination a,
    .blog-pagination span {
        width: 38px;
        height: 38px;
    }
}

/* ---------------------------------------------------------------------------
   Listing states
--------------------------------------------------------------------------- */

.blog-articles,
.blog-pagination {
    scroll-margin-top: 108px;
}

/* Pages without the featured card do not need the wide first column. */
.blog-articles--plain {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-content: start;
}

.blog-empty {
    grid-column: 1 / -1;
    margin: 0;
    padding: 46px 0;
    color: var(--blog-muted);
    font-size: 1rem;
    text-align: center;
}

.blog-empty a {
    color: var(--blog-gold-bright);
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* ---------------------------------------------------------------------------
   Article detail
--------------------------------------------------------------------------- */

.blog-post,
.blog-post__breadcrumb,
.blog-post__related {
    width: min(100% - 48px, 1560px);
    margin-inline: auto;
}

.blog-post__breadcrumb {
    padding-top: 118px;
}

.blog-post__breadcrumb ol {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 0;
    padding: 0;
    color: rgba(245, 242, 234, 0.5);
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    list-style: none;
    text-transform: uppercase;
}

.blog-post__breadcrumb li + li::before {
    margin-right: 10px;
    color: var(--blog-gold);
    content: "/";
}

.blog-post__breadcrumb a:hover {
    color: var(--blog-gold-bright);
}

.blog-post__head {
    max-width: 920px;
    padding: clamp(28px, 4vw, 52px) 0 0;
}

.blog-post__head h1 {
    margin: 18px 0 0;
    color: #fff8ec;
    font-size: clamp(2.2rem, 4.4vw, 4rem);
    font-weight: 500;
    line-height: 1.06;
    letter-spacing: -0.01em;
}

.blog-post__standfirst {
    margin: 22px 0 0;
    max-width: 720px;
    color: var(--blog-muted);
    font-size: clamp(1rem, 1.3vw, 1.16rem);
    line-height: 1.62;
}

.blog-post__byline {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 30px;
}

.blog-post__byline img {
    width: 46px;
    height: 46px;
    flex: none;
    object-fit: cover;
    border-radius: 999px;
    filter: saturate(0.6);
}

.blog-post__byline strong {
    display: block;
    color: var(--blog-ivory);
    font-size: 0.94rem;
    font-weight: 600;
}

.blog-post__byline small {
    display: block;
    margin-top: 4px;
    color: rgba(245, 242, 234, 0.52);
    font-size: 0.82rem;
}

.blog-post__cover {
    margin: clamp(34px, 4vw, 56px) 0 0;
    overflow: hidden;
    border: 1px solid rgba(245, 242, 234, 0.12);
    border-radius: 5px;
    aspect-ratio: 2.4;
    background: #111;
}

.blog-post__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: saturate(0.58) contrast(1.08) brightness(0.78);
}

.blog-post__body {
    max-width: 760px;
    margin: clamp(38px, 4.4vw, 64px) 0 0;
}

.blog-post__lede {
    margin: 0;
    color: var(--blog-ivory);
    font-size: clamp(1.12rem, 1.6vw, 1.34rem);
    font-weight: 300;
    line-height: 1.58;
}

.blog-post__body section {
    margin-top: clamp(30px, 3.4vw, 46px);
}

.blog-post__body h2 {
    margin: 0 0 14px;
    color: #fff8ec;
    font-size: clamp(1.32rem, 2vw, 1.72rem);
    font-weight: 500;
    line-height: 1.22;
}

.blog-post__body p {
    margin: 0;
    color: var(--blog-muted);
    font-size: 1.02rem;
    line-height: 1.74;
}

.blog-post__cta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin: clamp(48px, 5.4vw, 78px) 0 0;
    padding: clamp(26px, 3vw, 40px);
    border: 1px solid var(--blog-line);
    border-radius: 5px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
}

.blog-post__cta h2 {
    margin: 12px 0 0;
    color: #fff8ec;
    font-size: clamp(1.4rem, 2.2vw, 2rem);
    font-weight: 500;
    line-height: 1.16;
}

.blog-post__cta > a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border: 1px solid var(--blog-gold);
    border-radius: 999px;
    color: var(--blog-ivory);
    font-size: 0.84rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    background: rgba(166, 124, 82, 0.14);
    transition: background 240ms ease, transform 240ms ease;
}

.blog-post__cta > a:hover {
    background: rgba(166, 124, 82, 0.26);
    transform: translateY(-2px);
}

.blog-post__related {
    padding: clamp(56px, 6vw, 92px) 0 0;
}

.blog-post__related-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

@media (max-width: 1180px) {
    .blog-post,
    .blog-post__breadcrumb,
    .blog-post__related {
        width: min(100% - 36px, 1120px);
    }

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

@media (max-width: 860px) {
    .blog-post__cover {
        aspect-ratio: 1.6;
    }

    .blog-post__related-grid,
    .blog-articles--plain {
        grid-template-columns: minmax(0, 1fr);
    }

    .blog-post__cta {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Hero watermark now uses the real MC monogram instead of a styled letter. */
.blog-hero__mark {
    width: clamp(5.4rem, 8.6vw, 8.4rem);
    height: auto;
    opacity: 0.9;
    text-shadow: none;
    animation: blogMarkGlow 5.8s ease-in-out infinite;
}

@keyframes blogMarkGlow {
    0%,
    100% {
        filter: drop-shadow(0 0 34px rgba(213, 154, 84, 0.24));
    }

    50% {
        filter: drop-shadow(0 0 58px rgba(213, 154, 84, 0.42));
    }
}

/* ===========================================================================
   Listing polish

   Appended last so it settles the rules above it, breakpoints included - the
   earlier media blocks sit higher in this file, so anything restated here has
   to restate its responsive form as well.

   The hero headline was sized for a column it does not have: the second line
   ran wider than its track and wrapped, which also broke the per-line reveal
   (each .blog-hero__line masks exactly one line). The topic and article bands
   opened straight onto cards with no heading, the "View All" arrow was a
   literal "->" in the markup, and the read arrow on each card was a bare
   stroke floating over the date.
   ========================================================================== */

/* ---------- hero --------------------------------------------------------- */

.blog-hero__content {
    max-width: 720px;
}

.blog-hero h1 {
    max-width: 100%;
    font-size: clamp(2.4rem, 3.6vw, 3.7rem);
    line-height: 1.06;
}

.blog-hero__content > p:not(.blog-kicker) {
    margin-top: 28px;
}

.blog-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.blog-button {
    gap: 14px;
    min-height: 52px;
    padding: 0 26px;
}

.blog-button svg {
    width: 18px;
    height: 18px;
}

.blog-button--primary {
    border-color: transparent;
    color: #130d07;
    background: linear-gradient(135deg, #f4c67c, #d18a43);
}

.blog-button--primary svg {
    color: currentColor;
}

.blog-button--primary:hover {
    background: linear-gradient(135deg, #f8d18a, #d9954b);
}

/* ---------- band headings ------------------------------------------------ */

.blog-articles-head {
    width: min(100% - 48px, 1560px);
    margin-inline: auto;
    padding-top: clamp(58px, 5vw, 84px);
    scroll-margin-top: 108px;
}

.blog-section-head {
    align-items: flex-end;
    margin-bottom: clamp(26px, 2.4vw, 38px);
}

.blog-section-head h2 {
    max-width: 620px;
    margin: 12px 0 0;
    color: #fff8ec;
    font-size: clamp(1.7rem, 2.3vw, 2.5rem);
    font-weight: 500;
    letter-spacing: 0;
    line-height: 1.15;
}

.blog-section-head a {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 6px;
    border-bottom: 1px solid rgba(213, 154, 84, 0.42);
    white-space: nowrap;
    transition: color 200ms ease, border-color 200ms ease;
}

.blog-section-head a svg {
    width: 18px;
    height: 18px;
    color: var(--blog-gold-bright);
    transition: transform 220ms ease;
}

.blog-section-head a:hover {
    color: #fff8ec;
    border-bottom-color: var(--blog-gold-bright);
}

.blog-section-head a:hover svg {
    transform: translateX(4px);
}

.blog-topics {
    padding-top: clamp(62px, 5.4vw, 90px);
}

/* Column count follows the number of topics instead of assuming six. */
.blog-topic-grid {
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

/* ---------- article cards ------------------------------------------------ */

.blog-articles {
    padding-top: 0;
}

/* Four posts in three fixed columns always left one orphan on its own row. */
.blog-articles--plain {
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}

.blog-card__body > a {
    right: 26px;
    bottom: 26px;
    width: 42px;
    height: 42px;
    border: 1px solid rgba(213, 154, 84, 0.5);
    border-radius: 50%;
    background: rgba(213, 154, 84, 0.06);
    transition: transform 220ms ease, background 220ms ease, border-color 220ms ease;
}

.blog-card__body > a svg {
    width: 18px;
    height: 18px;
}

.blog-card:hover .blog-card__body > a {
    border-color: var(--blog-gold-bright);
    background: rgba(213, 154, 84, 0.18);
    transform: translateX(3px);
}

/* Keep the date and the byline clear of the round read button. */
.blog-card__body > small {
    padding-right: 62px;
}

.blog-card--featured .blog-card__author {
    padding-right: 68px;
}

/* ---------- newsletter --------------------------------------------------- */

.blog-subscribe {
    margin-block: clamp(18px, 1.8vw, 28px) clamp(62px, 5.4vw, 88px);
}

/* ---------- responsive --------------------------------------------------- */

@media (max-width: 1180px) {
    /* The copy column used to be narrower than the artwork beside it. */
    .blog-hero {
        grid-template-columns: minmax(0, 1.05fr) minmax(310px, 0.72fr);
    }

    .blog-articles-head {
        width: min(100% - 44px, 1560px);
    }
}

@media (max-width: 860px) {
    .blog-hero h1 {
        font-size: clamp(2rem, 7.6vw, 3.6rem);
        line-height: 1.06;
    }

    .blog-articles-head {
        width: min(100% - 36px, 1560px);
    }
}

@media (max-width: 760px) {
    .blog-section-head {
        align-items: flex-start;
    }

    .blog-card__body > a {
        right: 20px;
        bottom: 20px;
        width: 38px;
        height: 38px;
    }

    .blog-card__body > small {
        padding-right: 54px;
    }

    .blog-card--featured .blog-card__author {
        padding-right: 54px;
    }
}

@media (max-width: 460px) {
    .blog-hero h1 {
        font-size: clamp(1.7rem, 7.4vw, 2.6rem);
    }

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