@import url('variables.css');
@import url('flexbox.css');
@import url('styles.css');

/* ====================================
   JOBS LOCALE - MAPA INTERACTIVO
   ====================================*/

/* Main Container */
.jobs-locale-container {
    width: calc(100% - 20px);
    margin: 0 5px 0 5px; /* Same margin as header */
    padding: 30px 0 30px 0;
}

.jobs-locale-container-two {
    margin: 30px 55px 0 55px;
}

/* Header Stats Grid - Bootstrap-like System */
.header-stats-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 25px auto 5px auto;
    padding: 20px 0 5px 0;
    max-width: 900px;
    gap: 0;
}

.header-stat-item {
    text-align: center;
    flex: 0 0 25%;
    max-width: 25%;
    padding: 0 15px;
    font-family: var(--font-family-body);
}

.header-stat-number {
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 10px;
    color: #199ada;
    line-height: 1;
    transition: transform 0.3s ease;
}

.header-stat-label {
    font-size: 17px;
    font-weight: 700;
    color: #199ada;
    line-height: 1.3;
    opacity: 1;
    letter-spacing: 0.3px;
}

.split-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
    align-items: start;
    width: 100%;
    padding: 0 32px;
    box-sizing: border-box;
}

.map-section {
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: auto;
}

.states-section {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    height: auto;
    box-sizing: border-box;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.states-grid {
    overflow-y: auto;
    overflow-x: hidden;
/*    flex-grow: 1;
*/    min-height: 0; 
}

/* Custom Scrollbar for States Section */
.states-section::-webkit-scrollbar {
    width: 8px;
}

.states-section::-webkit-scrollbar-track {
    background: #f8fdff;
    border-radius: 10px;
}

.states-section::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #199ada 0%, #162960 100%);
    border-radius: 10px;
    transition: background 0.3s ease;
}

.states-section::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #162960 0%, #0d47a1 100%);
}

.map-header {
    text-align: center;
    margin-bottom: 15px;
}

.map-title {
    font-family: var(--font-family-body);
    font-size: 28px;
    font-weight: 700;
    color: #162960;
    margin-bottom: 8px;
}

