/* =========================================
   26. COVERAGE HUB STYLING (Fixed)
   ========================================= */

.bl-hub-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Delight', sans-serif;
}

/* Hero Text */
.bl-hub-hero {
    text-align: center;
    margin-bottom: 40px;
}
.bl-hub-hero h1 { font-size: 38px; font-weight: 800; color: #111; margin-bottom: 10px; }
.bl-hub-hero p { font-size: 18px; color: #666; }

/* The Map Container */
.bl-hub-map-container {
    width: 100%;
    height: 400px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.12);
    border: 1px solid #eee;
    margin-bottom: 15px;
    background: #f3f3f3;
}

.bl-hub-map-caption {
    text-align: center;
    font-size: 14px;
    color: #888;
    margin-bottom: 60px;
    font-style: italic;
}

/* The Grid */
.bl-hub-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

/* The Cards */
.bl-hub-card {
    display: flex;
    align-items: center;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    /* FIX: Remove default underlines from the whole card */
    text-decoration: none !important; 
    border: 1px solid #f0f0f0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.04);
    transition: transform 0.2s, box-shadow 0.2s;
}

.bl-hub-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
    border-color: #7d8dff;
}

.bl-hub-icon {
    margin-right: 15px;
    background: #eef2ff;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.bl-hub-info { flex-grow: 1; }

.bl-hub-info h3 {
    margin: 0 0 4px 0; /* Slight bottom margin for spacing */
    font-size: 16px;
    font-weight: 700;
    color: #333;
    display: inline-block; /* Required for the border to hug the text */
    
    /* FIX: Custom Orange Underline */
    border-bottom: 2px solid #EE9F86; 
}

.bl-hub-info span {
    display: block; /* Forces subtitle to new line */
    font-size: 13px;
    color: #888;
    text-decoration: none; /* Ensures subtitle is never underlined */
}

.bl-hub-arrow {
    font-size: 18px;
    color: #ccc;
    font-weight: 700;
    transition: color 0.2s;
}

.bl-hub-card:hover .bl-hub-arrow { color: #7d8dff; }

/* Footer CTA */
.bl-hub-footer {
    text-align: center;
    background: #f9fafb;
    padding: 40px;
    border-radius: 16px;
}
.bl-hub-footer h3 { margin-bottom: 10px; font-size: 22px; }
.bl-hub-footer p { margin-bottom: 25px; color: #666; }

.bl-hub-btn {
    display: inline-block;
    background: #25D366;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 700;
    text-decoration: none;
}

/* Mobile Tweaks */
@media (max-width: 768px) {
    .bl-hub-map-container { height: 300px; }
    .bl-hub-hero h1 { font-size: 30px; }
}