.super-block.block-container {
    max-width: 1120px;
    margin: 0 auto;
    padding: 3.125rem 0;
}
.super-block.block-container .fa-solid.fa-caret-right {
    color: var(--primary-4);
    padding: 0 0.875rem 0 0;
    font-size: 2rem;
}
.super-block.block-container .card-row-grid {
    list-style: none;
    display: flex;
    gap: 1rem;
    flex-direction: column;
    margin: 0 !important;
    padding: 0;
}
.super-block.block-container .block-title-group {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
}
.super-block.block-container .block-title-group .block-title {
    margin: 0;
}
.super-block.block-container .block-title-group .view-all-link {
    font-weight: bold;
    text-transform: uppercase;
    color: var(--primary-1);
    border-bottom: 0.125rem dashed;
    text-decoration: none;
}
.super-block.block-container .featured-post {
    display: flex !important;
    border: 0.063rem solid #DEDEDE;
    flex-direction: column;
    margin-bottom: 0.625rem;

    .featured-img {
        min-height: unset;
        background-size: cover;
        background-position: center;
    }

    .featured-content {
        padding: 2.188rem 1.875rem 1.875rem 1.875rem;
        display: flex;
        flex-direction: column;
        gap: 1rem;
        height: 100%;
        background: var(--primary-2);

        .featured-post-title {
            margin: 0;
        }

        .tag-date-container {
            display: flex;
            gap: 1rem;
            text-align: center;
            align-items: center;
            justify-content: space-between;

            .tag-wrapper {
                display: flex;
                flex-wrap: wrap;                

                .tag {
                    font-size: 0.75rem;
                    color: var(--primary-5);
                    background-color: var(--primary-3);
                    padding: 0.375rem 0.625rem;
                    margin: 0.125rem;
                }
            }

            .date {
                color: #65AAC3;
                margin: 0;
            }
        }

        .featured-post-link {
            color: var(--primary-4) !important;
            font-size: 1.125rem;
            line-height: 1.688rem;
            font-weight: 600;
            text-decoration: none;
            margin-top: auto;
        }
    }
}

@media screen and (min-width: 769px) {
    .super-block.block-container .card-row-grid {
        display: grid;
    }
    .super-block.block-container .featured-post {
        flex-direction: row;
        margin-bottom: 1rem;

        .featured-img {
            width: 50%;
        }
        .featured-content {
            padding: 2.188rem 5.938rem 1.875rem 5.938rem;
            width: 50%;
            position: relative;
        }
        .featured-content::after {
            content: "\e28b";
            display: block;
            font-family: "Font Awesome 6 Sharp";
            font-weight: 900;
            position: absolute;
            right: 0;
            top: 0;
            margin: 0.813rem;
            color: var(--primary-3);
            font-size: 2rem;
        }
    }
}

@media screen and (max-width: 425px) {
    .super-block.block-container .block-title-group .block-title,
    .super-block.block-container .fa-solid.fa-caret-right {
        font-size: 1.125rem;
    }
}