/* home.css - Homepage specific styles */
.announcements {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.announcement-card {
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 20px;
}