:root {
    --news-item-read-more-align: right;
}


/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*- header -*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/

.header-area {
    overflow-x: hidden;
}

.header-area__inside {
    padding: 0;
}

.logo {
    display: block;
    padding: 20px 30px;
}

.page--high-contrast .logo {
    background: #fff;
}

.header-img {
    /* max-width: 100vw;
    margin-left: calc(50% - 50vw); */
    max-width: 150%;
    margin-left: 50%;
    transform: translateX(-50%);
}

.header-content {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 2em;
    gap: 2em;
    background: var(--header-content-bg, rgb(35, 35, 35));
}

.header-content__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
    width: 100%;
}

.header-content__item:not(:last-child) {
    padding-bottom: 2em;
    border-bottom: 1px solid #d5d5d5;
}

.header-content__text {
    text-align: center;
}

.header-content__text * {
    color: var(--header-content-color, #fff);
    text-decoration: none;
    /* font-size: .9em; */
}

.header-content__header {
    font-size: 1.3em;
}

.header-content__link:hover,
.header-content__link:focus {
    color: var(--header-content-color, #fff);
    text-decoration: underline;
}

@media (min-width: 700px) {
    .header-area__inside {
        /* height: 418px; */
        /* position: relative; */
    }
    .logo {
        padding: 10px 0;
        background: none;
        flex-shrink: 1;
    }
    .header-content {
        /* position: absolute; */
        /* bottom: 0; */
        /* left: 0; */
        width: 100%;
        flex-direction: row;
        align-items: stretch;
        padding: 1em;
        gap: 1em;
        justify-content: space-between;
    }
    .header-content__item {
        width: auto;
    }
    .header-content__item:not(:last-child) {
        border-bottom: none;
        padding-bottom: 0;
        padding-right: 1em;
    }
    .header-nav-ul>li {
        border-bottom: 3px solid transparent;
    }
    .header-nav-ul>li:hover,
    .header-nav-ul>li:focus {
        border-bottom: 3px solid var(--header-nav-item-border-color, yellow);
    }
    .header-nav-ul>li:hover a,
    .header-nav-ul>li:focus a {
        text-decoration: none;
    }
}

@media (min-width: 1170px) {
    .header-img {
        max-width: initial;
        margin-left: 50%;
        transform: translateX(-50%);
    }
    .header-content__item {
        flex-direction: row;
        gap: 2em;
    }
}


/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*- main -*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/

.main-column__inside {
    padding: 0 1.3em;
}

.news-item {
    padding-bottom: 2em;
    margin-bottom: 2em;
}

.news-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    border-top: var(--news-list-items-separator-border, 1px dashed #d5d5d5);
}

.news-item__title {
    font-weight: 400;
}


/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*- sidebar -*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/

.sidebar-second__inside {
    background: var(--sidebar-second-bg, #000);
    padding: 0 1em;
}

.sidebar-first__inside>*+*:not(.nav-addon) {
    border-top: var(--sidebar-addon-border, 1px solid #d5d5d5);
    margin-top: 0;
}

.search-form {
    box-shadow: 1px 1px 1px #d7d8d0;
    transition: var(--transition);
    border-radius: .5em;
}

.search-form__input {
    border-radius: .5em;
}

.search-form:focus-within {
    box-shadow: none;
}

.nav-addon {
    background: var(--sidebar-nav-bg, #000);
    padding: 0;
}

.nav-addon .sf-menu li:not(:last-child) {
    border-bottom: var(--sidebar-nav-border, 1px solid #dadada);
}

.nav-addon .sf-menu>li>a {
    font-weight: 500;
    padding: 0.6em 0;
    line-height: 1.2;
    padding-left: 1em;
    position: relative;
}

.nav-addon .sidebar__addon-header {
    padding: .6em .6em 0 .6em;
    color: #000;
}

.nav-addon .sidebar__addon-header {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}