.layout-featured_post .card-wrapper {
    display: flex;
    background: var(--color-white);
}
.layout-featured_post .left-column {
    background: #f9f9f9;
}
.layout-featured_post .left-column .img-container {
    background: #f9f9f9;
    aspect-ratio: 1 / 1;
    height: 100%;
}
.layout-featured_post .left-column .img-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.layout-featured_post .small-img {
    position: relative;
    aspect-ratio: 200 / 290;
    width: 150px;
}
.layout-featured_post .box-wrapper {
    display: flex;
    flex-direction: column;
    height: 100%;
}
.layout-featured_post .theContent p {
    margin-bottom: 0;
    font-size: 0.6875rem; /* 11 */
}
@media (min-width: 768px) {
    .layout-featured_post .theContent p {
        font-size: calc(0.6875rem + ((1vw - 0.48rem) * 0.2193)); /* 11 - 13 */
    }
    .layout-featured_post .left-column .img-container {
        aspect-ratio: auto;
    }
}
@media (min-width: 1200px) {
    .layout-featured_post .left-column .img-container {
        aspect-ratio: 1 / 1;
    }
    .layout-featured_post .small-img {
        width: 200px;
    }
}
@media (min-width: 1680px) {
    .layout-featured_post .theContent p {
        font-size: 0.8125rem; /* 13 */
    }
}