.news-list {
    width: 100%;
    box-sizing: border-box;
}
.news-list.highlighted {
    background: #E5F0F8;
}

.news-list .no-results {
    margin-bottom: 25px;
}

.news-list .content-container {
    flex-direction: column;
    flex-wrap: wrap;
}

.news-list .item {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    padding: 15px 0 15px;
    overflow: hidden;
    border-bottom: 2px solid #009CDA;
    gap: 30px;
}

.news-list .image-container {
    display: flex;
    float: left;
    width: 310px;
    height: 100%;
    box-sizing: border-box;
    position: relative;
    justify-content: flex-end;
    border-radius: 10px;
    overflow: hidden;
}

.news-list .image-container image {
    display: inline-block;
    width: auto;
    height: 100%;
    box-sizing: border-box;
}

.news-list .text-container {
    float: left;
    word-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    flex: 1;
    display: flex;
    flex-direction: column;
    padding-top: 10px;
    min-width: 20%;
}

.news-list .fa-arrow-right {
    padding-right: 5px;
}

.news-list .item:last-of-type {
    border-bottom: none;
    padding-bottom: 20px !important;
}

.pageelement-news-list .ai-mark {
    position: absolute;
    bottom: 10px;
    right: 10px;
}

.pageelement-news-list .ai-mark:before {
    content: '';
    background: url(/_images/ai-mark.svg) no-repeat;
    height: 25px;
    width: 25px;
    display: block;
    opacity: 0.4;
}

.news-list .news-list-copyright {
    font-size: 12px;
    opacity: 0.8;
    position: absolute;
    z-index: 1000;
    bottom: -15px;
    color: black;
}

.news-list .text-container .headline-container .headline {
    font-weight: 700;
    font-size: 18px;
    margin-top: 5px;
    margin-bottom: 5px;
    display: inline-block;
    color: #00528c;
}

.news-list .text-container .text {
    box-sizing: border-box;
    font-size: 18px;
    word-break: break-word;
    word-wrap: break-word;
    overflow: hidden;
    max-width: 800px;
    margin-bottom: 8px;
}

.news-list .detail-link {
    display: inline-block;
    color: #FF6347;
    font-size: 18px;
}

.news-list .list-link {
        font-size: 18px;
        color: #FF6347;
        margin-top: 30px;
}

.news-list .list-link::before {
    content: '\f061';
    font-family: 'Font Awesome 6 Pro';
    font-size: 20px;
    margin-right: 8px;
    font-weight: 700;
}

.news-list .ajax-list-load-more {
    display: inline-block;
    background: #00377A;
    color: #fff;
    height: 60px;
    width: 250px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    padding: 20px 10px;
    box-sizing: border-box;
    border-radius: 6px;
    cursor: pointer;
    margin-top: 10px;
}

.news-list .spinner {
    width: 100px;
    height: 100px;
    border: 10px solid rgb(230, 230, 230);
    border-top: 10px solid #00377A;
    border-radius: 50%;
    animation: loading-news-list 1s linear infinite;
    margin-left: calc(50% - 75px);
}


@keyframes loading-news-list {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@media screen and (max-width: 1024px){
    .news-list .image-container {
        width: 35%;
    }
}

@media only screen and (max-width: 800px) {
    .news-list .image-container {
        width: 100%;
        margin: 0 !important;
        float: none;
    }

    .news-list .image-container a {
        width: 100%;
    }

    .news-list .text-container {
        float: none;
        /*margin-top: 15px;*/
        overflow: hidden;
        max-width: 100%;
    }
}