/* Services Grid — numbered textbox cards (3-up grid on desktop). */
.services-grid { background: var(--tint-teal-10); padding: 100px 0; }

/* Style 2 — selected via the widget's "Style" dropdown (adds .style2 to the
   wrapper section). No visual rules defined yet; add .services-grid.style2
   overrides here once a Style 2 design exists. */
.services-grid h3 { margin-bottom: 24px; }
.services-grid-lead { margin-bottom: 48px; max-width: 900px; }
.services-grid-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}
.service-textbox {
    background: var(--brand-white);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.service-textbox-num span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: var(--tint-teal-10);
    color: var(--brand-teal);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 18px;
}
.service-textbox-body { display: flex; flex-direction: column; gap: 12px; }
.service-textbox-body h4 { color: var(--brand-teal); }
.service-textbox-body p { font-family: var(--font-body); font-size: 16px; line-height: 24px; color: var(--brand-dark-grey); margin: 0; }

@media (max-width: 1199.98px) {
    .services-grid-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767.98px) {
    .services-grid { padding: 56px 0; }
    .services-grid-grid { grid-template-columns: 1fr; }
    .service-textbox { padding: 28px; }
}
