
    .royal-notice-event-wrap {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-bottom: 18px;
    }
    .royal-ne-section {
        background: #fcfcfc;
        border: 1px solid #dde3e9;
        border-radius: 10px;
        overflow: hidden;
        margin-bottom: 0;
        display: flex;
        flex-direction: column;
    }
    /* head: home.css 의 기본 가운데 정렬 + ::before/::after 그라데이션 라인을 그대로 사용 */
    .royal-ne-section .royal-section-head {
        padding: 14px 14px 6px;
        margin-bottom: 0;
    }
    /* 카드 안에서는 별 아이콘(::after) 자동 추가 끄기 */
    .royal-ne-section .royal-section-title::after { content: none !important; }
    .royal-ne-title-head {
        display: inline-flex;
        align-items: center;
        gap: 8px;
    }
    .royal-ne-title-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: inherit;
        text-decoration: none;
        transition: color 0.15s;
    }
    .royal-ne-title-link:hover { color: #1ea459; }
    .royal-ne-icon-notice { color: #1ea459; display: inline-flex; align-items: center; }
    .royal-ne-icon-event  { color: #a16207; display: inline-flex; align-items: center; }
    /* 더보기 패널: home.css 기본을 카드 내부용으로 조정 */
    .royal-ne-section .royal-section-more-panel {
        padding: 0 14px 8px;
    }
    .royal-ne-section .royal-section-more-panel .royal-section-more {
        font-size: 13px;
        color: #64748b;
    }
    .royal-ne-section .royal-section-more-panel .royal-section-more:hover { color: #1ea459; }
    .royal-ne-list {
        list-style: none;
        margin: 0;
        padding: 6px 0;
        flex: 1;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
    .royal-ne-item { border-bottom: 1px solid #eaedf1; }
    .royal-ne-item:last-child { border-bottom: none; }
    .royal-ne-link {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 8px 14px;
        text-decoration: none;
        transition: background 0.12s;
    }
    .royal-ne-link:hover { background: rgba(30, 164, 89, 0.06); }
    /* 공지/이벤트 뱃지는 글로벌 .notice-badge / .notice-badge.badge-event 사용 (전역 통일) */
    .royal-ne-title {
        flex: 1;
        min-width: 0;
        overflow: hidden;
        text-overflow: ellipsis;
        white-space: nowrap;
        font-size: 13px;
        color: #333333;
    }
    .royal-ne-link:hover .royal-ne-title { color: #1ea459; }
    .royal-ne-cmt {
        color: #888888;
        font-size: 11px;
        margin-left: 4px;
    }
    .royal-ne-date {
        flex-shrink: 0;
        font-size: 11px;
        color: #64748b;
    }
    .royal-ne-empty {
        padding: 8px 14px;
        font-size: 13px;
        color: #64748b;
    }
    @media (max-width: 768px) {
        .royal-notice-event-wrap {
            grid-template-columns: 1fr;
            gap: 10px;
        }
        .royal-ne-title { font-size: 12px; }
    }
    