* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    min-height: 100%;
}

body {
    background: #111;
    font-family: Arial, Helvetica, sans-serif;
}

.page-shell {
    width: min(100%, 1024px);
    margin: 0 auto;
    background: #fff;
}

.page-image-wrap {
    position: relative;
    width: 100%;
}

.full-page-layout {
    display: block;
    width: 100%;
    height: auto;
}

.hotspot {
    position: absolute;
    display: block;
    cursor: pointer;
    z-index: 10;
    border-radius: 18px;
    transition: all .15s ease;
}

/* Debug:
   Add this temporarily if you need to see the clickable zones.
   background: rgba(255, 0, 0, .25);
*/

@media (min-width: 1100px) {
    .page-shell {
        margin-top: 24px;
        margin-bottom: 24px;
        box-shadow: 0 20px 80px rgba(0,0,0,.45);
        border-radius: 18px;
        overflow: hidden;
    }
}
