.home-places-map {
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.home-places-map__map-wrap,
.home-places-map__slider {
    height: 100%;
}

.home-places-map__map {
    position: relative;
    background: #f7f7f3;
    border-radius: 24px;
    padding: 20px;
    min-height: 620px;
    overflow: hidden;
}

.home-places-map__map svg {
    width: 100%;
    height: auto;
    display: block;
}

.home-places-map__map path {
    transition: fill .3s ease, stroke .3s ease, opacity .3s ease;
    cursor: pointer;
}

.home-places-map__map path:hover {
    fill: rgba(111, 170, 67, 0.18);
}

.home-places-map__map path.is-active {
    fill: rgba(111, 170, 67, 0.35);
    stroke: #6faa43;
}

.home-places-map__markers {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.home-places-map__marker {
    position: absolute;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: #e53935;
    border: 3px solid #fff;
    box-shadow: 0 6px 18px rgba(0,0,0,.16);
    transform: translate(-50%, -50%) scale(1);
    transition: transform .25s ease, background .25s ease;
    pointer-events: auto;
    cursor: pointer;
}

.home-places-map__marker::after {
    content: '';
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(229, 57, 53, .3);
    border-radius: 50%;
}

.home-places-map__marker.is-active {
    transform: translate(-50%, -50%) scale(1.25);
    background: #6faa43;
}

.place-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,.08);
}

.place-card__media {
    position: relative;
}

.place-card__video {
    position: relative;
    min-height: 360px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.place-card__video iframe {
    width: 100%;
    height: 360px;
    border: 0;
    display: block;
}

.place-card__play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border: 0;
    background: rgba(0,0,0,.72);
    color: #fff;
    border-radius: 999px;
    padding: 14px 22px;
    cursor: pointer;
}

.place-card__content {
    padding: 28px;
}

.place-card__region {
    font-size: 14px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #6faa43;
    margin-bottom: 10px;
}

.place-card__title {
    font-size: 30px;
    line-height: 1.15;
    margin-bottom: 14px;
}

.place-card__excerpt,
.place-card__text {
    font-size: 16px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 14px;
}

.place-card__link {
    display: inline-flex;
    align-items: center;
    color: #111;
    font-weight: 600;
    text-decoration: none;
}

.js-home-places-slider .slick-slide {
    padding: 0 10px;
}

.js-home-places-slider .slick-list {
    margin: 0 -10px;
}

@media (max-width: 991px) {
    .home-places-map {
        padding: 56px 0;
    }

    .home-places-map__map {
        min-height: 420px;
        margin-bottom: 24px;
    }

    .place-card__video,
    .place-card__video iframe {
        min-height: 260px;
        height: 260px;
    }

    .place-card__title {
        font-size: 24px;
    }
}