.usp{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    align-items: center;
    justify-content: center;
    width: 90%;
    gap:1rem;
    max-width: var(--max-sm-width); 
    grid-auto-rows: min-content;
}
.usp__title{
    color: var(--blue);
    text-align: center;
    font-size: var(--fs-large);
    font-weight: 700;
    text-transform: uppercase;
    padding: 2rem 0;
    grid-column: 1 / 3;
}
.usp__description{
    font-size: var(--fs-medium);
    color: rgba(0, 0, 0, 0.80);
    opacity: 0.5;
    font-weight: 400;
    text-align: center;
}
.usp__headline{
    grid-column: 1/3;
    color: var(--gray-50);
    text-align: center;
    font-size: var(--fs-smaller);
    font-weight: 500;
    width: 100%;
    margin-top:var(--gutter-section);
    margin-bottom: 3rem;
    grid-column: 1 / 3;
}
.usp__wrapper{
    display: flex;
    grid-column: 1 / 3;
    gap:1rem;
    flex-wrap: wrap;
    justify-content: center;
}
.usp__card{
    border-radius: 0px 30px;
    width: 160px;
    height: 100%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap:1rem;
    min-height: 300px;
}
.usp__card--light-gray{
    background: var(--light-gray);
}
.usp__card--blue{
    background: var(--blue);
}
.usp__card--water{
    background: var(--water);
}
.usp__card--cobalt-blue{
    background: var(--cobalt-blue);
}
.usp .card__title{
    font-size: var(--fs-medium);
    font-weight: 600;
    text-transform: uppercase;
}
.usp .card__title--white{
    color:var(--white);
}
.usp .card__subtitle{
    color: #000;
    font-size: var(--fs-smaller);
    font-weight: 400;
    text-transform: uppercase;
    text-align: center;
}
.usp .card__subtitle--white{
    color:var(--white);
}
.usp .description{
    color: var(--gray-60);
    font-size: var(--fs-smaller);
    font-weight: 400;
    text-transform: uppercase;
}
.usp .card__description--white{
    color:var(--white);
}
@media (min-width: 768px) {
    .usp{
        grid-template-columns: repeat(4,1fr);
    }
    .usp__headline{
        grid-column: 1 / 5;
    }
    .usp__wrapper{
        grid-column: 1 / 5;
    }
}