.news-large {
    padding: 30px 5% 60px 5%;
}

.news-large * {
    box-sizing: border-box;
}

.no-results {
    font-size: clamp(20px, 2.5vw, 36px);
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.72px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;

    padding: 60px 30px;
}

.news-large .news-large__head {
    text-align: center;
    font-size: clamp(30px, 2.5vw, 41px);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-bottom: 40px;
}

.news-large .news-large__title {
    font-size: clamp(20px, 2.5vw, 36px);
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.72px;
}

.news-large .news-large__props {
    padding: 20px 0 30px 0;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 25px;
    row-gap: 10px;
}
.news-large .news-large__props-date {
    position: relative;
    padding: 0 0 0 22px;
}
.news-large .news-large__props-date::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 17px;
    height: 17px;
    background-image: url(/images/icons/tms_calendar.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.news-large .news-large__props-tag {
    position: relative;
    padding: 0 0 0 22px;
}
.news-large .news-large__props-tag::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 17px;
    height: 17px;
    background-image: url(/images/icons/tms_tag.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.news-large .news-large__image {
    margin-bottom: 35px;
}

.news-large .news-large__image img {
    display: block;
    margin: 0 auto;
}

.news-large .news-large__content {
    margin-bottom: 15px;
}

.news-large .news-large__content p {
    line-height: 160%;
}

/* text to wrap image around */
.news-large__content-par {
    line-height: 20px;
    text-align: justify;
    line-height: 160%;
}

.news-large__content-par__title {
    font-size: clamp(18px, 2.5vw, 30px);
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    letter-spacing: 0.72px;
    color: #00b0f0;
    margin-bottom: 10px;
    margin-top: 25px;
}

.news-large__content-par img {
}

.news-large__content-par::after {
    content: '';
    display: table;
    clear: both;
}

.news-large__content-par.news-large__content-par--left img {
    float: left;
    width: 50%;
    margin-right: 20px;
    margin-top: 10px;
}

.news-large__content-par.news-large__content-par--right img {
    float: right;
    width: 50%;
    margin-left: 20px;
    margin-top: 10px;
}

.news-large__content-par.news-large__content-par--center img {
    float: none;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    margin-top: 10px;
}

.news-large__content-par.news-large__content-par--center img {
    display: block;
    margin: 15px auto 20px auto;
}

.news-large .news-large__link {
    display: inline-flex;
}

.news-large .news-large__link-more {
    display: flex;
    width: max-content;
    margin: 25px auto 0 auto;
    background-color: #00b0f0;
    border-radius: 5px;
    text-align: center;
    color: #fff;
    text-decoration: none;
    font-size: 10pt;
    padding: 15px 20px;
    text-transform: uppercase;
    transition: 0.2s ease;
}

.news-large .news-large__link-more:hover {
    background-color: #fff;
    color: #2d2e31;
}

.news-large__content-par__files {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    column-gap: 15px;
    row-gap: 10px;
    padding: 20px 0;
}

.news-large__content-par__files a {
    position: relative;
    display: flex;
    align-items: center;
    color: #fff;
    text-decoration: none;
    /* border: 1px solid #fff; */
    min-height: 60px;
    padding: 20px;
    padding-left: 60px;
    transition: 0.3s ease;
}

.news-large__content-par__files a:hover {
    background-color: #00b0f049;
}

.news-large__content-par__files a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background-image: url(/images/icons/tms_pdf.png);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

/* NEWS SEARCH START */
.news-search {
    padding: 30px;
    background-color: #f0f1f3;
    margin: 0 5%;
    display: flex;
    flex-direction: column;
}

.news-search * {
    box-sizing: border-box;
}
.news-search__actions {
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 50px;
    row-gap: 15px;
}
.news-search__wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    column-gap: 10px;
}

.news-search__input-wrapper {
    position: relative;
}

.news-search__input-wrapper button {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 25px;
    background-color: transparent;
    border: 0;
    cursor: pointer;
}
.news-search .news-search__input-wrapper input {
    padding-right: 30px;
}

.news-search label {
    white-space: nowrap;
}

.news-search select,
.news-search input {
    width: 100%;
    padding: 5px 15px;
    background-color: #fff;
    border: 1px solid #c1c1c1;
    color: #000;
    min-width: 250px;
}

.news-search__socials {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    column-gap: 10px;
    row-gap: 10px;
    /* flex: 1; */
    /* margin-top: 15px; */
}
.news-search__socials a {
    width: 27px;
    height: 27px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 10px !important;
    
}

/* @media (max-width: 1240px) {
    .news-search__actions {
        flex-direction: column;
    }
} */

@media (max-width: 1240px) {
    .news-search__actions {
        flex-direction: column;
        align-items: flex-start;
    }
    .news-search__wrapper {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        row-gap: 5px;
    }
    .news-search__input-wrapper {
        width: 100%;
    }
}
/* NEWS SEARCH END */

/* NEWS GRID START*/
.news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 25px;
    column-gap: 25px;
    padding: 0 5% 80px 5%;
}

