/* news_list.css */

/* MAIN HEADER */
.content .title {
    margin-top: 60px;
    margin-bottom: 20px;
}

.content .title h1 {
    font-weight: 500;
    font-style: Medium;
    font-size: 64px;
    line-height: 100%;
    color: #1E55A8;
    margin: 0;
}

/* THEMES */
.themes {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 60px;
}

.themes button {
    height: 50px;
    box-sizing: border-box;
    border-radius: 15px;
    padding: 16px 25px 14px 25px;
    font-weight: 400;
    font-style: Regular;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 2%;
    text-align: center;
    background-color: transparent;
    border: #B8B4C9 solid 1px;
    color: #B8B4C9;
}

.themes button.active {
    border-width: 0;
    background-color: #1E55A8;
    color: #FFFFFF;
}

.more_news .more_news_button.disabled {
    color: #B8B4C9;
}

.more_news .more_news_button.disabled:hover {
    color: #B8B4C9;
    background-color: transparent;
    cursor: default;
}

.themes button:hover {
    border-color: #1E55A8;
    color: #1E55A8;
    cursor: pointer;
    transition: all 0.25s ease;
}

.themes button.active:hover {
    background-color: #174585;
    color: #FFFFFF;
}


@media screen and (max-width:1900px) {
    /* THEMES */
    .themes {
        display: flex;
        flex-wrap: wrap;
        gap: 5px;
        margin-bottom: 60px;
    }



    /* MORE BUTTON */
}

@media screen and (max-width:1400px) {
    /* MAIN HEADER */
    .content .title {
        margin-top: 40px;
        margin-bottom: 20px;
    }

    .content .title h1 {
        font-size: 48px;
    }

    /* THEMES */
    .themes {
        margin-bottom: 40px;
    }
}

@media screen and (max-width:768px) {
    /* MAIN HEADER */
    .content .title {
        margin-top: 10px;
        margin-bottom: 10px;
    }

    .content .title h1 {
        font-size: 48px;
    }

    /* THEMES */
    .themes {
        margin-bottom: 20px;
    }

    .themes button {
        height: 45px;
        padding: 15px;
        font-size: 12px;
    }
}