  .nr-bell-container {
    height: 0;
    width: 100%;
    max-width: 1418px;
    margin: 0 auto;
    position: relative;
    display: flex;
    justify-content: flex-end;
    pointer-events: none;
    padding-right: 16px;
    box-sizing: border-box;
}

.nr-bell-btn {
    pointer-events: auto;
    align-items: center;
    background-color: rgb(var(--color-sky-blue));
    border-radius: 50%;
    border: none;
    box-shadow: var(--shadow-sm);
    color: rgb(var(--color-white));
    cursor: pointer;
    display: flex;
    justify-content: center;
    padding: 0;
    position: relative;
    transition: background-color var(--transition), transform 0.2s ease;
    z-index: 998;
    -webkit-tap-highlight-color: transparent;
    
    /* Mobile First (Base) */
    width: 48px;
    height: 48px;
    margin-top: -24px;
}

.nr-bell-btn:hover,
.nr-bell-btn:focus-visible {
    background-color: rgb(var(--color-dark-blue));
    transform: scale(1.05);
}

.nr-bell-btn .material-symbols-outlined {
    font-size: 24px;
    color: inherit;
    font-variation-settings: 'FILL' 1;
}

/* Responsive Breakpoints */
@media (min-width: 576px) {
    .nr-bell-container {
        padding-right: 24px;
    }
}

@media (min-width: 878px) {
    .nr-bell-btn {
        width: 56px;
        height: 56px;
        margin-top: -28px;
    }
    
    .nr-bell-btn .material-symbols-outlined {
        font-size: 24px;
    }

   
}

@media (min-width: 992px) {
    .nr-bell-container {
        padding-right: 32px;
    }
}

@media (min-width: 1200px) {
    /* For very large screens, align with content max-width */
    .nr-bell-container {
        padding-right: 0; 
        /* Assuming the 1418px matches content width exactly, 
           or keep padding if content has internal gutters. 
           User said "scales gracefully... container centers itself".
           If we remove padding here, it hits the 1418px edge. */
    }
}
/* Main modal - design system (common.css) */
.nr-modal-overlay {
    display: none;
    position: absolute;
    right: 0;
    top: 0;
    transform: translateY(-100%);
    z-index: 10000;
    pointer-events: auto;
}

.nr-modal {
    background: #fff;
    width: 500px;
    max-width: 90vw;
    max-height: 85vh;
    overflow-y: auto;
    border-radius: 0;
    padding: 50px 38px 38px 38px;
    position: relative;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.18);
}
.nr-close-top {
    position: absolute;
    top: 24px;
    right: 24px;
    cursor: pointer;
}
.nr-close-top .material-symbols-outlined{
    position: absolute;
    top: 16px;
    right: 16px;
    border: none;
    background: none;
    font-size: 18px;
    cursor: pointer;
    font-weight: bold !important;
    color: #000 !important;
}

/* Main title */
.nr-title {
    font-family: var(--font-family-bold);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.32px;
    color: rgba(0, 0, 0, 1);
    max-width: 335px;
    margin: 0 0 1em;
}

/* List */
.nr-list-item {
    margin-bottom: 15px;
    background-color: rgba(245, 245, 245, 1);
    padding: 20px 18px;
    border-radius: 0;
    min-height: 81px;
    max-width: 424px;
    box-sizing: border-box;
}

.nr-list-item:last-child {
    margin-bottom: 0;
}

.nr-item-title {
    font-family: var(--font-family-bold);
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.24px;
    color: rgba(0, 85, 150, 1);
}

.nr-item-title a {
    color: rgba(0, 85, 150, 1);
    text-decoration: none;
}

.nr-item-title a:hover {
    text-decoration: underline;
}

.nr-item-content {
    margin-top: 4px;
    font-family: var(--font-family-semi-bold);
    font-size: 14px;
    font-weight: 600;
    color: rgba(51, 51, 51, 1);
}

.nr-item-content p {
    margin: 0;
}

.nr-list-description {
    margin-top: 24px;
    padding-top: 16px;
    text-align: center;
}

/* Footer */
.nr-modal-footer {
    text-align: center;
    margin-top: 24px;
}

.nr-footer-help {
    font-family: var(--font-family-semi-bold);
    font-size: 14px;
    font-weight: 600;
    color: rgba(0, 0, 0, 1);
    text-align: center;
    line-height: 21px;
    margin: 0 0 16px;
}

.nr-close-btn {
    cursor: pointer;
}

/*Video modal */
.nr-video-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    z-index: 11000;
    justify-content: center;
    align-items: center;
}

.nr-video-box {
    background: #000;
    width: 80%;
    max-width: 900px;
    position: relative;
}

.nr-video-container iframe {
    width: 100%;
    height: 500px;
    border: none;
}

.nr-video-close {
    position: absolute;
    top: 10px;
    right: 10px;
    border: none;
    background: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}