.announcements {
    margin-top: 70px;
    padding-top: 30px;
    border-top: 1px solid rgba(0,0,0,0.08);
}

/* HEADER */
.announcements-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.announcements-header h2 {
    font-size: 28px;
    font-weight: 700;
    position: relative;
    padding-bottom: 10px;
}

.resources-line {
    width: 60px;
    height: 3px;
    background: #1a6b8a;
    border-radius: 2px;
}

.announcements-header h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #1a6b8a;
    border-radius: 2px;
}

.announcements-header a {
    font-size: 14px;
    color: #2c7be5;
    text-decoration: none;
    transition: 0.2s;
}

.announcements-header a:hover {
    opacity: 0.7;
}

/* LIST */
.announcements-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

/* ITEM */
.announcement-item {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    border-radius: 14px;
    background: #ffffff;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.25s ease;

    box-shadow: 0 6px 18px rgba(0,0,0,0.06);
}

/* hover как у карточек */
.announcement-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 26px rgba(0,0,0,0.12);
}

/* DATE */
.announcement-date {
    font-weight: 700;
    font-size: 14px;
    color: #2c7be5;
    background: rgba(44,123,229,0.1);
    padding: 6px 10px;
    border-radius: 8px;
    margin-right: 16px;
    min-width: 55px;
    text-align: center;
}

/* CONTENT */
.announcement-content {
    flex: 1;
}

.announcement-content h3 {
    font-size: 16px;
    margin: 0 0 4px;
    font-weight: 600;
}

.announcement-content p {
    font-size: 13px;
    opacity: 0.65;
    margin: 0;
}

/* ARROW */
.announcement-arrow {
    margin-left: 15px;
    font-size: 18px;
    color: #2c7be5;
    transition: transform 0.25s ease;
}

.announcement-item:hover .announcement-arrow {
    transform: translateX(5px);
}

.announcement-item {
    opacity: 0;
    transform: translateY(15px);
    animation: fadeUp 0.5s forwards;
}

.announcement-item:nth-child(1) { animation-delay: 0.1s; }
.announcement-item:nth-child(2) { animation-delay: 0.2s; }
.announcement-item:nth-child(3) { animation-delay: 0.3s; }
.announcement-item:nth-child(4) { animation-delay: 0.4s; }

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}