main.site-main {
    background:
        radial-gradient(1100px 420px at 12% -10%, rgba(198, 145, 49, 0.18), transparent 60%),
        linear-gradient(180deg, #f8f8f8 0%, #f1f1f1 100%);
    padding: 38px 16px 70px;
}

.post-wrap {
    max-width: 1120px;
    margin: 0 auto;
    background: #f7f7f7;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.12);
}

.post-hero,
.post-article,
.post-bottom-cta {
    padding: 30px;
}

.post-hero {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 28px;
    align-items: start;
    background: #ffffff;
    border-bottom: 1px solid #ebebeb;
}

.post-hero__content {
    min-width: 0;
}

.post-kicker {
    margin: 0 0 10px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #8c6720;
}

.post-title {
    margin: 0;
    color: #232323;
    font-family: "Archivo Black", sans-serif;
    font-size: clamp(38px, 4.4vw, 60px);
    line-height: 0.98;
}

.post-chapo {
    margin: 18px 0 0;
    max-width: 34ch;
    font-family: "Roboto", sans-serif;
    font-size: clamp(22px, 2.3vw, 29px);
    line-height: 1.18;
    color: #5f636b;
}

.post-video-frame {
    width: 100%;
    max-width: 340px;
    aspect-ratio: 9 / 16;
    overflow: hidden;
    border-radius: 18px;
    background: #0f1117;
    box-shadow: 0 16px 34px rgba(15, 17, 23, 0.26);
}

.post-video-frame video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #0f1117;
}

.post-intro-note {
    margin-top: 20px;
    max-width: 640px;
    padding: 16px 18px;
    border-radius: 14px;
    border: 1px solid #ecd9b5;
    background: linear-gradient(135deg, #fff8ec 0%, #fff 100%);
}

.post-intro-note strong {
    display: block;
    margin-bottom: 8px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #8c6720;
}

.post-intro-note p {
    margin: 0;
}

.post-article {
    background: #ffffff;
}

.post-section + .post-section {
    margin-top: 28px;
    padding-top: 24px;
    border-top: 1px solid #ececec;
}

.post-section h2 {
    margin: 0 0 14px;
    color: #232323;
    font-family: "Archivo Black", sans-serif;
    font-size: clamp(30px, 3vw, 38px);
    line-height: 1.04;
}

.post-section p,
.post-section li,
.post-intro-note p {
    font-family: "Roboto", sans-serif !important;
    font-size: 16px;
    line-height: 1.6;
    color: var(--e-global-color-primary);
}

.post-section p {
    margin: 0 0 14px;
}

.post-section ul {
    margin: 0 0 16px;
    padding-left: 22px;
}

.post-inline-media {
    width: 300px;
    margin: 4px 0 18px;
}

.post-inline-media--right {
    float: right;
    margin-left: 22px;
}

.post-inline-media--left {
    float: left;
    margin-right: 22px;
}

.post-inline-media img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 14px;
    border: 1px solid #ececec;
    background: #ffffff;
}

.post-inline-media figcaption {
    margin-top: 8px;
    font-family: "Roboto", sans-serif;
    font-size: 14px;
    line-height: 1.45;
    color: #5f636b;
}

.post-section::after {
    content: "";
    display: block;
    clear: both;
}

.post-bottom-cta {
    background:
        linear-gradient(180deg, rgba(198, 145, 49, 0.06) 0%, rgba(255, 255, 255, 0) 100%),
        #ffffff;
    border-top: 1px solid #ececec;
    text-align: center;
}

@media (max-width: 900px) {
    .post-hero {
        grid-template-columns: 1fr;
    }

    .post-video-frame {
        margin: 0 auto;
    }

    .post-chapo {
        max-width: 24ch;
    }
}

@media (max-width: 768px) {
    main.site-main {
        padding: 20px 12px 42px;
    }

    .post-wrap {
        border-radius: 16px;
    }

    .post-hero,
    .post-article,
    .post-bottom-cta {
        padding: 20px;
    }

    .post-inline-media,
    .post-inline-media--left,
    .post-inline-media--right {
        float: none;
        width: min(100%, 320px);
        margin: 10px auto 16px;
    }
}
