.latest-news-event-promo {
    display: flex;
    width: unset;
}

.latest-news, .event-promo {
    flex: 1;
    background-color: #f5f5f5;
    padding: 70px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.event-promo {
    background-color: #005691;
    color: #ffffff;
}

.section-title {
    font-size: 24px;
    font-weight: bold;
    margin-bottom: 20px;
}

#latestNewsContainer, #eventsPromoContainer {
    display: flex;
    flex-direction: column;
}

.view-all-link {
    display: block;
    margin-top: 20px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: #EACE39;
    transition: color 0.3s ease-in-out;
}

.view-all-link:hover {
    color: #ffa500;
}

/* Individual News/Event Card Styling */
.latest-news-item, .event-promo-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background-color: #f9f9f9; 
    border-radius: 8px;
    transition: box-shadow 0.3s ease-in-out;
}

.event-promo-item {
    background-color: #0044cc; 
    color: #ffffff;
}

.latest-news-item:hover, .event-promo-item:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
}

/* .item-date {
    flex: 0 0 60px;
    height: 60px;
    background-color: #003399;
    color: #ffffff;
    font-size: 14px;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    margin-right: 15px;
} */

.date-month {
    font-size: 12px;
}

.date-day {
    font-size: 20px;
}

.item-description {
    flex: 1;
}

.item-description h3 {
    font-size: 16px;
    font-weight: bold;
    margin: 0;
    margin-bottom: 8px;
    color: inherit; 
}

.item-description p {
    font-size: 14px;
    margin: 0;
    color: #555555;
}

.item-description a {
    font-size: 14px;
    font-weight: bold;
    text-decoration: none;
    color: #003399;
}

.item-description a:hover {
    color: #002080;
}


/* Latest News, Event & Promotion CSS  */
.news-item .news-date, .event-date {
    width: 20%;
    margin: auto;
    margin-left: 20px;
    display: flex;
    justify-content: center;
}


.date-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: #005DA9;
    color: white;
    font-size: 16px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin: 10px 0;
    font-weight: bold;
    flex-direction: column;
    gap: 0px;
}

.event-date .date-circle {
    background-color: #fff;
    color: #005DA9;
}

.date-circle .date-day {
    font-size: 20px;
}

.date-circle .date-month {
    font-size: 16px;
}

.news-item, .event-item {
    display: flex;
    flex-direction: row;
    border: 1px solid #ADADAD;
    border-radius: 12px;
    margin: 10px 0;
    background-color: rgba(216, 216, 216, 0.26);
}


.event-item {
    border: 1px solid #0775C0;
    background-color: rgba(0, 151, 255, 0.26);
}


.news-item .news-desc, .event-desc {
    width: 80%;
    display: flex;
    flex-direction: column;
    margin: 10px 0;
    padding: 30px 30px 30px 10px;
}

.news-item .news-desc h6 {
    font-weight: bold;
    line-height: 24px;
}

.event-item .event-desc h6 {
    line-height: 24px;
}

.news-item .news-desc p, .event-desc p {
    margin: 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 18px;
    color: #154897;
}


.view-details-link, a.view-details-link {
    display: inline-block;
    /* margin: 2.5px; */
    margin: 10px 2.5px 0px 2.5px;
    text-transform: capitalize;
    font-family: gothamrd-medium;
    /* font-size: 12px; */
    font-size: 14px;
    line-height: 15px;
    text-decoration: none;
    color: #EACE39;
}


.view-details-link:hover, a.view-details-link:hover, a.view-details-link:hover {
    color: #ffa500 !important;
    cursor: pointer;
}

button#toggleNewsButton.view-all-link, button#toggleEventsButton.view-all-link {
    border: none;
    text-align: left;
    background: none;
}

@media only screen and (max-width:991px) {
    .latest-news-event-promo {
        display: flex;
        flex-direction: column;
    }

    #latestNewsContainer, #eventsPromoContainer {
        width: 80%;
        margin: auto;
    }

    .section-title, .view-all-link {
        margin-left: 10%;
    }

    /* .news-desc p {
        margin-bottom: 16px;
    } */

    .news-items .news-desc p span {
        display: block;
    }
}

@media only screen and (max-width:684px) {
    .slash {
        display: none;
    }

    .news-desc h6, .author, .website {
        margin-bottom: 3px;
    }

    .news-desc {
        padding: 50px;
    }

    .news-desc h6:nth-child(2) {
        display: flex;
        flex-direction: column;
    }

    .latest-news, .event-promo {
        padding: 30px 5px;
    }

    .news-title {
        font-size: 15px;
        line-height: 20px;
    }
}


@media only screen and (max-width:400px) {
    .news-desc {
        padding: 20px;
    }
}

@media only screen and (max-width:499px) {
    .news-item, .news-desc, .event-desc {
        padding: 30px 20px 30px 20px;
    }
}

@media only screen and (max-width:470px) {
    .news-item .news-date, .event-date {
        margin-left: 20px;
    }
}

@media only screen and (max-width:429px) {
    .news-item .news-date, .event-date {
        width: 30%;
    }

    .news-item .news-desc, .event-desc {
        width: 70%;
    }

    .news-item .news-desc, .event-desc {
        padding: 30px 20px 30px 10px;
    }

}

@media only screen and (min-width:992px) and (max-width:1199px) {
    .line-center, .caption-1 {
        margin-left: 7%;
        margin-right: 7%;
    }
}
