.premise_latest_insights {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 2rem;
}

.premise_latest_insights {
    width: 100%;
}

.premise_latest_insights_post > a > img {
    border-radius: 6px;
}

.premise_latest_insights_post > a > h4 {
    color: white;
    margin-top: 1rem;
    line-height: 1.2;
}

.premise_latest_insights_post > a:focus-visible {
    outline: auto;
}

@media screen and (min-width: 768px) {
    .premise_latest_insights {
        flex-direction: row;
    }

    .premise_latest_insights_post {
        width: 45%;
        display: flex;
        flex-direction: column;
    }

    .premise_latest_insights_post > a > img {
        object-fit: cover;
        width: 100%;
        height: 200px;
    }
}

@media screen and (min-width: 981px) {
    .premise_latest_insights_post {
        width: 30%;
    }

    .premise_latest_insights_post > a > img {
        filter: brightness(0.7);
        transition: all ease-in-out 0.25s;
    }

    .premise_latest_insights_post > a:focus-visible > img,
    .premise_latest_insights_post > a:hover > img {
        filter: brightness(1);
    }
}

@media screen and (min-width: 1280px) {
    .premise_latest_insights_post > a > img {
        height: 300px;
    }   
}