/* ===== MAPS SECTION ===== */
.maps-section {
    padding: 0 2rem 5rem 2rem;
    background-color: var(--color-white);
}

.maps-box {
    max-width: 1184px;
    margin: 0 auto;
    border: 20px solid var(--color-white);
    background-color: rgba(222, 189, 164, 0.14);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
    padding: 1.5rem;
}

.maps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    grid-template-columns: 1fr 1fr;
}

.maps-info {
    display: flex;
    flex-direction: column;
    gap: 2.25rem;
}

.maps-title {
    font-family: 'Inter', sans-serif;
    text-transform: uppercase;
    margin: 0;
}

.maps-title .light {
    font-weight: 300;
    color: var(--color-dark);
}

.maps-title .accent {
    color: var(--color-green-muted);
}

.maps-item {
    display: flex;
    gap: 1.5rem;
}

.maps-item-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
}

.maps-item-icon svg {
    width: 100%;
    height: 100%;
}

.maps-item-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.5rem;
    line-height: 1em;
    margin: 0;
}

.maps-item-content h3 .light {
    font-weight: 300;
    color: var(--color-dark);
}

.maps-item-content h3 .bold {
    font-weight: 600;
    color: var(--color-dark);
}

.maps-item-content p {
    font-size: 1.25rem;
    color: rgba(172, 141, 112, 0.88);
    line-height: 1.75;
    margin: 0.75rem 0 0 0;
}

.maps-image {
    border-radius: 8px;
    overflow: hidden;
}

.maps-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 1199px) {
    .maps-section {
        padding: 100px;
    }

    .maps-box {
        max-width: 1184px;
        border: 20px solid var(--color-white);
        padding: 1.5rem;
    }

    .maps-info {
        gap: 2.25rem;
    }

    .maps-item {
        gap: 1.5rem;
    }

    .maps-item-icon {
        width: 36px;
        height: 36px;
    }

    .maps-item-content p {
        font-size: 1.25rem;
        line-height: 1.75;
        margin: 0.75rem 0 0 0;
    }

    .maps-image {
        border-radius: 8px;
    }  
}

@media (max-width: 991px) {
    .maps-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .maps-section {
        padding: 56px;
    }
}

@media (max-width: 639px) {
    .maps-section {
        padding: 36px;
    }
    .maps-box {
        border: 10px solid #fff;
    }
}