.map-subtitle {
    font-family: var(--font-family-body);
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* USA Map Container */
.usa-map-container {
    position: relative;
    background: linear-gradient(135deg, #f8fdff 0%, #e3f2fd 100%);
    border-radius: 10px;
    padding: 5px;
    margin-bottom: 15px;
    min-height: 580px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(25, 154, 218, 0.1);
}

/* D3.js Map Container */
.d3-map-container {
    width: 100%;
    height: 580px;
    display: block;
}

    .d3-map-container svg {
        font-family: var(--font-family-body);
        width: 100% !important;
        height: 100% !important;
        border-radius: 8px;
        display: block;
    }

/* State Paths */
.state-path {
    fill: #e3f2fd;
    stroke: #199ada;
    stroke-width: 1;
    cursor: pointer;
    transition: all 0.3s ease;
}

.state-path:hover {
    fill: #199ada;
    stroke: #162960;
    stroke-width: 2;
    filter: drop-shadow(0 4px 12px rgba(25, 154, 218, 0.4));
}

.state-path:active {
    transform: scale(0.98);
    transition: transform 0.1s ease;
}

/* SVG MAP DYNAMIC STYLES DISABLED - Numbers only, no colors */
/*
.state-path.jobs-high {
    fill: #4caf50;
}

.state-path.jobs-high:hover {
    fill: #388e3c;
}

.state-path.jobs-medium {
    fill: #ff9800;
}

.state-path.jobs-medium:hover {
    fill: #f57c00;
}

.state-path.jobs-low {
    fill: #81c784;
}

.state-path.jobs-low:hover {
    fill: #66bb6a;
}

.state-path.jobs-none {
    fill: #f5f5f5;
    opacity: 0.7;
    cursor: not-allowed;
}

.state-path.jobs-none:hover {
    fill: #f5f5f5;
    transform: none;
    filter: none;
}
*/

/* State Labels */
.state-label {
    font-family: var(--font-family-body);
    font-size: 12px;
    font-weight: 700;
    fill: #162960;
    text-anchor: middle;
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}

.state-counter {
    font-family: var(--font-family-body);
    font-size: 10px;
    font-weight: 700;
    fill: #fff;
    text-anchor: middle;
    pointer-events: none;
    -webkit-user-select: none;
    user-select: none;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* Tooltip */
.map-tooltip {
    position: absolute;
    background: rgba(22, 41, 96, 0.95);
    color: white;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease, transform 0.2s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transform: translateY(-5px);
    white-space: nowrap;
    max-width: 250px;
}

.map-tooltip::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: rgba(22, 41, 96, 0.95) transparent transparent transparent;
}

.tooltip-state-name {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}

.tooltip-job-count {
    font-size: 14px;
    opacity: 0.9;
}

.tooltip-click-hint {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 4px;
    font-style: italic;
}

.map-tooltip span, small, strong {
    font-family: var(--font-family-body);
}

/* States Grid Section */
.states-grid-section {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.states-grid-header {
    text-align: center;
    margin-bottom: 30px;
}

.states-grid-title {
    font-family: var(--font-family-body);
    font-size: 28px;
    font-weight: 700;
    color: #162960;
    margin-bottom: 8px;
}

.states-grid-subtitle {
    font-family: var(--font-family-body);
    font-size: 16px;
    color: #666;
    margin: 0;
}

/* Search Box */
.state-search-container {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0 0 30px 0;
    box-sizing: border-box;
}

.state-search-input {
    font-family: var(--font-family-body);
    width: 100%;
    padding: 12px 45px 12px 20px;
    border: 2px solid #e3f2fd;
    border-radius: 25px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    background: #f8f9fa;
    box-sizing: border-box;
}

.state-search-input:focus {
    border-color: #199ada;
    background: white;
    box-shadow: 0 0 0 3px rgba(25, 154, 218, 0.1);
}

.state-search-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    color: #666;
    pointer-events: none;
}

/* States Grid */
.states-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 15px;
    margin-top: 20px;
    padding: 10px 12px 10px 5px;
    list-style: none;
    width: 100%;
    box-sizing: border-box;
}


/* State Card */
.state-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    border: 2px solid transparent;
}

/* Effect Hover - State Card */
.state-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(25, 154, 218, 0.15);
    border-color: rgba(25, 154, 218, 0.3);
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
}

.state-card:hover .state-name {
    color: #199ada;
}

.state-card:hover .state-job-count {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(25, 154, 218, 0.3);
}

.state-card:hover .state-description {
    color: #555;
}

.state-card:active {
    transform: translateY(-2px);
    transition: all 0.1s ease;
}



/* Additional improvement for accessibility */
.state-card:focus {
    outline: 2px solid #199ada;
    outline-offset: 2px;
}

.state-card:focus-visible {
    outline: 2px solid #199ada;
    outline-offset: 2px;
}

/* DYNAMIC STYLES DISABLED - Only the number is updated, not the colors */
/*
.state-card.jobs-high {
    border-color: #4caf50;
    background: linear-gradient(135deg, #ffffff 0%, #f1f8e9 100%);
}

.state-card.jobs-high:hover {
    box-shadow: 0 8px 25px rgba(76, 175, 80, 0.2);
    transform: translateY(-3px);
}

.state-card.jobs-high .state-job-count {
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
    color: white;
    font-weight: 700;
}

.state-card.jobs-medium {
    border-color: #ff9800;
    background: linear-gradient(135deg, #ffffff 0%, #fff8e1 100%);
}

.state-card.jobs-medium:hover {
    box-shadow: 0 8px 25px rgba(255, 152, 0, 0.2);
    transform: translateY(-3px);
}

.state-card.jobs-medium .state-job-count {
    background: linear-gradient(135deg, #ff9800 0%, #f57c00 100%);
    color: white;
    font-weight: 700;
}

.state-card.jobs-low {
    border-color: #2196f3;
    background: linear-gradient(135deg, #ffffff 0%, #e3f2fd 100%);
}

.state-card.jobs-low:hover {
    box-shadow: 0 8px 25px rgba(33, 150, 243, 0.2);
    transform: translateY(-3px);
}

.state-card.jobs-low .state-job-count {
    background: linear-gradient(135deg, #2196f3 0%, #1976d2 100%);
    color: white;
    font-weight: 700;
}

.state-card.jobs-none {
    border-color: #e0e0e0;
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    opacity: 0.7;
}

.state-card.jobs-none:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-1px);
    opacity: 0.9;
}

.state-card.jobs-none .state-job-count {
    background: linear-gradient(135deg, #9e9e9e 0%, #757575 100%);
    color: white;
    font-weight: 500;
}
*/

