﻿
/* ==========================
           Home Map
        ========================== */

.map-section {
    position: relative; 
    background: var(--primary-bg);
    padding: 60px 85px;
    color: #ffffff;
    overflow: hidden;
}

    .map-section::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.75) 70%, rgba(0, 0, 0, 1) 100%);
        pointer-events: none; 
        z-index: 1; 
    }



    .map-section > * {
        position: relative;
        z-index: 3;
    }

.container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

.map-row {
    align-items: flex-start; 
}

.map-content {
    padding-top: 0;
}

.map-tagline {
    font-size: 2rem;
    margin-bottom: 10px;
}

.map-divider {
    width: 100%;
    height: 1.5px;
    background: #ffffff;
    margin-bottom: 30px;    
}

.map-description {
    font-size: 1.5rem;
    line-height: 1.45;
    color: var(--muted);
    margin-bottom: 40px;
    text-align: right;
}

.stats-wrap {   
    justify-content: flex-end;
    margin-top:0;
}

.stats-row {
    display: flex;
    justify-content: flex-end; 
    gap: 40px; 
    text-align: right;
}

.stat-item {
    min-width: 150px; 
}


.stat-number {
    font-family: "Arial Black", Arial, sans-serif;
    font-size: 3rem;
    line-height: 1;
    white-space: nowrap; 
}

.stat-currency {
    font-size: 24pt; 
    vertical-align: super; 
    margin-right: 2px; 
}

.stat-label {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    font-size: 1.5rem;    
    margin-top: 6px;
    white-space: nowrap;
}


.stats-note {
    font-size: 1.3331rem;
    font-style: italic;
    text-align: right;
    margin-top: 20px;
}

/* RESPONSIVE */
@media (max-width: 991px) {
    .stats-wrap {
        justify-content: flex-start;
    }

    .stats-row {
        flex-direction: row;
        gap: 28px;
        text-align: left;
        
    }

    .stat-number {
        font-size: 36pt;
    }
}


