body.mtic-site-notice-open {
    overflow: hidden;
}

.mtic-site-notice {
    position: fixed;
    inset: 0;
    z-index: 100010;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: var(--mtic-spacing-md);
}

.mtic-site-notice[hidden] {
    display: none;
}

.mtic-site-notice__backdrop {
    position: fixed;
    inset: 0;
    z-index: 100000;
    background: rgba(3, 47, 60, 0.68);
    backdrop-filter: blur(4px);
    cursor: pointer;
}

.mtic-site-notice.mtic-site-notice--visible .mtic-site-notice__backdrop {
    opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
    .mtic-site-notice__backdrop {
        transition: none;
    }
}

.mtic-site-notice__panel {
    position: relative;
    z-index: 100001;
    width: 100%;
    max-width: 480px;
    max-height: 85vh;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
    background: #ffffff;
}

.mtic-site-notice__close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 34px;
    height: 34px;
    border: none;
    border-radius: 50%;
    background: rgba(3, 47, 60, 0.85);
    color: #ffffff;
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background-color 0.18s ease;
}

.mtic-site-notice__close:hover {
    background: #032f3c;
}

.mtic-site-notice__close:focus-visible {
    outline: 3px solid var(--mtic-primary);
    outline-offset: 3px;
}

.mtic-site-notice__image-link {
    display: block;
    line-height: 0;
}

.mtic-site-notice__image-link:focus-visible {
    outline: 3px solid var(--mtic-primary);
    outline-offset: 2px;
}

.mtic-site-notice__image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 85vh;
    object-fit: contain;
}

.mtic-site-notice__image-link:hover .mtic-site-notice__image {
    opacity: 0.94;
}

/*Tablet*/
@media screen and (min-width: 768px) and (max-width: 1024px) {
    .mtic-site-notice__panel {
        max-width: 420px;
    }
}

@media screen and (max-width: 767px) {
    .mtic-site-notice__panel {
        max-width: 92vw;
        border-radius: 12px;
    }

    .mtic-site-notice__close {
        width: 30px;
        height: 30px;
        top: 10px;
        right: 10px;
        font-size: 1.2rem;
    }
}