/* MAIN NEWS PAGE FORMATTING, INDIVIDUAL PAGE FORMATTING BELOW */
/* ---------------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------- */
.single-news-container {
    display: flex;
    flex-direction: column;
    max-width: 1200px;
    z-index: 2;
    padding-bottom: 100px;
    margin: auto;
}

/* container for image on the right, text on the left section */
.single-news-item {
    margin: 60px auto;
    display: flex;
    flex-direction: row-reverse;
    width: min(75vw, 1200px);
    height: auto;
    justify-content: space-between;
    align-items: center;
    gap: 5%;
    overflow: hidden;
}
.individual-news-content a{
    color: #cd162c;
}

.news-text {
    display: flex;
    flex-direction: column;
    width: 50%;
    gap: 10px;
}

.single-news-thumbnail {
    width: 45%;
    height: 250px;
    /* Or whatever fixed height you want */
    overflow: hidden;
    position: relative;
}

.single-news-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    /* Helps eliminate small gaps */
}


.single-news-title a {
    color: rgba(20, 71, 56, 0.8);
}

.single-news-date {
    color: rgba(20, 71, 56, 0.8);
}


/* PHONE */
@media (max-width: 767px) {
    .single-news-item {
        flex-direction: column;
        padding: 8vw 4vw;
        width: 100%;
        margin: auto;
    }

    .single-news-thumbnail {
        width: 100%;
        padding-bottom: 10px;
    }

    .news-text {
        width: 100%;
    }
}

/* INDIVIDUAL PAGE FORMATTING */
/* ---------------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------------------- */
/* container for image on the right, text on the left section */
.individual-news-item {
    display: flex;
    padding: 100px 40px;
    margin: auto;
    flex-direction: column;
    max-width: 1200px;
    overflow: hidden;
}

.individual-news-text {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 10px;
}

.individual-news-date {
    color: rgba(20, 71, 56, 0.8);
}

.individual-news-content p {
    display: flex;
    flex-direction: column;
    padding: 5px 0px;
}