@charset "UTF-8";
@import 'https://fonts.googleapis.com/css?family=Amiri';

.news-wrap {
    width: 80%;
    margin-left: auto;
    margin-right: auto;
    max-width: none;
    padding: 105px 20px 78px 20px;
}

.news-container {
    display: flex;
}

.news-headline {
    text-align: left;
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
    font-family: "adobe-garamond-pro", serif;
    display: inline-block;
    position: relative;
    padding-top: 20px;
}

.news-date {
    font-size: 14px;
    width: 120px;
}

.news-headline:before {
    position: absolute;
    content: "";
    width: 90px;
    height: 2px;
    background-color: rgba(0, 35, 104, 1);
    left: 0;
    top: 5px;
}

.news-list {
    width: 80%;
    margin-left: auto;
}

.news-items {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid rgba(216, 216, 216, 1);
}

.news-item {
    padding: 20px 0px;
    display: flex;
    gap: 40px;
    border-top: 1px solid rgba(216, 216, 216, 1);
}

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

.news-content p {
    font-size: 16px;
}

.news-content a {
    text-decoration: none;
}

.news-category {
    width: 100%;
}

.news-pill {
    padding: 4px 6px;
    border: 1px solid rgba(216, 216, 216, 1);
    border-radius: 3px;
    font-size: 13px;
    line-height: 28px;
}

.news-wrap .news-link {
    padding: 20px 0 10px 0;
    width: 150px;
    display: flex;
    position: relative;
    justify-content: center;
    color: #003399;
    text-decoration: none;
    margin-left: auto;
    margin-top: 20px;
    cursor: pointer;
    border-bottom: 1px solid rgba(216, 216, 216, 1);
    gap: 15px;
}

.news-wrap .news-link span {
    font-family: 'Jost', sans-serif;
    font-weight: 500;
    font-size: 18px;
}

.news-wrap .news-link:hover {
    color: rgb(0, 187, 255);
}

.news-link span {
    right: 10px;
}

@media screen and (max-width: 1920px) {
    .news-wrap {
        width: 100% !important;
        padding-left: 64px !important;
        padding-right: 64px !important;
        max-width: 1568px;
        margin: 0 auto;
    }
}

@media screen and (max-width: 980px) {
    .news-wrap {
        width: 100%;
        padding: 47px 20px 30px 20px!important;
    }

    .news-container {
        display: block !important;
    }

    .news-headline {
        font-size: 26px;
    }

    .news-headline:before {
        width: 36px;
    }

    .news-item {
        flex-direction: column;
        gap: 10px;
        padding: 16px 0;
    }

    .news-pill {
        min-width: max-content !important;
        box-sizing: border-box;
        font-size: 13px;
    }

    .news-list {
        width: 100%;
    }

    .news-content p {
        font-size: 14px;
    }

    .news-wrap .news-link {
        padding: 5px 0;
        font-size: 16px;
        margin-right: auto;
    }

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