.main-inner {
    padding: 0 0 100px;
}
.child-category {
    margin: 0 0 65px;
}
.child-category__inner {
    margin: 0 auto;
    width: 92%;
    max-width: var(--main-column);
}
.child-category__head {
    margin: 0 0 20px;
}
.child-category__head h2 {
    font-size: 16px;
    font-weight: 500;
}
.child-category__items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}
.child-category__item {
    border: 1px solid #e4e4e4;
}
.child-category__item a {
    display: block;
    font-size: 16px;
    font-weight: 500;
    padding: 10px 0;
    text-align: center;
}



.category-main__inner {
    margin: 0 auto;
    width: 92%;
    max-width: var(--main-column);
}
.category-main__flex {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: wrap;
}
.category-sidebar {
    border-right: 1px solid #e4e4e4;
    padding-right: 25px;
    width: 240px;
}
.category-main__content {
    padding-left: 25px;
    width: calc(100% - 240px);
}



.category-content__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 35px;
}

.category-sidebar__item:not(:last-child) {
    margin: 0 0 25px;
}
.category-sidebar__item.type-d {
    margin: 0;
}
.category-sidebar__head {
    margin: 0 0 20px;
}
.category-sidebar__head p,
.category-sidebar__head a {
    font-size: 18px;
    font-weight: 500;
}
.category-sidebar__widget {
    padding: 0 10px;
}
.category-sidebar__widget.dropdown {
    padding: 0;
}
.category-sidebar__widget:not(:last-child) {
    margin: 0 0 15px;
}
.category-sidebar__widget.dropdown:not(:last-child) {
    margin: 0;
}
.category-sidebar__widget.dropdown:first-child {
    border-top: 1px solid var(--ft-color3);
    padding: 0;
}
.category-widget__head {
    margin: 0 0 10px;
}
.category-widget__head p {
    font-size: 16px;
    font-weight: 500;
}
.category-widget__body ul li:not(:last-child) {
    margin: 0 0 5px;
}
.category-widget__body ul li a {
    font-size: 14px;
    font-weight: 400;
}

.dropdown .dropdown-head {
    margin: 0;
    padding: 0 10px;
    position: relative;
}
.dropdown .dropdown-head::before,
.dropdown .dropdown-head::after {
    background: var(--ft-color3);
    content: "";
    margin: auto;
    position: absolute;
}
.dropdown .dropdown-head::before {
    height: 15px;
    right: 15px;
    bottom: 0;
    top: 0;
    transition-duration: .3s;
    width: 1px;
}
.dropdown .dropdown-head::after {
    height: 1px;
    right: 8px;
    bottom: 0;
    top: 0;
    width: 15px;
}
.dropdown.active .dropdown-head::before {
    transform: rotate(90deg);
}
.dropdown .dropdown-head p {
    padding: 15px 0;
}
.dropdown-panel {
    border-top: 1px solid var(--ft-color3);
    display: none;
    margin: 0;
    padding: 20px 10px;
}


.category-main__content .items-list {
    grid-template-columns: repeat(3, 1fr);
}

@media screen and (max-width: 968px) {
    .child-category__items {
        gap: 15px;
    }
    .category-main__content .items-list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 768px) {
    .child-category__items {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    .child-category__item a {
        font-size: 14px;
    }
    .category-main__flex {
        flex-direction: column-reverse;
    }
    .category-sidebar {
        border-top: 1px solid #e4e4e4;
        border-right: 0;
        margin: 25px 0 0;
        padding-right: 0;
        padding-top: 25px;
        width: 100%;
    }
    .category-main__content {
        padding-left: 0;
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .child-category__items {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

.category-mv {
    margin: 0 0 65px;
}
.category-mv__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin: 0 auto;
    width: 92%;
    max-width: var(--main-column);
}
.category-mv__text,
.category-mv__image {
    width: 48%;
}
.category-mv__image {
    line-height: 0;
}
.category-mv__text h1 {
    font-size: 26px;
    font-weight: 500;
}
.category-mv__text .category-mv__comment {
    margin: 25px 0 0;
}
.category-mv__text .category-mv__comment h2 {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 15px;
}
.category-mv__text .category-mv__comment p {
    font-size: 16px;
    font-weight: 400;
    line-height: 2em;
}
@media screen and (max-width: 968px) {
    .category-mv__text,
    .category-mv__image {
        width: 49%;
    }
}
@media screen and (max-width: 768px) {
    .category-mv__inner {
        flex-direction: column-reverse;
    }
    .category-mv__text,
    .category-mv__image {
        width: 100%;
    }
    .category-mv__text {
        margin: 15px 0 0;
    }
}