.card-single {
    margin: 16px 0 32px 0;
    filter: drop-shadow(0px 15px 32px #00000019);
    padding: 24px 20px 32px 20px;
    border-radius: 10px;
    background-color: var(--white);
    max-width: 440px;
}

.card-single .content-section .title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.25;
    margin-bottom: 16px;
}

.card-single .content-section .subtitle {
    font-size: 0.813rem;
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    line-height: 1.24;
    margin-bottom: 12px;
}

.card-single .content-section .description {
    font-size: 1rem;
    line-height: 1.5;
    margin-bottom: 24px;
}

.card-single .img-cont img {
    width: 54px;
    margin-bottom: 16px;
}

@media(min-width:40em) {
    .card-single {
        margin: 0 auto;
    }
}

@media(min-width:64em) {

    .card-single {
        padding: 50px 40px 60px 40px;
        margin: 50px auto 60px auto;
    }
    
    .card-single .img-cont img {
        width: 72px;
    }
}