/* ----- ANNOUNCEMENT CONTENT ----- */
#announcement-list {
    min-height: 80vh;
}

.announcement-container {
    display: flex;
    flex-direction: column;
    /*     gap:1em; */
}

.announcement-item {
    display: flex;
    gap: 1.5em;
    padding: 4em 0;
    border-top: 1px solid #E8E8E8;
}


.announcement-item.active-first {
    border-top: 0;
}

.announcement-image {
    width: 28vw;
    max-width: 350px;
    min-width: 250px;
    height: 15vw;
    max-height: 250px;
    min-height: 180px;
    /*     width: 350px;
    height: 200px; */
}

.announcement-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.announcement-content {
    height: 15vw;
    max-height: 250px;
    min-height: 180px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.announcement-text h3 {
    color: #182E18;
    font-weight: 700 !important;
}

.announcement-text h4 {
    color: #182E18;
}

.announcement-meta {
    display: flex;
    justify-content: space-between
}

.announcement-date {
    color: #182E18;
    margin: 0 !important;
}

.announcement-meta .read-more {
    color: #F78E1E;
    font-weight: 700;
    display: inline-block;
    margin-top: -.2em;
}

/* ----- PAGINATION ----- */

#announement-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .5em;
    margin-top: 1em;
}

#announement-pagination .page-nav {
    background-color: transparent;
    border: 0;
    color: #F78E1E;
    font-size: 1.2em;
    cursor: pointer;
}

#announement-pagination .page-link {
    background-color: #fff;
    border: 0;
    border-radius: 5px;
    padding: .4em .9em;
    font-size: clamp(.9rem, 1.1vw, 1rem) !important;
    color: #F78E1E;
    cursor: pointer;
    display: block;
}

#announement-pagination .page-link.active {
    background-color: #F78E1E;
    color: #fff;
    font-weight: 500;
}

/* TABLET */
@media(max-width:980px) {}

/* MOBILE */
@media(max-width:767px) {

    /* ----- ANNOUNCEMENT CONTENT ----- */
    .announcement-item {
        flex-direction: column;
        padding: 2em 0;
    }

    .announcement-image {
        width: 100%;
        max-width: 100%;
        height: 50vw;
        max-height: 500px;
    }

    .announcement-content {
        display: block;
        height: auto !important;
    }

    /* .announcement-text {
    text-align: center
}
 */
    .announcement-meta {
        margin-top: 2em;
    }
}