/**
 * features/notification.css — 알림 / 공지 항목 스타일
 * dashboard.css 의 알림 섹션에서 이동
 */

/* ── 공지 카드 알림 항목 ────────────────────────── */
.notice-card .notice-content .notification-item-v2 {
    font-size: 17px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 0;
    padding: 12px 6px;
    background-color: transparent;
    border-radius: 0;
    border-left: none;
    border-bottom: 1px solid #f0f2f5;
    /* 알림 구분선 — 의도된 색상 */
    display: flex;
    align-items: flex-start;
    font-family: var(--font-family);
}

.notice-card .notice-content .notification-item-v2::before {
    content: "·";
    margin-right: 10px;
    font-weight: bold;
    color: var(--info);
}

.notice-card .notice-content .notification-item-v2:last-child {
    border-bottom: none;
}

/* ── 알림 모달 상세 목록 ──────────────────────── */
.notification-full-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 10px 0;
}

.notification-detail-item {
    background: var(--bg-card);
    border-radius: 12px;
    padding: 16px;
    border: 1px solid var(--border-light);
}

.notif-header {
    margin-bottom: 8px;
}

.notif-body {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
    word-break: break-all;
}

/* ── 알림 배지 스타일 ────────────────────────── */
.notif-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    background: #64748b;
}

.notif-badge--critical {
    background: #ef4444;
}

.notif-badge--ai {
    background: #574541;
}

/* ── 소형 모바일 대응 ─────────────────────────── */
@media (max-width: 380px) {
    .notice-card .notice-content .notification-item-v2 {
        font-size: 15px;
    }
}