.post-background {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--soft-white);
}

.post__feature-image {
    position: absolute;
    object-fit: cover;
    z-index: 1;
    width: 100%;
    height: 600px;
}

.post-wrapper {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    z-index: 2;
    width: 100%;
    gap: 24px;
    margin: 200px 0 0;
    border-radius: 32px 32px 0 0;
    background: var(--white);
}

.post-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 48px 16px 0 16px;
    gap: 24px;
    background: var(--white);
    color: var(--dark-navy);
}

.post-content header {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.post-content__header-title {
    color: var(--dark-navy);
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    line-height: 140%;
}

.post-content article {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.post-content section {
    display: flex;
    flex-direction: column;
    gap: 12px;
    text-align: justify;
    z-index: 2;
}

.post-content section figcaption {
    text-align: left;
}

.post-content section p,
.post-content section li,
.post-content section span,
.post-content section strong {
    color: var(--dark-navy);
    hyphens: auto;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
    line-height: 160%;
}

.post-content section ul,
.post-content section ol {
    padding: 0 0 0 16px;
}

.post-content section img {
    border-radius: 32px;
    object-fit: cover;
}

.post-articles {
    position: relative;
    display: flex;
    overflow: hidden;
    padding: 0 0 48px;
    background: var(--white);
}

@media (min-width: 700px) {
    .post-content__header-title {
        font-size: 32px;
    }

    .post-articles {
        padding: 0 16px 48px;
    }

    .post-content section p,
    .post-content section li,
    .post-content section span,
    .post-content section strong {
        font-size: 22px;
    }

    .post-content section strong {
        font-weight: 700;
    }

    .post-content section ul,
    .post-content section ol {
        padding: 0 0 0 48px;
    }

    .post-content {
        padding: 48px;
    }

    .post-articles {
        padding: 0 48px 48px;
    }
}

@media (min-width: 1200px) {
    .post-background {
        padding: 16px 16px 104px;
    }

    .post__feature-image {
        width: calc(100% - 32px);
        border-radius: 32px;
    }

    .post-wrapper {
        padding: 0px 72px;
        margin: 21% 0 0;
        gap: 56px;
        border-radius: unset;
        background: transparent;
    }

    .post-content section ul,
    .post-content section ol {
        padding: 0 0 0 72px;
    }

    .post-content {
        padding: 104px 72px;
        gap: 48px;
        border-radius: 32px;
        background: var(--white);
        box-shadow: -2px -2px 8px 0px var(--dark-navy-4),
            2px 2px 8px 0px var(--dark-navy-4);
    }

    .post-content__header-title {
        font-size: 42px;
    }

    .post-content header {
        gap: 48px;
    }

    .post-content article {
        gap: 48px;
    }

    .post-content section {
        gap: 32px;
    }

    .post-articles {
        padding: 72px;
        gap: 24px;
        border-radius: 32px;
        box-shadow: -2px -2px 8px 0 var(--dark-navy-4),
            2px 2px 8px 0 var(--dark-navy-4);
    }
}