.notice-list {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
}

.notice-item {
    background: white;
    border-radius: 15px;
    padding: 25px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    border: 1px solid rgba(0,0,0,0.05);
}

.notice-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

.notice-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid #f0f0f0;
    position: relative;
}

.notice-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: #2A395A;
}

.notice-header h3 {
    color: #2A395A;
    font-size: 1.3em;
    font-weight: 600;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.notice-header h3::before {
    content: '📢';
    font-size: 1.2em;
}

.notice-date {
    color: #666;
    font-size: 0.9em;
    background: #f8f9fa;
    padding: 5px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.notice-date::before {
    content: '📅';
    font-size: 1.1em;
}

.notice-content {
    color: #444;
    line-height: 1.8;
    padding: 10px 5px;
}

.notice-content p {
    margin: 12px 0;
    padding-left: 20px;
    position: relative;
    transition: transform 0.2s;
}

.notice-content p:hover {
    transform: translateX(5px);
}

.notice-content p::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #2A395A;
    font-weight: bold;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
    .notice-list {
        padding: 10px;
    }
    
    .notice-item {
        padding: 20px;
        margin-bottom: 20px;
    }
    
    .notice-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
    
    .notice-date {
        align-self: flex-end;
    }
}

/* 다크 모드 지원 */
@media (prefers-color-scheme: dark) {
    .notice-item {
        background: #2a2a2a;
        border-color: rgba(255,255,255,0.1);
    }
    
    .notice-header {
        border-bottom-color: #3a3a3a;
    }
    
    .notice-header h3 {
        color: #fff;
    }
    
    .notice-date {
        background: #333;
        color: #ccc;
    }
    
    .notice-content {
        color: #ddd;
    }
    
    .notice-content p::before {
        color: #6d7ba0;
    }
} 