/* --- NEW: Bulletin Board Facelift --- */
#bulletin .card {
    background-color: transparent;
    box-shadow: none;
    padding: 0;
}

#bulletin-board {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.bulletin-item {
    background-color: var(--card-bg);
    border: 1px solid var(--border-color);
    border-left: 5px solid var(--primary-color);
    border-radius: 8px;
    padding: 25px;
    transition: box-shadow 0.3s ease;
}

.bulletin-item:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.bulletin-item > h3 {
    margin-top: 0;
    margin-bottom: 5px;
    color: var(--primary-color);
    font-size: 20px;
}

.bulletin-item .bulletin-date {
    font-size: 0.85em;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 500;
}

.bulletin-item .bulletin-body {
    line-height: 1.7;
    color: var(--text-dark);
}
.bulletin-item .bulletin-body ul {
    list-style-position: inside;
    padding-left: 10px;
}

.bulletin-item .faq-divider {
    border: none;
    border-top: 1px dashed var(--border-color);
    margin: 25px 0;
}

.bulletin-item .bulletin-signature {
    margin-top: 25px;
    font-weight: bold;
    color: var(--text-dark);
    text-align: right;
}