/* 공지사항 */
.section-box {
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 20px;
    height: 300px; /* Adjust height as needed */
    margin-bottom: 20px;
}
.notice-item {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed #e9ecef;
    padding: 10px 0;
}

.notice-date {
    flex: 0 0 100px;
    white-space: nowrap;
    text-align: right;
    font-variant-numeric: tabular-nums;
}

.notice-text {
    flex: 1 1 auto;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-right: 10px;
}