/* --------------------
 News
-------------------- */
.news {
    margin: 0 0 100px;
    padding: 60px 0 0;
}

@media (min-width: 768px) {
    .news {
        padding: 70px 0 0;
    }
}

.news-container {
    margin: 0 auto;
    max-width: 1020px;
    padding: 0 20px;
    width: 100%;
}

@media (min-width: 768px) {
    .news-container {
        padding: 0 30px;
    }
}

.news__menu {
    align-items: stretch;
    display: flex;
    flex-flow: row wrap;
    gap: 8px;
    justify-content: space-between;
    margin: 0 0 20px;
}

@media (min-width: 768px) {
    .news__menu {
        margin: 0 0 25px;
    }
}

.news__menu__item {
    width: calc(50% - 4px);
}

@media (min-width: 768px) {
    .news__menu__item {
        flex-grow: 1;
        width: auto;
    }
}

.news__menu__item button {
    -webkit-appearance: none;
    appearance: none;
    background: none;
    background-color: rgba(var(--color-theme-rgb), 0.05);
    border: 0;
    border-bottom: 2px solid rgba(var(--color-theme-rgb), 0.4);
    border-radius: 0;
    color: var(--color-theme);
    font-size: var(--fs14);
    font-weight: 700;
    height: 40px;
    letter-spacing: 0.3em;
    line-height: 1.2;
    margin: 0;
    padding: 0 0 0 0.6em;
    text-align: center;
    transition: background-color 0.35s cubic-bezier(0.645, 0.045, 0.355, 1) 0s, color 0.35s cubic-bezier(0.645, 0.045, 0.355, 1) 0s, border-bottom-color 0.35s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    width: 100%;
}

@media (min-width: 768px) {
    .news__menu__item button {
        background-color: transparent;
        border-radius: 16px 16px 0 0;
    }
}

@media (min-width: 992px) {
    .news__menu__item button {
        font-size: var(--fs16);
    }
}

.news__menu__item button:focus {
    background-color: var(--color-theme);
    border-bottom-color: var(--color-theme);
    color: #fff;
}

@media (hover: hover) and (pointer: fine) {
    .news__menu__item button:hover {
        background-color: var(--color-theme);
        border-bottom-color: var(--color-theme);
        color: #fff;
    }
}

.news__menu__item button.-active {
    background-color: var(--color-theme);
    border-bottom-color: var(--color-theme);
    color: #fff;
}

.news__list {
    margin: 0 0 80px;
}

@media (min-width: 768px) {
    .news__list {
        margin: 0 0 100px;
    }
}

.news__list__item {
    border-bottom: 1px solid rgba(var(--color-theme-rgb), 0.4);
}

.news__list__item__link {
    align-items: center;
    color: inherit;
    display: flex;
    flex-flow: row wrap;
    gap: 10px;
    height: 100%;
    justify-content: flex-start;
    padding: 20px 0;
    text-decoration: none;
    transition: opacity 0.35s cubic-bezier(0.645, 0.045, 0.355, 1) 0s;
    width: 100%;
}

@media (min-width: 768px) {
    .news__list__item__link {
        flex-flow: row nowrap;
        gap: 20px;
        padding: 20px 8px;
    }
}

.news__list__item__link:focus {
    opacity: 0.65;
}

@media (hover: hover) and (pointer: fine) {
    .news__list__item__link:hover {
        opacity: 0.65;
    }
}

.news__list__item__link__date {
    display: block;
    flex-grow: 0;
    flex-shrink: 0;
    font-size: var(--fs14);
    font-weight: 700;
    letter-spacing: 0.1em;
    line-height: 1.2;
    margin: 0;
    width: 95px;
}

@media (min-width: 992px) {
    .news__list__item__link__date {
        font-size: var(--fs14);
        width: 100px;
    }
}

.news__list__item__link__category {
    align-items: center;
    display: flex;
    flex-flow: row nowrap;
    flex-grow: 0;
    flex-shrink: 0;
    gap: 6px;
    justify-content: flex-end;
    width: auto;
}

@media (min-width: 768px) {
    .news__list__item__link__category {
        gap: 10px;
    }
}

.news__list__item__link__category .com-news-cat {
    font-size: var(--fs12);
    width: auto;
}

.news__list__item__link__title {
    flex-grow: 1;
    flex-shrink: 1;
    font-size: var(--fs14);
    font-weight: 400;
    letter-spacing: 0.08em;
    line-height: 1.2;
    width: 100%;
}

@media (min-width: 768px) {
    .news__list__item__link__title {
        width: auto;
    }
}