.home-notice {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 10000;
    display: none;
    padding: 24px;
    background: rgba(18, 27, 34, .78);
    align-items: center;
    justify-content: center;
}

.home-notice.is-visible {
    display: flex;
    animation: home-notice-fade-in .25s ease-out;
}

.home-notice__dialog {
    position: relative;
    width: 100%;
    max-width: 720px;
    max-height: calc(100vh - 48px);
    overflow-y: auto;
    border-top: 8px solid #fcb913;
    background: #fff;
    box-shadow: 0 18px 45px rgba(0, 0, 0, .35);
    color: #25323a;
}

.home-notice__content {
    padding: 42px 52px 46px;
}

.home-notice__eyebrow {
    margin: 0 0 14px;
    color: #c48a00;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 2px;
    line-height: 1.4;
    text-transform: uppercase;
}

.home-notice__title {
    margin: 0 46px 22px 0;
    color: #1b252b;
    font-size: 30px;
    line-height: 1.25;
}

.home-notice__body {
    margin: 0;
    font-size: 16px;
    line-height: 1.9;
    text-indent: 0;
}

.home-notice__body p {
    margin: 0 0 12px;
}

.home-notice__close {
    position: absolute;
    top: 18px;
    right: 20px;
    width: 38px;
    height: 38px;
    border: 0;
    background: transparent;
    color: #25323a;
    cursor: pointer;
    font-size: 30px;
    font-weight: 300;
    line-height: 34px;
}

.home-notice__close:hover,
.home-notice__close:focus {
    color: #c48a00;
    outline: 2px solid #fcb913;
    outline-offset: 2px;
}

@keyframes home-notice-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

@media screen and (max-width: 600px) {
    .home-notice { padding: 16px; }
    .home-notice__dialog { max-height: calc(100vh - 32px); }
    .home-notice__content { padding: 34px 26px 30px; }
    .home-notice__title { font-size: 24px; }
    .home-notice__body { font-size: 15px; line-height: 1.75; }
}