/* -----------------------------------------
   SERVICE TIMES COMPONENT
----------------------------------------- */

.service-times {
    padding: var(--space-8) 0;
    text-align: center;
}

.service-times h2 {
    font-size: var(--text-2xl);
    font-weight: 700;
    margin-bottom: var(--space-4);
}

.service-times__grid {
    display: grid;
    gap: var(--space-8);
}

.service-times__card {
    /* inherits card-base */
    padding: var(--space-6);
}

.service-times__icon {
    width: 40px;
    height: 40px;
    margin: 0 auto var(--space-4);
    color: var(--color-primary-500);
}

.service-times__icon svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
}

.service-times__card h3 {
    font-size: var(--text-xl);
    font-weight: 600;
    margin-bottom: var(--space-1);
}

.service-times__card p {
    margin: 0;
    color: var(--text-muted);
}

@media (min-width: 640px) {
    .service-times__grid {
        grid-template-columns: repeat(3, 1fr);
    }
}