.state-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #199ada 0%, #162960 100%);
    border-radius: 12px;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: -1;
}

.state-card:hover::before {
    opacity: 0.08;
    transform: scale(1.02);
}

.state-card-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.state-name {
    font-family: var(--font-family-body);
    font-size: 18px;
    font-weight: 700;
    color: #162960;
    margin: 0;
    transition: color 0.3s ease;
    will-change: color;
}

.state-job-count {
    font-family: var(--font-family-body);
    background: linear-gradient(135deg, #199ada 0%, #162960 100%);
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-align: center;
    min-width: 60px;
    transition: all 0.3s ease;
    will-change: transform;
}

/* Loading states */
.state-job-count.loading,
.state-cities-count.loading {
    opacity: 0.6;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Smooth transitions for updates */
.state-cities-count {
    font-family: var(--font-family-body);
    transition: all 0.3s ease;
}

.state-cities-count:hover {
    color: #199ada;
}

.state-description {
    font-family: var(--font-family-body);
    color: #666;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.state-stats {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.state-cities-count {
    color: #999;
    font-size: 13px;
}

.state-arrow {
    width: 16px;
    height: 16px;
    color: #199ada;
    transition: transform 0.3s ease;
}

.state-card:hover .state-arrow {
    transform: translateX(3px);
}

/* Map Legend */
.map-legend {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    padding: 15px 20px;
    background: linear-gradient(135deg, #f8fdff 0%, #e3f2fd 100%);
    border-radius: 10px;
    border: 1px solid rgba(25, 154, 218, 0.1);
    font-family: var(--font-family-body);
}

.legend-item {
    font-family: var(--font-family-body);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #333;
    font-weight: 500;
    transition: transform 0.2s ease;
}

.legend-item:hover {
    transform: translateY(-1px);
}

.legend-color {
    width: 22px;
    height: 16px;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.8);
    transition: transform 0.2s ease;
}

.legend-item:hover .legend-color {
    transform: scale(1.1);
}

.legend-color.highest {
    background-color: #0d47a1;
    box-shadow: 0 2px 4px rgba(13, 71, 161, 0.3);
}

.legend-color.high {
    background-color: #1976d2;
    box-shadow: 0 2px 4px rgba(25, 118, 210, 0.3);
}

.legend-color.medium {
    background-color: #42a5f5;
    box-shadow: 0 2px 4px rgba(66, 165, 245, 0.3);
}

.legend-color.low {
    background-color: #90caf9;
    box-shadow: 0 2px 4px rgba(144, 202, 249, 0.3);
}

.legend-color.none {
    background-color: #cfd8df;
    box-shadow: 0 1px 2px rgba(227, 242, 253, 0.5);
}

/* Loading State */
.map-loading {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 400px;
    color: #666;
}

.map-loading-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid #e3f2fd;
    border-top: 3px solid #199ada;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-bottom: 15px;
}

/* Map Instructions */
.map-instructions {
    text-align: center;
    margin-bottom: 20px;
}

    .map-instructions p {
        font-family: var(--font-family-body);
        color: #666;
        font-size: 14px;
        margin: 0;
    }

/* Statistics Section */
.stats-section {
    background: linear-gradient(135deg, #199ada 0%, #162960 100%);
    color: white;
    padding: 40px 30px;
    border-radius: 15px;
    margin-bottom: 40px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(25, 154, 218, 0.3);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffffff;
}

.stat-label {
    font-size: 14px;
    opacity: 0.9;
    font-weight: 500;
}

/* Floating Reset Button */
.floating-reset-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #199ada 0%, #162960 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0;
    pointer-events: none;
    z-index: 1000;
    box-shadow: 0 4px 15px rgba(25, 154, 218, 0.3);
}

.floating-reset-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(25, 154, 218, 0.4);
}

