.featured-section{
    padding: 13px 0 63px;
}

[data-columns="3"]{
    gap: 24px;
}

.featured-section__grid{
    margin-top: 35px;
}

.featured-card{
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    justify-content: space-between;
    background: var(--white);
    align-content: stretch;
    flex-wrap: wrap;

}

.featured-card__text{
    width: calc(100% - 105px);
    padding: 15px 10px;
}

.featured-card__title{
    line-height: 22px;
    margin: 10px 0 0;
    color: var(--black);
}

.featured-card__title:hover {
    text-decoration: underline;
}

.featured-card__image{
    width: 105px;
}

@media only screen and (min-width: 768px){
    [data-columns="3"]{
        grid-template-columns: repeat(1, minmax(0, 1fr));
        padding: 0 30px;
    }
    .featured-card__image{
        width: 200px;
    }
    .featured-card__text{
        width: calc(100% - 200px);
        padding: 20px;
    }
}

@media only screen and (min-width: 992px){
    [data-columns="3"]{
        gap: 45px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        padding: 0;
    }
    .featured-card__image{
        width: 105px;
    }

    .featured-card__text{
        width: calc(100% - 105px);
        padding: 15px 10px;
    }
}


