:root {
    --news-item-read-more-align: right;
    --news-item-read-more-border-radius: 0;
    --news-item-read-more-font-style: italic;
}

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

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

.logo {
    background: #fff;
    padding: 5px 10px;
}

.header-area__inside {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 700px) {
    .header-area__inside {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
    }

    .header-area__inside .logo {
        flex-shrink: 1;
    }

    .header-area__inside .search-form--header-area {
        flex-basis: 300px;
    }
}

@media (min-width: 900px) {
    .header-area__inside {
        flex-wrap: nowrap;
        justify-content: space-between;
    }
    .header-area__inside .search-form--header-area {
        margin-left: auto;
    }
}

.header-area__inside .social-godlo-wrapper {
    display: flex;
    align-self: center;
    align-items: center;
    gap: 15px;
}

.header-area__inside .social-godlo-wrapper .social__list {
    list-style: none;
    display: flex;
    justify-content: center;
    padding: 0;
}

.header-area__inside .social-godlo-wrapper .social__link {
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-area {
    padding-bottom: 10px;
}

/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*- menu -*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*
*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/

@media (min-width: 700px) {
    .header-nav-ul {
        justify-content: center;
    }
    .menu-area {
        background: var(--menu-area-background, #000);
        padding: 13px 0 10px 0;
        margin-bottom: 10px;
    }
}

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

.main-area__inside {
    gap: 10px;
}

.main-column__inside {
    padding: 0 15px;
}

.news-item {
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.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: 300;
}

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

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

.sidebar__addon-header {
    font-weight: 500;
    font-size: 1.1em;
}

.sidebar-second__inside {
    background: var(--sidebar-second-bg, #000);
    border-radius: 11px;
}

.sidebar-second__inside .sidebar__addon {
    padding: 15px;
}

.search-form {
    transition: var(--transition);
}

.search-form__input {
    padding: 6px 33px 6px 5px;
}

.nav-addon {
    padding: 0;
}

.nav-addon .sidebar__addon-content {
    background: var(--sidebar-nav-bg, #000);
    border-radius: 11px;
    padding-inline: 10px;
}

.nav-addon .sf-menu > li > a:before {
    content: "";
    display: inline-block;
    vertical-align: middle;
    margin-top: calc(1ex - 1cap);
    margin-right: 6px;
    width: 8px;
    height: 5px;
    background: url(../images/menu-icon.png) center;
}

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

.nav-addon .sf-menu > li > a {
    padding: 12px 0 11px 0;
    line-height: 1.2;
    position: relative;
}
.sidebar__addon .sf-menu ul a {
    padding: 10px 0;
}

.nav-addon .sidebar__addon-header {
    padding: 10px 0 0 0;
    color: #fff;
    font-size: 1em;
    letter-spacing: -1px;
    text-align: center;
    text-transform: uppercase;
}

.sidebar-first__inside .sidebar__addon {
    border-radius: 11px;
}
