  .featured-news-section {
    padding: 2rem 0;
}

.feature-date span {
    display: inline-block;
    padding: 0 1rem;
}

.featured-container {
    display: flex;
    gap: 3rem;
    padding: 1rem 0;
    max-width: 1100px;
}

.featured-container img {
    max-width: 200px;
    border-radius: 5px;
}

.featured-container h2 {
    font-size: 2.5rem !important;
    margin-bottom: 2rem !important;
}

.featured-container h2:hover {
    color: #0098D6;
}

.featured-container p {
    font-size: 1.2rem;
    line-height: 1.7em;
    margin-left: 1.2rem;
}

.news-list {
    display: grid;
    grid-template-columns: auto auto auto;
    gap: 1.5rem;
}

.news-list>div {
    background-color: #f6f6f6;
    padding: 1.5rem;
    padding-bottom: 3rem;
    border-radius: 8px;
    position: relative;
}

.news-list h4 {
    font-size: 1.25rem;
    line-height: 1.5em;
    font-weight: 600;
    color: #0a3a5f;
    margin-bottom: 1rem;
}

.news-list h4:hover {
    text-decoration: underline;
    color: #0098D6;
}

.news-list p {
    font-size: 1rem;
    line-height: 1.6em;
}

.news-list .news-date {
    position: absolute;
    bottom: 0px;
    left: 0px;
    background-color: #e9e9e9;
    width: 100%;
    margin: 0;
    padding: .5rem 1.5rem;
    border-radius: 0 0 8px 8px;
    border-top: solid 3px #fff;
}

.news-pagination {
    padding: 1rem 0 2rem 0;
}

.page-item.active .page-link {
    background-color: #0a3a5f;
    border-color: #0a3a5f;
}

.page-link {
    color: #212529;
}

.page-item:not(.active):hover .page-link {
    color: #0a3a5f !important;
}

@media (max-width: 768px) {
    .featured-news-section {
        padding: 2rem 0 1rem 0;
    }

    .feature-date {
        padding-left: 1.4rem;
        font-size: 1.2rem;
    }

    .feature-date strong {
        display: block;
    }

    .feature-date span {
        display: none;
    }

    .featured-container {
        display: block;
    }

    .featured-container img {
        margin: 0 0 2rem 1.4rem;
        max-width: 100%;
    }

    .featured-container h2 {
        font-size: 1.5rem !important;
        line-height: 1.4em;
    }

    .featured-container p {
        font-size: 1.1rem;
        margin-bottom: 0px;
    }

    .news-list {
        grid-template-columns: auto;
    }
}