/* ==========================================================================
   STATE HUB - All States Grid with Regions
   ========================================================================== */

.ul-state-hub {
    max-width: 1400px;
    margin: 0 auto;
    padding: 40px 20px;
}

.ul-hub-header {
    text-align: center;
    margin-bottom: 50px;
}

.ul-hub-header h1 {
    font-size: 36px;
    color: #1a1a2e;
    margin: 0 0 10px 0;
}

.ul-hub-subtitle {
    font-size: 18px;
    color: #555;
}

/* Region Sections */
.ul-region-section {
    margin-bottom: 60px;
}

.ul-region-section:last-child {
    margin-bottom: 0;
}

.ul-region-title {
    font-size: 28px;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0 0 25px 0;
    padding-bottom: 15px;
    border-bottom: 3px solid #AADDFF;
    position: relative;
}

.ul-region-title::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 120px;
    height: 3px;
    background: #77bbee;
}

/* States Grid */
.ul-states-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.ul-state-card {
    background: #f0f8ff;
    border: 2px solid #AADDFF;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.ul-state-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(170, 221, 255, 0.4);
    border-color: #77bbee;
    background: #ffffff;
}

.ul-state-abbr {
    font-size: 48px;
    font-weight: 900;
    color: #AADDFF;
    margin-bottom: 10px;
    line-height: 1;
}

.ul-state-card:hover .ul-state-abbr {
    color: #77bbee;
}

.ul-state-name {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.ul-state-arrow {
    font-size: 24px;
    color: #AADDFF;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.ul-state-card:hover .ul-state-arrow {
    opacity: 1;
    transform: translateX(0);
}

@media (max-width: 768px) {
    .ul-hub-header h1 {
        font-size: 28px;
    }
    
    .ul-region-section {
        margin-bottom: 50px;
    }
    
    .ul-region-title {
        font-size: 24px;
        margin-bottom: 20px;
        padding-bottom: 12px;
    }
    
    .ul-states-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 15px;
    }
    
    .ul-state-card {
        padding: 20px 15px;
    }
    
    .ul-state-abbr {
        font-size: 36px;
    }
    
    .ul-state-name {
        font-size: 16px;
    }
}
