@import url("https://use.typekit.net/uou3gzu.css");

/* Shared font family for both */

.services_title {
    text-align: center;
}
.services_intro {
    text-align: center;
    width: 100%;
}

@media (min-width: 1024px) {
    .services_intro {
        text-align: center;
        width: 70%;
        margin-left: auto;
        margin-right: auto;
}
}



.section-title, 
.what-we-handle-box h3 {
    font-family: "sole-serif-titling-variable", sans-serif;
    /* Sets the Optical Size to 0 globally for these elements */
    font-variation-settings: "opsz" 0; 
}

.section-title {
    font-weight: 700; /* Variable fonts map weight here automatically */
    font-size: clamp(1.8rem, 3.5vw, 2.4rem);
    color: var(--color-primary);
    margin-bottom: 16px;
    line-height: 1.2;
}

.what-we-handle-box h3 {
    font-weight: 500; 
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 18px;
}

.custom-grid {
    display: grid;
    grid-template-columns: 1fr; 
    gap: 1.5rem;
}

/* Desktop: 2 columns from 1024px and up */
@media (min-width: 1024px) {
    .custom-grid {
        grid-template-columns: 1fr 1fr;
    }
}