.news-grid__item {
    display: flex;
    flex-direction: column;
    row-gap: 20px;
    border: 1px solid #979696;
    transition: 0.2s ease;
    padding: 16px;
}

.news-grid__item:hover {
    border: 1px solid #fff;
}

.news-grid__item-image {
    display: flex;
}

.news-grid__item-image img {
}

.news-grid__item-date {
    position: relative;
    padding-left: 25px;
}

.news-grid__item-date::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    background-image: url(/images/icons/tms_calendar.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.news-grid__item-title {
    color: #000;
    font-size: clamp(14px, 1.5vw, 18px);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    letter-spacing: 0.36px;
    text-transform: uppercase;
}

.news-grid__item-text {
    color: #000;
    font-size: clamp(14px, 1.5vw, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: 150%; /* 24px */

    /* maximum 4 lines */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-grid__load {
    grid-column: 1/-1;
    display: flex;
    width: max-content;
    margin: 25px auto 0 auto;
    background-color: #00b0f0;
    border-radius: 5px;
    border: 0;
    text-align: center;
    color: #000;
    text-decoration: none;
    font-size: 10pt;
    padding: 15px 20px;
    text-transform: uppercase;
    transition: 0.2s ease;
    cursor: pointer;
    position: relative;
}

.news-grid__load:hover {
    background-color: #fff;
    color: #2d2e31;
}

/* loading animation */
.news-grid__load.news-grid__load--loading::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #00b0f0;
    border-radius: 5px;
    pointer-events: none;
}
.news-grid__load.news-grid__load--loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    border: 2px solid #fff;
    border-top-color: transparent;
    animation: spin 1s linear infinite;

    pointer-events: none;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@media (max-width: 835px) {
    .news-grid {
        column-gap: 10px;
    }
    .news-grid__item {
        padding: 5px;
    }
}

@media (max-width: 600px) {
    .news-grid {
        grid-template-columns: repeat(1, 1fr);
    }
    .news-grid__item {
        padding: 10px;
    }
}
/* NEWS GRID END*/

/* NEWS SINGLE START */
.news-single {
    display: grid;
    grid-template-columns: 400px 1fr;
    column-gap: 10px;
    padding: 0 5% 80px 5%;
}

.news-single__aside {
    position: relative;
}

.news-single__aside-inner {
    position: sticky;
    top: 100px;

    max-height: calc(100vh - 100px);
    overflow: auto;
    padding-right: 25px;
}

.news-single__aside-inner::-webkit-scrollbar {
    width: 5px;
}

.news-single__aside-inner::-webkit-scrollbar-track {
    box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.3);
}

.news-single__aside-inner::-webkit-scrollbar-thumb {
    background-color: #00b0f0;
    outline: 1px solid #00b0f0;
}

.news-single .news-search {
    margin: 0;
    margin-bottom: 30px;
    padding: 0;
    background-color: transparent;
}
.news-single .news-search__actions {
    flex-direction: column;
    align-items: flex-start;
}
.news-single .news-search__wrapper {
    flex-direction: column;
    align-items: flex-start;
    row-gap: 5px;
    width: 100%;
}
.news-single .news-search__input-wrapper {
    width: 100%;
}

.news-single__categories {
    margin-bottom: 40px;
}

.news-single__categories ul {
    list-style: none;
    padding: 0;
}

.news-single__categories ul li a {
    display: flex;
    justify-content: space-between;
    column-gap: 30px;
    text-decoration: none;
    margin-bottom: 5px;
    transition: 0.2s ease;
}

/* .news-single__categories ul li a:hover {
    color: #fff;
} */

.news-single__title {
    /* color: #fff; */
    font-feature-settings: 'clig' off, 'liga' off;
    font-size: clamp(18px, 2vw, 26px);
    font-style: normal;
    font-weight: 500;
    line-height: 120%; /* 31.2px */
    margin-bottom: 17px;
}

.news-single__recent {
}

.news-single__recent .news-single__recent-item {
    /* color: #fff; */
    text-decoration: none;
    display: grid;
    grid-template-columns: 115px 1fr;
    column-gap: 20px;
    margin-bottom: 20px;
}

.news-single__recent-item__image {
    aspect-ratio: 16/9;
}
.news-single__recent-item__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-single__recent-item__texts {
}

.news-single__recent-item__title {
    padding: 0;
    margin-bottom: 10px;
}

.news-single__recent-item__date {
    position: relative;
    padding-left: 25px;
}

.news-single__recent-item__date::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    background-image: url(/images/icons/tms_calendar.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

.news-single .news-single__back {
    /* color: #fff; */
    text-decoration: none;

    display: flex;
    column-gap: 5px;
    align-items: center;

    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.36px;
    text-transform: uppercase;
    margin-bottom: 20px;

    transition: 0.2s ease;
}

.news-single .news-single__back:hover {
    color: #00b0f0;
}

.news-single .news-large {
    margin: 0;
    padding: 0;
}

.news-single__footer {
    border-top: 1px solid #979696;
    padding: 45px 0;
    margin-top: 100px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    column-gap: 50px;
    position: relative;
}

.news-single__footer-share {
    display: flex;
    align-items: center;
    column-gap: 20px;
    text-transform: uppercase;
    color: #00b0f0;
    position: absolute;
    top: -50px;
}

.news-single__footer-share button {
    background-color: transparent;
    border: none;
    cursor: pointer;
}

.news-single__footer a:nth-child(odd) {
    text-align: right;
}
.news-single__footer a:nth-child(odd) .news-single__footer-item__title {
    justify-content: flex-end;
}

.news-single .news-single__footer-item {
    display: block;
    color: #fff;
    flex: 1 1 40%;
    text-decoration: none;
}

.news-single .news-single__footer-item:hover .news-single__footer-item__title {
    color: #00b0f0;
}

.news-single__footer-item__title {
    display: flex;
    align-items: center;
    column-gap: 10px;
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
    letter-spacing: 0.36px;
    text-transform: uppercase;
    margin-bottom: 10px;
    transition: 0.2s ease;
}

.news-single__footer-item__text {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 5px;
    font-size: 14px;
    line-height: 160%;
}

.news-single__footer-item__date {
    position: relative;
    padding-left: 25px;
    font-size: 12px;
    letter-spacing: 0.24px;
}

.news-single__footer-item__date::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 15px;
    height: 15px;
    background-image: url(/images/icons/tms_calendar.svg);
    background-repeat: no-repeat;
    background-size: contain;
    background-position: center;
}

@media (max-width: 1300px) {
    .news-single {
        grid-template-columns: 280px 1fr;
        column-gap: 30px;
    }

    .news-single__recent .news-single__recent-item {
        grid-template-columns: 70px 1fr;
    }
}

@media (max-width: 900px) {
    .news-single {
        grid-template-columns: 1fr;
        row-gap: 30px;
    }

    .news-single__aside {
        display: none;
    }
}

@media (max-width: 500px) {
    .news-large__content-par .news-large__content-par--right,
    .news-large__content-par .news-large__content-par--left,
    .news-large__content-par .news-large__content-par--center {
        width: 100%;
        margin: 10px 0;
    }
}

/* NEWS SINGLE END */
