/* Modern place-page layout. Kept page-specific so other legacy layouts are unchanged. */
.Page_Wrapper {
    background:
        radial-gradient(circle at 85% 0, rgba(77, 153, 169, .12), transparent 30rem),
        #202020;
}

.Page_Wrapper > .Inner {
    max-width: 1280px;
    padding: 0 28px;
}

.Page_Wrapper > .Inner .PlaceOverview {
    display: grid;
    grid-template-columns: minmax(0, 1.6fr) minmax(320px, .8fr);
    gap: clamp(36px, 6vw, 82px);
    align-items: start;
    width: 100%;
    margin: 0;
    padding: clamp(48px, 6vw, 78px) 0 !important;
    overflow: visible;
}

.Page_Wrapper > .Inner .PlaceOverview__content,
.Page_Wrapper > .Inner .PlaceOverview__aside {
    float: none;
    width: auto;
    margin: 0;
}

.Page_Wrapper > .Inner .PlaceOverview__content {
    color: #ecebe7;
    font: 400 18px/1.72 "Lato", sans-serif;
}

.Page_Wrapper > .Inner .PlaceOverview__content h1,
.Page_Wrapper > .Inner .PlaceOverview__content h2 {
    margin: 0 0 24px;
    color: #fff;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
    letter-spacing: -.025em;
}

.Page_Wrapper > .Inner .PlaceOverview__content h1 {
    position: relative;
    padding-bottom: 18px;
    font-size: clamp(30px, 3vw, 42px);
}

.Page_Wrapper > .Inner .PlaceOverview__content h1::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 54px;
    height: 3px;
    border-radius: 3px;
    background: #ef6a5b;
    content: "";
}

.Page_Wrapper > .Inner .PlaceOverview__content p {
    margin: 0 0 22px;
}

.Page_Wrapper > .Inner .PlaceOverview__content a {
    color: #ff8b7e;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.Page_Wrapper > .Inner .PlaceOverview__aside {
    position: sticky;
    top: 94px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 18px;
    background: rgba(255, 255, 255, .045);
    box-shadow: 0 22px 55px rgba(0, 0, 0, .25);
}

.Page_Wrapper > .Inner .PlaceOverview__aside .PlaceOverview__map {
    width: 100%;
    min-height: 330px;
    height: 330px;
    margin: 0;
    overflow: hidden;
    border-radius: 12px;
    background: #111;
}

.Page_Wrapper > .Inner .PlaceOverview__stats {
    display: flex;
    gap: 10px;
    justify-content: center;
    min-height: 0;
    margin: 0;
    padding: 12px 0 0 !important;
    font-size: 16px;
}

.Page_Wrapper > .Inner .PlaceOverview__stats .detail-box {
    display: flex;
    flex: 1 1 0;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 0;
    min-height: 100px;
    margin: 0;
    padding: 14px 8px;
    border-radius: 10px;
    background: rgba(255, 255, 255, .055);
}

.Page_Wrapper > .Inner .PlaceOverview__stats .detail-box .boxs {
    margin-bottom: 9px;
    color: #ff796b;
    font-size: 28px;
}

.Page_Wrapper > .Inner .PlaceOverview__stats .detail-box h2 {
    margin: 0;
    color: #fff;
    font: 700 13px/1.35 "Montserrat", sans-serif;
    text-align: center;
}

@media screen and (max-width: 900px) {
    .Page_Wrapper > .Inner .PlaceOverview {
        grid-template-columns: 1fr;
    }

    .Page_Wrapper > .Inner .PlaceOverview__aside {
        position: static;
        width: 100%;
    }
}

@media screen and (max-width: 520px) {
    .Page_Wrapper > .Inner {
        padding: 0 16px;
    }

    .Page_Wrapper > .Inner .PlaceOverview {
        gap: 30px;
        padding: 36px 0 44px !important;
    }

    .Page_Wrapper > .Inner .PlaceOverview__content {
        font-size: 17px;
        line-height: 1.65;
    }

    .Page_Wrapper > .Inner .PlaceOverview__aside .PlaceOverview__map {
        min-height: 260px;
        height: 260px;
    }

    .Page_Wrapper > .Inner .PlaceOverview__stats {
        flex-wrap: wrap;
    }

    .Page_Wrapper > .Inner .PlaceOverview__stats .detail-box {
        min-width: 120px;
    }
}
