/* County Hub Page Styles */
.georgia-county-page {
    background: var(--qc-color-background);
}

/* Primary CTA */
.primary-cta .cta-card {
    background: linear-gradient(135deg, var(--qc-color-primary), var(--qc-color-primary-dark));
    color: white;
    border-radius: var(--qc-radius-lg);
    padding: 2.5rem;
    box-shadow: var(--qc-shadow-lg);
    transition: var(--qc-transition-standard);
}

.primary-cta .cta-card:hover {
    box-shadow: 0 12px 32px rgba(var(--qc-color-primary-rgb), 0.3);
    transform: translateY(-2px);
}

.primary-cta .cta-card h3 {
    color: white;
    font-weight: 600;
    margin-bottom: var(--qc-spacing-md);
}

.primary-cta .cta-card p {
    color: rgba(255, 255, 255, 0.95);
    line-height: var(--qc-line-height-relaxed);
    font-size: var(--qc-font-size-base);
}

/* County Map Container */
.county-map-container {
    border-radius: 0 0 var(--qc-radius-lg) var(--qc-radius-lg);
    overflow: hidden;
}

/* Sidebar Cards */
.sidebar-sticky .card {
    border: 1px solid var(--qc-color-border);
    border-radius: var(--qc-radius-lg);
    box-shadow: var(--qc-shadow-sm);
}

.sidebar-sticky .card-header {
    background: var(--qc-color-background);
    border-bottom: 1px solid var(--qc-color-border);
    padding: 1rem 1.25rem;
}

.sidebar-sticky .card-body {
    padding: 1.25rem;
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
    .primary-cta .cta-card {
        padding: 1.5rem;
        text-align: center;
    }

    .sidebar-sticky .card-header,
    .sidebar-sticky .card-body {
        padding: 1rem;
    }
}