.latest-news {
    max-width: 1300px;
    margin: 1rem 1rem;
    height: 27rem;
}

.latest-news .left-column {
    height: 50%;
}

.latest-news-image {
    width: 100%;
    height: 100%;
}

.latest-news .right-column {
    height: 50%;
}

.latest-news-title,
.latest-news-date,
.latest-news-description {
    margin: 0;
}

.latest-news-title,
.latest-news-date {
    color: #28af60;
}

.latest-news-title-link {
    text-decoration: none;
    color: #28af60;
}

.latest-news-details {
    overflow-y: scroll;
    height: 90%;
}

.latest-news-description {
    /* display: inline; */
    margin-bottom: 1rem;
    text-align: justify;
}

.latest-news-posted-by {
    margin: 0;
}

.latest-news .read-more {
    text-decoration: none;
    font-weight: bold;
    color: #28af60;
    font-size: 0.75rem;
}

.other-news {
    max-width: 1300px;
    margin: 1rem 1rem;
}

.other-news-title {
    margin: 0;
    text-align: center;
    color: #28af60;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.other-news .left-column,
.other-news-item-description {
    display: none;
}

.other-news-item-title {
    margin: 0;
    color: #28af60;
    font-size: 1.25rem;
}

.other-news-item-title-link {
    text-decoration: none;
    color: #28af60;
}

.other-news-item-date {
    margin: 0;
    color: #28af60;
    font-size: 1rem;
}

.other-news-item-description {
    text-align: justify;
}

.page-container {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
}

.page {
    display: block;
    text-decoration: none;
    text-align: center;
    color: #0f5300;
    border: 1px solid #0f5300;
    background-color: white;
    width: 1.25rem;
    height: 1.25rem;
    font-weight: bold;
}

.page.active {
    color: white;
    background-color: #0f5300;
}
/* Tablet design */

@media(min-width: 768px) {
    .latest-news {
        height: 100%;
    }

    /* .latest-news .left-column {
        height: 70%;
    }

    .latest-news .right-column {
        height: 30%;
    } */

    .latest-news-details {
        overflow-y: scroll;
    }
}

/* Desktop design */

@media(min-width: 992px) {
    .latest-news {
        display: flex;
        height: 22rem;
        margin: 1rem auto;
    }

    .latest-news .left-column {
        height: 100%;
        width: 40%;
        order: 0;
        margin-left: auto;
        margin-right: 2rem;
    }

    .latest-news .right-column {
        height: 100%;
        width: 40%;
        order: 1;
        margin-right: auto;
    }

    .other-news {
        margin: 1rem auto;
    }

    .other-news-item {
        display: flex;
        height: 8.5rem;
    }

    .other-news-item .left-column {
        order: 0;
        display: block;
        width: 20%;
        margin-left: auto;
        margin-right: 1rem;
    }

    .other-news-item-image {
        width: 100%;
        height: 100%;
    }

    .other-news-item .right-column {
        order: 1;
        width: 70%;
        margin-right: auto;
        text-overflow: ellipsis;
        overflow: hidden;        
    }

    .other-news-item-description {
        display: inline;
    }
}


