.services-section {
    display: flex;
    flex-direction: column;
    margin-top: 64px;
    padding: 0 16px;
    margin-bottom: 64px;
}

.services-section__title {
    text-align: center;
    font-weight: 600;
    margin-bottom: 24px;
}

.services-section__subtitle {
    font-size: 20px;
    text-align: center;
    font-weight: 300;
    margin-bottom: 24px;
}

.services {    
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 150px), 1fr));
}

.service-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 32px;
    background-color: #fff;
    border: none;
    padding: 32px 16px 16px 16px;
    box-sizing: border-box;
    cursor: pointer;
    text-decoration: none;
}

.service-card:hover {
    box-shadow: 0 4px 16px 2px rgba(0, 26, 52, .10);
}


.service-card .service-card__title {
    text-align: center;
    font-size: 18px;
    line-height: 1.5;
    font-weight: 600;
    color: #000;
    margin-bottom: 64px;
}


.service-card .service-card__image {
    --wig: 100px;
    display: flex;
    justify-content: center;
}

@media(min-width: 768px) {

    .service-card .service-card__image {
        --wig: 100px;
    }
    
}

@media(min-width: 1024px) {
    .services-section {
        padding: 0;
    }
    
    .services-section__subtitle {
        font-size: 24px;
    }
    
    .service-card .service-card__title {
        font-size: 20px;
    }
    
    .service-card .service-card__image {
        --wig: 150px;
    }
    
    .services {    
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

