/* Announcement Section Styles */
.announcement-section {
    padding: 4rem 0;
    background-color: #f8f9fa; /* Light gray background */
}

.announcement-card {
    background: #fff;
    border: none;
    border-left: 5px solid #13AE6F; /* Primary color accent */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    margin-bottom: 1.5rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    overflow: hidden;
}

.announcement-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.announcement-card-body {
    padding: 1.5rem;
    display: flex;
    align-items: flex-start;
}

.announcement-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background-color: rgba(19, 174, 111, 0.1);
    color: #13AE6F;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-right: 1.25rem;
}

.announcement-content {
    flex-grow: 1;
}

.announcement-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #333;
}

.announcement-text {
    color: #666;
    margin-bottom: 0.75rem;
    line-height: 1.6;
}

.announcement-date {
    font-size: 0.85rem;
    color: #999;
    display: flex;
    align-items: center;
}

.announcement-date i {
    margin-right: 0.4rem;
}

.btn-view-all {
    background-color: #fff;
    color: #13AE6F;
    border: 2px solid #13AE6F;
    padding: 0.6rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-view-all:hover {
    background-color: #13AE6F;
    color: #fff;
    box-shadow: 0 4px 10px rgba(19, 174, 111, 0.3);
}
