.favorite-places-section {
    width: 100%;
    padding: 80px 7% 100px;
    background: var(--bg);
    box-sizing: border-box;
    border-top: 1px solid var(--border);
}

.favorite-places-title {
    max-width: 1200px;
    margin: 0 auto 32px;
    font-family: "Syne", sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--text);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.favorite-map-container {
    width: 100%;
    max-width: 1200px;
    height: 560px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 0;
    border: 1px solid var(--border);
    background: var(--surface);
}

.favorite-map {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 768px) {
    .favorite-places-section {
        padding: 60px 5% 80px;
    }

    .favorite-places-title {
        font-size: 1.9rem;
    }

    .favorite-map-container {
        height: 430px;
    }
}

@media (max-width: 480px) {
    .favorite-map-container {
        height: 340px;
    }
}
