.elementor-32799 .elementor-element.elementor-element-78413677{--display:flex;}.elementor-widget-text-editor{font-family:var( --e-global-typography-text-font-family ), Sans-serif;font-weight:var( --e-global-typography-text-font-weight );color:var( --e-global-color-text );}.elementor-widget-text-editor.elementor-drop-cap-view-stacked .elementor-drop-cap{background-color:var( --e-global-color-primary );}.elementor-widget-text-editor.elementor-drop-cap-view-framed .elementor-drop-cap, .elementor-widget-text-editor.elementor-drop-cap-view-default .elementor-drop-cap{color:var( --e-global-color-primary );border-color:var( --e-global-color-primary );}/* Start custom CSS for text-editor, class: .elementor-element-1c7c555a *//* --- ULTIMAHUB LOCATIONS PAGE STYLES --- */

/* 1. Main Container Wrapper */
.uh-locations-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    font-family: 'Open Sans', 'Helvetica Neue', sans-serif;
    box-sizing: border-box;
}

/* 2. Header Section */
.uh-loc-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 10px;
}

.uh-loc-subtitle {
    font-size: 1.125rem;
    color: #555555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* 3. Grid Layout System */
.uh-loc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    justify-content: center;
}

/* 4. Card Styling */
.uh-loc-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #f0f0f0;
}

.uh-loc-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

/* 5. Colored Box Area (UPDATED for Centered Title) */
.uh-card-color-box {
    width: 100%;
    height: 180px;
    transition: opacity 0.3s ease;
    /* Flexbox used to center content vertically and horizontally */
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px; /* Adds padding so text doesn't hit edges on small screens */
}

.uh-loc-card:hover .uh-card-color-box {
    opacity: 0.9;
}

/* The Title INSIDE the colored box */
.uh-card-color-box h3 {
    color: #ffffff; /* White text */
    margin: 0; /* Remove default margins */
    font-size: 2rem; /* Large, bold text */
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2); /* Subtle shadow to make white pop */
}

/* 6. Text Content Section (UPDATED - Removed old H3 styles) */
.uh-card-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

/* Old H3 rule removed from here */

.uh-card-body p {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
    flex-grow: 1;
}

/* 7. Call to Action (CTA) Link */
.uh-card-cta {
    font-weight: 700;
    color: #e63946;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    transition: color 0.2s ease;
}

.uh-loc-card:hover .uh-card-cta {
    color: #d62839;
}

/* 8. Mobile Responsiveness */
@media (max-width: 768px) {
    .uh-locations-wrapper {
        padding: 40px 15px;
    }
    
    .uh-loc-grid {
        grid-template-columns: 1fr;
    }
    /* Slightly smaller title on mobile phones */
    .uh-card-color-box h3 {
        font-size: 1.75rem;
    }
}/* End custom CSS */