.places-swiper {
    width: 100%;
    overflow: hidden;
}

.place-card {
    width: 320px;
    height: auto;
}

.place-card img {
    width: 80%;
    height: 200px;
    object-fit: cover;
    border-radius: 12px;
}

.place-content {
    margin-top: 15px;
}

.place-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.place-card-all {
    height: 100%;
}
.place-card-all a {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    height: 100%;
    min-height: 661px;
    background: #5a9678;
    color: #fff;
    text-decoration: none;
    font-size: 24px;
}
.place-card-all a:hover {
    background: #4a8068;
}
.place-card-all-text {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 10px;
}
@media (min-width: 768px) {
    .place-card {
        width: calc((100% - 20px) / 2);
    }
}

@media (min-width: 1024px) {
    .place-card {
        width: calc((100% - 500px) / 4);
    }
}

@media (max-width: 480px) {
    .place-card-all a {
        height: 100%;
        min-height: 450px;
    }
}


#mapModal.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    visibility: hidden;
    opacity: 0;
    transition: 0.2s;
}
#mapModal.modal-overlay.active {
    visibility: visible;
    opacity: 1;
}
#mapModal.modal-container {
    background: white;
    width: 90%;
    max-width: 800px;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}
#mapModal #popup-map {


    width: 100%;
    height: 100%;

    width: 800px;
    height: 500px;
}