:root {
    --banner-display: block;
    --news-item-read-more-font-style: italic;
}

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

.header-area__inside {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    padding: 5px 0 0 0;
}

.logo-hamburger-wrapper {
    gap: 30px;
}

.banner {
    max-width: 585px;
}

@media (min-width: 450px) {
    .main-area__inside {
        gap: 20px;
    }
}

@media (min-width: 700px) {
    .menu-area {
        background-color: var(--menu-area-background-color, #000);
        padding-block: 10px;

        .header-nav-ul {
            justify-content: center;

            > li > a::before {
                content: "";
                width: 0.5em;
                height: 0.5em;
                background: #feaa06;
                display: inline-block;
                margin-right: 0.5em;
                transform: translateY(-0.1em);
            }
        }
    }

    .main-area__inside {
        gap: 20px;
    }
}

@media (width > 900px) {
    .header-area__inside {
        flex-direction: row;
        justify-content: space-between;
    }
    .logo {
        flex-shrink: 1;
    }
}

.search-form__input {
    border-radius: 20px;
    padding: 5px 33px 4px 13px;
}
.search-form__button {
    right: 7px;
}

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*- news -*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/

.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__read-more-link {
    padding: 0.3em 1.2em;
    border-radius: 0;
}

.news-item__read-more-icon {
    display: none;
}

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

.sidebar-first__inside > * + *::before {
    display: none;
}

.nav-addon .sf-menu li {
    border-bottom: 1px dashed #dadada;
}

.nav-addon .sf-menu > li > a {
    padding: 0.8em 0;
    line-height: 1.2;
    padding-left: 1.2em;
    position: relative;
}

.nav-addon .sf-menu > li > a::before {
    content: "";
    width: 0.5em;
    height: 0.5em;
    background: #feaa06;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
}

.sidebar__addon.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;
}
