.featuresSection{
    width: 100%;
    padding: 40px;
    margin: 30px 0;
}

.cards__wrapper{
    width: 100%;

    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.feature__card{
    background: var(--c1);
    border-radius: 36px;
    width: 100%;
    max-width: 320px;
    box-shadow: var(--c2) 0 0 40px;

    display: flex;
    flex-direction: column;
    align-items: stretch;
}

.feature__image{
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    border-radius: 36px;
}

.title__wrapper{
    width: 100%;
    padding: 30px 40px;
}

.feature__title{
    font-size: 1.125rem;
    font-weight: 600;
    background: var(--c2);
    padding: 5px;
    width: 100%;
    border-radius: 20px;
    text-align: center;
    color: var(--text);
}