/* City and Hub Page Specific Styles */

/* Visuals column */
.visuals {
    text-align: center;
}

/* Steps section spacing */
.steps-section {
    margin-bottom: 2rem;
}

/* Review card styles - override borough-page.css for city pages */
.review-card .rating {
    margin-bottom: 0.5em;
}

.review-card blockquote {
    font-size: 1.18em;
    margin-bottom: 1em;
}

.review-card .reviewer-name {
    font-weight: bold;
    font-size: 1.1em;
    margin-bottom: 0.7em;
}

.review-card .review-meta-flex {
    display: flex;
    align-items: center;
    gap: 1.2em;
    color: #444;
    font-size: 1em;
}

/* City coverage section */
.city-coverage-section {
    margin-top: 1rem;
}

.city-coverage-section h3 {
    margin-bottom: 0;
}

.city-coverage-section .districts-list {
    margin-top: 0.5rem;
}

/* Coverage Statistics Section */
.coverage-stats-section {
    padding: 50px 0;
    background: linear-gradient(to bottom, #ffffff 0%, #f9f9f9 100%);
}

.coverage-stats-section .sub-title {
    margin-bottom: 2.5rem;
}

.coverage-stats-grid {
    margin-top: 2rem;
    margin-bottom: 2.5rem;
}

.coverage-stat-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.coverage-stat-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

.coverage-stat-card .stat-number-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.coverage-stat-card .stat-icon-inline {
    color: #ff6b35;
    font-size: 2em;
    opacity: 0.9;
}

.coverage-stat-card .stat-number {
    font-size: 2.5em;
    margin-top: -9px;
    font-weight: bold;
    color: #ff6b35;
    line-height: 1;
    letter-spacing: -1px;
}

.coverage-stat-card .stat-label {
    font-size: 1.1em;
    font-weight: 600;
    color: #333;
    margin-bottom: 1rem;
}

.coverage-stat-card .stat-description {
    font-size: 1em;
    color: #666;
    line-height: 1.6;
    flex: 1;
    max-width: 100%;
}

.coverage-details {
    margin-top: 2.5rem;
    padding: 2.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.08);
}

.coverage-details p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #444;
    font-size: 1.05em;
}

.coverage-details p:last-child {
    margin-bottom: 0;
}

.coverage-details strong {
    color: #333;
    font-weight: 600;
}

.coverage-link {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

.coverage-link:hover {
    color: #e55a2b;
    text-decoration: underline;
}

.coverage-link strong {
    color: #ff6b35;
    font-weight: 600;
}

.coverage-stat-card .coverage-link {
    color: #ff6b35;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.2s ease, text-decoration 0.2s ease;
}

.coverage-stat-card .coverage-link:hover {
    color: #e55a2b;
    text-decoration: underline;
}

/* Hub page specific styles */
.hub-areas-grid {
    align-items: flex-start;
}

.hub-areas-column {
    display: flex;
    flex-direction: column;
}

.hub-cities-list {
    text-align: left;
    margin-bottom: 0.5rem;
}

.hub-cities-item {
    margin-bottom: 1.5rem;
}

.hub-cities-link {
    font-size: 1.1em;
    font-weight: 600;
    color: #ff6b35;
}

.hub-popular-areas-title {
    margin-bottom: 0;
    margin-top: 30px;
}

.hub-popular-areas-container {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.hub-popular-areas-list {
    margin-top: 1.5rem!important;
}

.hub-popular-areas-list .grid-layout li {
    text-align: center;
    margin-bottom: 5px;
}

.hub-view-all-link {
    margin-top: auto;
    padding-top: 1rem;
}

.hub-view-all-link a {
    font-weight: 600;
    color: #ff6b35;
    font-size: 1.05em;
}

.hub-view-all-link .icon {
    margin-left: 0.25rem;
}

.hub-map-container {
    flex: 1;
    margin-top: auto;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .review-card blockquote {
        font-size: 1.08em;
    }

    .review-card .reviewer-name {
        font-size: 1.05em;
    }

    .review-card .review-meta-flex {
        font-size: 0.95em;
        gap: 1em;
    }

    .hub-map-container {
        padding-top: 1.5rem;
    }

    .coverage-stats-section {
        padding: 30px 19px !important;
    }

    .coverage-stat-card {
        margin-bottom: 1.5rem;
    }
}
