.chef-map-wrap {
    margin: 40px 0
}

.chef-map {
    position: relative;
    max-width: 1200px;
    margin: 0 auto
}

.chef-map-img {
    width: 100%;
    height: auto;
    display: block
}

.chef-hotspot {
    position: absolute;
    display: block;
    outline: none
}

.chef-hotspot:focus {
    box-shadow: 0 0 0 3px rgba(24, 123, 209, .5)
}

.chef-mobile-list {
    display: none;
    list-style: none;
    margin: 16px 0 0;
    padding: 0;
    columns: 2;
    column-gap: 24px
}

.chef-mobile-list li {
    break-inside: avoid;
    margin: 0 0 8px
}

@media (max-width:640px) {
    #chef-map {
        display: none
    }

    .chef-mobile-list {
        display: block
    }
}

.chef-modal {
    position: fixed;
    inset: 0;
    display: none;
    z-index: 10000
}

.chef-modal.is-open {
    display: block
}

.chef-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .8)
}

.chef-modal__dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: min(900px, 92vw);
    height: min(80vh, 900px);
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, .4)
}

.chef-modal__close {
    position: absolute;
    top: 8px;
    right: 10px;
    border: 0;
    background: transparent;
    font-size: 32px;
    line-height: 1;
    cursor: pointer
}

.chef-modal__iframe {
    width: 100%;
    height: 100%;
    border: 0
}