.floating-reset-btn svg {
    width: 24px;
    height: 24px;
    color: white;
}

/* Animations */
.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Large screens - optimize for wide displays */
@media (min-width: 1400px) {
    .split-layout {
        gap: 40px;
        padding: 0 50px;
    }
    
    .map-section,
    .states-section {
        padding: 25px;
    }
    
    .d3-map-container {
        height: 700px;
    }
    
    .d3-map-container svg {
        width: 100% !important;
        height: 100% !important;
    }
    
    .usa-map-container {
        min-height: 700px;
        padding: 8px;
    }
    
    .states-grid {
        max-height: 700px;
    }
    
    .states-section {
        max-height: 750px;
    }
    
    .state-search-container {
        margin: 0 0 25px 0;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .split-layout {
        gap: 20px;
        padding: 0 20px;
    }
    
    .map-section,
    .states-section {
        padding: 15px;
    }
    
    .jobs-locale-container {
        width: calc(100% - 30px); 
        margin: 0 15px;
    }
    
    .state-search-container {
        margin: 0 0 25px 0;
    }
    
    .state-search-input {
        padding: 11px 42px 11px 18px;
        font-size: 15px;
    }
}
@media (min-width: 1440px) {
    .states-section {
        max-height: none; 
    }
}

@media (max-width: 768px) {
    .split-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .states-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 15px;
        max-height: none;
        overflow-y: visible;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .jobs-locale-container {
        width: calc(100% - 14px);
        margin: 0 7px;
        padding: 5px 0 15px 0;
    }
    
    .split-layout {
        padding: 0 15px;
    }
    
    .header-stats-grid {
        margin: 20px auto 3px auto;
        padding: 15px 0 3px 0;
        max-width: 100%;
        gap: 0;
    }
    
    .header-stat-item {
        flex: 0 0 25%;
        max-width: 25%;
        padding: 0 8px;
    }
    
    .header-stat-number {
        font-size: 42px;
        font-weight: 800;
        margin-bottom: 8px;
        color: #199ada;
    }
    
    .header-stat-label {
        font-size: 15px;
        font-weight: 700;
        color: #199ada;
        letter-spacing: 0.2px;
    }
    
    .map-section,
    .states-section {
        padding: 15px;
    }

    .states-section {
        max-height: 560px;
    }
    
    .map-title,
    .states-grid-title {
        font-size: 24px;
    }
    
        .usa-map-container {
        padding: 5px;
        min-height: 420px;
    }

    .d3-map-container {
        height: 420px;
    }
    
    .d3-map-container svg {
        width: 100% !important;
        height: 100% !important;
    }
    
    .states-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .state-card {
        padding: 15px;
    }

    .map-legend {
        gap: 15px;
    }
    
    .legend-item {
        font-size: 12px;
    }
    
    .floating-reset-btn {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .floating-reset-btn svg {
        width: 20px;
        height: 20px;
    }
    
    .state-search-container {
        margin: 0 0 20px 0;
    }
    
    .state-search-input {
        padding: 10px 40px 10px 16px;
        font-size: 15px;
        border-radius: 22px;
    }
    
    .state-search-icon {
        right: 13px;
        width: 19px;
        height: 19px;
    }
}

@media (max-width: 600px) {
    .header-stats-grid {
        margin: 15px auto 2px auto;
        padding: 12px 0 2px 0;
        flex-wrap: wrap;
    }
    
    .header-stat-item {
        flex: 0 0 50%;
        max-width: 50%;
        padding: 0 5px;
        margin-bottom: 10px;
    }
    
    .header-stat-number {
        font-size: 36px;
        font-weight: 800;
        margin-bottom: 6px;
        color: #199ada;
    }
    
    .header-stat-label {
        font-size: 14px;
        font-weight: 700;
        color: #199ada;
        letter-spacing: 0.2px;
    }
    
    .state-search-container {
        margin: 0 0 18px 0;
    }
    
    .state-search-input {
        padding: 9px 38px 9px 14px;
        font-size: 14px;
        border-radius: 20px;
    }
    
    .state-search-icon {
        right: 11px;
        width: 17px;
        height: 17px;
    }
}

@media (max-width: 480px) {
    .header-stats-grid {
        margin: 15px auto 2px auto;
        padding: 12px 0 2px 0;
        flex-direction: column;
        gap: 20px;
    }
    
    .header-stat-item {
        flex: 1;
        max-width: 100%;
        padding: 0;
        margin-bottom: 0;
    }
    
    .header-stat-number {
        font-size: 44px;
        font-weight: 800;
        margin-bottom: 8px;
        color: #199ada;
    }
    
    .header-stat-label {
        font-size: 16px;
        font-weight: 700;
        color: #199ada;
        letter-spacing: 0.3px;
    }
    
    .map-legend {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    
    .state-search-container {
        margin: 0 0 20px 0;
    }
    
    .state-search-input {
        padding: 10px 40px 10px 15px;
        font-size: 14px;
        border-radius: 20px;
    }
    
    .state-search-icon {
        right: 12px;
        width: 18px;
        height: 18px;
    }
}

/* Animation keyframes */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
    height: fit-content;
}
/* --------------------------------------------------
   MAP LOADING SPINNER
-------------------------------------------------- */
.map-loading-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    font-family: var(--font-family-button);
    background-color: rgba(255, 255, 255, 0.9);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10;
}

.map-spinner-ring {
    position: relative;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 0 5px 0;
}

.map-spinner-circle {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 3px solid #263e80;
    border-top-color: transparent;
    border-radius: 50%;
    animation: map-spin 1s linear infinite;
}

.map-spinner-logo {
    width: 18px;
    height: 18px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-60%, -60%);
    z-index: 1;
    pointer-events: none;
}

