﻿body {
}

.notice-box {
    height: 220px !important;
    overflow: hidden;
}

.notice-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

    .notice-list li {
        border-bottom: 1px solid #e5e5e5;
    }

.notice-link {
    display: flex;
    /*    justify-content: space-between;*/
    align-items: center;
    width: 100%;
    padding: 14px 2px; /* 높이 줄이는 핵심 */
    text-decoration: none;
    color: #333;
    box-sizing: border-box;
    gap: 10px;
    line-height: 1.2;
}

    .notice-link:hover {
        background: #f7f7f7;
    }

.notice-subject {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
    font-size: 14px;
}

.notice-date {
    flex-shrink: 0;
    color: #888;
    font-size: 14px;
}