/* Hero section */

.hero {
    margin-top: 60px;
    background: #00273D;
    background: linear-gradient(135deg, rgba(0, 39, 61, 1) 0%, rgba(19, 99, 144, 1) 100%);
    position: relative;
    min-height: 205px;
    padding-top: 66px;
    padding-bottom: 52px;
    z-index: 1;
}

.hero h1 {
    font-size: 24px;
    font-family: 'Inter', 'sans-serif';
    font-weight: 800;
    line-height: 1.3;
    color: #fff;
    text-align: center;
    width: 480px;
    max-width: 100%;
    margin: auto;
}

.hero__background,
.hero__background-rotate {
    position: absolute;
    z-index: -1;
}

.hero__background {
    left: 0;
    bottom: 0;
}

.hero__background-rotate {
    right: 0;
    top: 0;
    transform: rotate(180deg);
    display: none;
}

@media only screen and (min-width: 991px) {
    .hero h1 {
        font-size: 36px;
    }

    .hero__background-rotate {
        display: inline-block;
    }
}

.content__title {
    padding-top: 52px;
    margin-bottom: 12px;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: space-between;
}

.content__title h2 {
    font-size: 24px;
    font-family: 'Inter', 'sans-serif';
    font-weight: 800;
    line-height: 1.3;
    color: #00273D;
}

.filter-placeholder {
    background: #00273D;
    font-size: 16px;
    font-family: 'Inter', 'sans-serif';
    font-weight: 700;
    line-height: 1.3;
    color: #fff;
    border-radius: 20px;
    height: 40px;
    width: 206px;
    cursor: pointer;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
    gap: 22px;
}

.content__content p {
    font-size: 16px;
    font-family: 'Inter', 'sans-serif';
    font-weight: 400;
    line-height: 1.3;
    color: #00273D;
}

@media only screen and (min-width: 991px) {
    .content__title h2 {
        font-size: 36px;
    }

    .content__content p {
        font-size: 24px;
    }
}

/* Filter */

.filter-select {
    position: relative;
    display: inline-block;
    margin-bottom: 20px;
}

.filter-options {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #00273D;
    border: 1px solid #00273D;
    border-radius: 6px;
    margin-top: 4px;
    z-index: 10;
    width: 206px;
    padding: 12px 20px;
}

.filter-options label:last-of-type {
    margin-bottom: 0;
}

.filter-options label {
    display: block;
    padding: 6px 12px;
    cursor: pointer;
    color: #fff;
    font-size: 16px;
    font-family: 'Inter', 'sans-serif';
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 8px;
}

.filter-options input[type="checkbox"] {
    margin-right: 6px;
}

.content {
    margin-bottom: 52px;
}
/* Cards */


.featured-card {
    margin-bottom: 24px;
}

.news-items .big-card .featured-link,
.news-items .featured-link {
    display: flex;
    flex-flow: column;
    align-items: flex-start;
    justify-content: flex-start;
    border-radius: 20px;
    overflow: hidden;
}

.featured-content {
    padding: 28px 34px;
    background: #EFEFEF;
    width: 100%;
}

.featured-date {
    background-color: #EDEDED;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
    height: 35px;
    width: 100%;
    padding: 10px 16px;
    border-radius: 10px;
    margin-bottom: 10px;

    font-size: 12px;
    font-family: 'Inter', 'sans-serif';
    font-weight: 400;
    line-height: 1.3;
    color: #00273D;
}

.news-items .big-card .featured-date {
    color: #fff;
}

.featured-title {
    font-size: 16px;
    font-family: 'Inter', 'sans-serif';
    font-weight: 700;
    line-height: 1.3;
    color: #00273D;
    margin-bottom: 16px;
}

.featured-excerpt {
    margin-bottom: 16px;
    font-size: 14px;
    font-family: 'Inter', 'sans-serif';
    font-weight: 300;
    line-height: 1.3;
    color: #00273D;
}

.featured-button span {
    font-size: 14px;
    font-family: 'Inter', 'sans-serif';
    font-weight: 600;
    line-height: 1.3;
    color: #00273D;
}

.featured-card.big-card .featured-content {
    padding-top: 0;
}

.featured-thumb {
    width: 100%;
    object-fit: cover;
}

.featured-card.big-card .featured-date {
    background: #00273D;
    color: #fff;
    margin-top: -17px;
    z-index: 9;
}

.featured-card.big-card .featured-date svg path {
    fill: #fff;
}

.featured-thumb {
    width: 100%;
}

.featured-thumb img {
    width: 100%;
}

.load-more-wrap {
    width: 100%;
    margin-top: 36px;
}

.load-more {
    width: 100%;
    font-size: 16px;
    font-family: 'Inter', 'sans-serif';
    font-weight: 700;
    line-height: 1.3;
    background: #00273D;
    color: #fff;
    border-radius: 20px;
    height: 40px;
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
    border: 0;
    cursor: pointer;
}

@media only screen and (min-width: 991px) {
    .news__title-holder {
        display: flex;
        flex-flow: row;
        align-items: stretch;
        justify-content: space-between;
    }

    .news__title {
        margin-bottom: 0;
    }

    .news__title h2 {
        font-size: 36px;
    }

    .news__title-holder {
        gap: 34px;
    }

    .news__button-holder {
        flex: 1;
        display: flex;
        flex-flow: row;
        justify-content: flex-end;
        align-items: flex-start;
    }

    .news-items .featured-link {
        flex-flow: row;
    }

    .big-post .featured-thumb img {
        height: 220px;
    }

    .featured-thumb img {
        height: 190px;
        object-fit: cover;
    }

    .featured-content {
        padding: 14px 12px 16px 8px;
    }

    .news-items {
        display: flex;
        flex-flow: row wrap;
        gap: 70px;
        max-width: 704px;
        margin: auto;
    }

    .news-items .featured-link {
        align-items: stretch;
    }

    .featured-card.big-card {
        flex: 0 0 calc(50% - 35px);
    }

    .featured-card {
        grid-column: 2 / span 2;
        margin-bottom: 0;
    }

    .featured-card.big-card .featured-date {
        margin-top: -32px;
    }

    .featured-card.big-card .featured-content {
        padding: 14px 34px 28px 34px;
    }

    .featured-card.big-card .featured-thumb img {
        height: 220px;
    }

    .news-items .big-card .featured-link {
        align-items: stretch;
        height: 100%;
    }

    .featured-card.big-card .featured-content {
        flex: 1;
    }

    .featured-thumb img {
        height: 100%;
        max-height: 220px;
        object-fit: cover;
        aspect-ratio: 2/1;
    }

}

@media only screen and (min-width: 1440px) {
    .news-items {
        max-width: 1200px;
    }

    .featured-card.big-card {
        flex: 0 0 calc(33.33% - 52px);
    }
}