/* ===== ANNOUNCEMENTS PAGE ===== */

.announcements-sec h3 {
    font-size: 1.9rem;
    font-weight: 600;
    color: #212529;
    

}

/* --- List Container --- */
.announcements-section {
    padding-bottom: 60px;
}

.announcements-list {
    max-width: 820px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* --- Single Item --- */
.announcement-item {
    display: flex;
    align-items: center;
    gap: 18px;
    background: #ffffff;
    border-radius: 14px;
    padding: 18px 22px;
    text-decoration: none;
    border: 1px solid rgba(34, 153, 97, 0.12);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    border-left: 5px solid #229961;
}

.announcement-item:hover {
    transform: translateX(6px);
    box-shadow: 0 8px 28px rgba(34, 153, 97, 0.15);
    border-left-color: #00B4B4;
}

/* --- Icon --- */
.ann-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: #e8f5ee;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #229961;
    transition: background 0.28s ease, color 0.28s ease;
}

.announcement-item:hover .ann-icon {
    background: #229961;
    color: #ffffff;
}

/* --- Body --- */
.ann-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.ann-badge {
    display: inline-block;
    background: #00B4B4;
    color: white;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 2px 10px;
    border-radius: 20px;
    width: fit-content;
}

.ann-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a2e;
    margin: 0;
    line-height: 1.5;
}

.announcement-item:hover .ann-title {
    color: #229961;
}

/* --- Arrow --- */
.ann-arrow {
    flex-shrink: 0;
    color: #c0c0c0;
    transition: color 0.28s ease, transform 0.28s ease;
}

.announcement-item:hover .ann-arrow {
    color: #229961;
    transform: translateX(4px);
}

/* --- Responsive --- */
@media (max-width: 768px) {
    .announcements-sec h2 {
        font-size: 1.6rem;
    }

    .announcement-item {
        padding: 15px 16px;
        gap: 14px;
    }

    .ann-title {
        font-size: 0.92rem;
    }

    .ann-icon {
        width: 40px;
        height: 40px;
    }
}
