.property-map-section {
    padding: 4rem 2rem;
    background-color: #F5F7FA;
}

.property-map-container {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    max-width: 1600px;
    margin: 0 auto;
    gap: 3rem;
    align-items: stretch;
    justify-content: space-between;
}

.map-location-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.property-location-map-image {
    width: 100%;
    height: 644px;
    border-radius: 4px;
    object-fit: cover;
}

.map-links-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 1.5rem;
}

.map-link-btn {
    display: flex;
    justify-content: center;
    width: 290px;

    font-family: 'Figtree', sans-serif;
    font-weight: 400;
    font-size: 16px;
    padding: 1.25rem 0;

    color: #D8BFAA;
    text-decoration: none;
    border: #D8BFAA 2px solid;
    border-radius: 4px;
}

@media (max-width: 1024px) {
    .property-location-map-image {
        height: 500px;
    }

    .map-links-container {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .map-link-btn {
        width: 220px;
        padding: 1rem 0;
    }
}

@media (max-width: 768px) {
    .property-location-map-image {
        height: 380px;
    }

    .map-links-container {
        flex-direction: column;
        align-items: center;
    }

    .map-link-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .property-location-map-image {
        height: 260px;
    }

    .map-link-btn {
        font-size: 14px;
        padding: 0.85rem 0;
        max-width: 100%;
    }
}