@keyframes map-spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.map-loading-text {
    color: #666;
    font-size: 16px;
    font-family: var(--font-family-body);
}

@media (max-width: 768px) {
    /* Breadcrumb */
    .jobs-locale-container-two nav {
        padding: 12px 16px !important;
    }

    .breadcrumb-section div {
        flex-wrap: wrap;
        gap: 4px;
        font-size: 13px;
        line-height: 1.4;
    }

    .breadcrumb-section svg {
        width: 14px;
        height: 14px;
    }

    /* Banner */
    .location-info-banner {
        padding: 20px 15px !important;
        border-radius: 12px;
    }

        .location-info-banner h2 {
            font-size: 20px !important;
            line-height: 1.3;
        }

        .location-info-banner p {
            font-size: 14px !important;
            line-height: 1.4;
        }

        /* Citys */
        .location-info-banner h3 {
            font-size: 16px !important;
            text-align: center;
        }
}

@media (max-width: 768px) {
    /* Buttons container */
    .location-info-banner div[style*="flex-wrap"] {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        justify-items: center;
        width: 100%;
    }

    /* Buttons */
    .location-info-banner a {
        display: flex !important;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 44px;
        text-align: center;
        font-size: 14px !important;
        padding: 8px 12px !important;
        box-sizing: border-box;
    }

        /* Icon Button */
        .location-info-banner a svg {
            margin-left: 6px;
            flex-shrink: 0;
        }
}

