.three-article-grid.outer-wrapper {
    width: 100%;
    position: relative;
}

.three-article-grid .section-container {
    max-width: 1280px;
}

.three-article-grid .aspect-container {
    position: relative;
    width: 100%;
    padding-bottom: 52%;
}

.three-article-grid .flex-row {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    gap: 29px;
}

.three-article-grid .column-1 {
    width: 60%;
    height: 100%;
}

.three-article-grid .column-2 {
    width: 60%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 26px;
}

.three-article-grid .article-1,
.three-article-grid .article-2,
.three-article-grid .article-3 {
    position: relative;
    width: 100%;
    height: 100%;
}

.three-article-grid .featured-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.three-article-grid .overlay {
    position: absolute;
    z-index: 1;
    top: 50%;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 50%;
    background: transparent linear-gradient(180deg, #39393900 0%, #000000 100%) 0% 0% no-repeat padding-box;
}

.three-article-grid .content-box {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 30px;
    z-index: 2;
    position: relative;
    justify-content: space-between;
}

.three-article-grid h1 {
    font-family: "Cambon", serif;
    color: white;
    font-size: 24px;
    line-height: 1.5;
    max-width: 350px;
    margin: 0;
}

.three-article-grid .category-badge {
    color: white;
    text-transform: uppercase;
    font-family: 'Manrope', sans-serif;
    font-size: 12px;
    line-height: 27px;
    padding: 5px 27px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    letter-spacing: 1.37px;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    width: min-content;
}

.three-article-grid a {
    text-decoration: none;
}

.three-article-grid .read-more a:after {
    content: "";
    display: inline-block;
    width: 10px;
    height: 10px;
    background-image: url('../images/arrow-right-white.svg');
    background-repeat: none;
    background-size: 10px 10px;
    margin-left: 8px;
}

@media screen and (max-width: 1200px) {
    .three-article-grid .column-2 h1 {
        font-size: 18px;
    }

    .three-article-grid .category-badge {
        font-size: 10px;
        line-height: 22px;
        padding: 5px 22px;
        border-radius: 20px;
        letter-spacing: 1.37px;
    }

    .three-article-grid .content-box {
        padding: 15px;
    }
}

@media screen and (max-width: 900px) {
    .three-article-grid .content-box {
        min-height: 400px;
    }

    .three-article-grid .aspect-container {
        padding-bottom: 0;
    }

    .three-article-grid .flex-row {
        position: relative;
        flex-direction: column;
        gap: 29px;
    }

    .three-article-grid .column-1 {
        width: 100%;
    }

    .three-article-grid .column-2 {
        width: 100%;
        height: 100%;
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        gap: 26px;
    }
}