.post_article {
    display: flex;
    align-items: stretch;
    height: 100%;
}

.post_article .post-image {
    max-width: 45%;
    width: 100%;
    aspect-ratio: 316/391;
    border-radius: max(0.5rem, calc(0.5 * var(--su)));
    overflow: clip;
}

.post_article .post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.post_article .post-content {
    max-width: 55%;
    width: 100%;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    gap: max(1rem, calc(1 * var(--su)));
    padding: max(1.5rem, calc(1.5 * var(--su)));
    border-radius: max(0.5rem, calc(0.5 * var(--su)));
    background-color: rgba(var(--fla-red), 0.2);
    background: rgba(209, 77, 0, 0.05);
}

.post_article .post-name {
    color: var(--fla-red);
    font-size: var(--desktop-body-sm);
}

.post_article .post-quote {
    font-size: var(--dekstop-body-lg);
    line-height: 1.2;
    margin: 0;
}

.post_article .post-meta {
    margin-top: auto;
    color: var(--fla-black);
    font-size: var(--desktop-body-sm);
}

@media screen and (max-width: 767px) {
    .post_article {
        flex-direction: column;
    }

    .post_article .post-image {
        max-width: 100%;
        height: 100%;
        overflow: hidden;
        aspect-ratio: 288 / 181;
    }

    .post_article .post-content {
        max-width: 100%;
    }

    .post_article .post-quote {
        font-size: var(--desktop-body-sm);
        line-height: normal;
    }
    .post_article .post-meta {
		  font-size: var(--desktop-body-xs);
    }
}
