main {
    display: block;
    width: 100%;
    height: auto;
    min-height: 70svh;
    max-width: var(--main-width);
    margin: 0 auto;
    background-color: var(--bg-02);
    position: relative;
    padding: 0 15px 2rem;
}

.place-list-header {
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color-06);
    margin-bottom: 1rem;
}

.place-list-title {
    margin: 0;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-01);
    line-height: 1.3;
}

.place-list-desc {
    color: var(--text-02);
    font-size: .95rem;
    line-height: 1.6;
}


.place-map {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 16/9;
    border-radius: 8px;
    overflow: hidden;
    background:
        linear-gradient(135deg, rgba(111,140,175,.12), rgba(255,255,255,.4)),
        #edf3fa;
    border: 1px solid var(--secondary-border);
    position: relative;
}
#place_map {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}
.place-map > .map_placeholder {
    display: flex;
    width: 100%;
    padding: 0 1rem;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--text-muted);
    text-align: center;
    font-weight: 600;
    pointer-events: none;
    line-height: 1.4;
    font-size: 1.25rem;
    align-items: center;
    justify-content: center;
    gap: 0.25em;
}
.place-map > .map_controls {
    position: absolute;
    top: 0.5em;
    right: 0.5em;
    display: flex;
    flex-direction: column;
    gap: 0.25em;
    z-index: 101;
}
.place-map > .map_controls > .map_control_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 1.8em;
    height: 1.8em;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.8);
    color: var(--text-unselected);
    font-size: .9em;
    border: 1px solid var(--border-color-03);
    transition: all .2s ease, color .2s ease;
    box-shadow: 0 2px 6px rgba(0,0,0,.1);
}
.place-map > .map_controls > .map_control_btn:hover {
    background-color: rgba(255,255,255,1);
    color: var(--text-label);
    box-shadow: 0 4px 12px rgba(0,0,0,.1);
}
.place-map >  .map_controls > .map_control_btn:active {
    background-color: var(--primary);
    color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,.1);
}
