/* ===================================================================== */
/* ======================= COUNTY ====================================== */
/* ===================================================================== */

.seo-location-county {
    margin-bottom: 45px;
}

.seo-location-county:last-child {
    margin-bottom: 0;
}

.seo-location-county h3 {
    margin-bottom: 20px;
}


/* ===================================================================== */
/* ======================= LOCATION GRID =============================== */
/* ===================================================================== */

.seo-location-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px 25px;
}


/* ===================================================================== */
/* ======================= LOCATION ITEM =============================== */
/* ===================================================================== */

.seo-location-item {
    line-height: 1.5;
}


/* ===================================================================== */
/* ======================= VIEW ALL ==================================== */
/* ===================================================================== */

.seo-location-more {
    margin-top: 20px;
}

.seo-location-more summary {
    cursor: pointer;
    font-weight: 600;
}

.seo-location-grid-more {
    margin-top: 20px;
}


/* ===================================================================== */
/* ======================= TABLET ====================================== */
/* ===================================================================== */

@media (max-width: 991px) {

    .seo-location-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* ===================================================================== */
/* ======================= MOBILE ====================================== */
/* ===================================================================== */

@media (max-width: 575px) {

    .seo-location-grid {
        grid-template-columns: 1fr;
    }

}