.borough-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 14px;
    margin: 30px 0;
}

.borough-grid a {
    display: block;
    padding: 14px 16px;
    background: #f5f7fa;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s ease;
}

.borough-grid a:hover {
    background: #005dff;
    color: #fff;
}
/* ============================
   BOROUGH CONTENT BOX
   ============================ */

.borough-page {
    padding: 60px 20px;
    background: #f7f9fc;
}

.borough-page .content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    padding: 45px 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.borough-page h2 {
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #0b2a5f;
}

.borough-page p {
    font-size: 1.05rem;
    line-height: 1.75;
}
/* ============================
   BOROUGH CONTENT BOX (SEO AREA)
   ============================ */

.borough-page {
    padding: 60px 20px;
    background: #f7f9fc;
}

.borough-page .content-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    background: #ffffff;
    padding: 45px 50px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

/* Text styling */
.borough-page h2 {
    font-size: 1.9rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #0b2a5f;
}

.borough-page p,
.borough-page li {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #333;
}

/* Mobile */
@media (max-width: 768px) {
    .borough-page .content-wrapper {
        padding: 30px 22px;
    }
}
