/* Notice container scroll support */
.notice-container {
    max-width: 900px;
    margin: auto;
}

/* Each notice card */
.notice-card {
    background: white;
    border-left: 5px solid #f9d616;
    padding: 20px 25px;
    margin-bottom: 20px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s;
}

.notice-card:hover {
    transform: translateY(-3px);
}

/* Date */
.notice-date {
    font-size: 0.85rem;
    font-weight: 700;
    color: #888;
    margin-bottom: 5px;
}

/* Heading */
.notice-heading {
    font-weight: 800;
    margin-bottom: 8px;
}

/* Content */
.notice-content {
    margin: 0;
    color: #444;
}
