@charset "UTF-8";
/* ================================================================================================================ */
/* СТИЛИ ОБНУЛЕНИЯ ================================================================================================ */
/* ================================================================================================================ */
/*Обнуление*/
* {
    padding: 0;
    margin: 0;
    border: 0;
}

*,
*:before,
*:after {
    box-sizing: border-box;
}

:focus,
:active {
    outline: none;
}

a:focus,
a:active {
    outline: none;
}

nav,
footer,
header,
aside {
    display: block;
}

html,
body {
    height: 100%;
    width: 100%;
    font-size: 100%;
    line-height: 1;
    font-size: 14px;
    -ms-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    /*    overflow: auto;*/
}

input,
button,
textarea {
    font-family: inherit;
}

input::-ms-clear {
    display: none;
}

button {
    cursor: pointer;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

a,
a:visited {
    text-decoration: none;
}

a:hover {
    text-decoration: none;
}

ul li {
    list-style: none;
}

img {
    vertical-align: top;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: 400;
}


/* ПЕРЕМЕННЫЕ ===================================================================================================== */
/* ================================================================================================================ */
:root {
    --acent-color: #89d628;
    --acent-color-light: rgba(51, 204, 153, 0.1);
    --text-color: #000000;
    --secondary-text-color: rgba(0, 0, 0, 0.5);
    --tertiary-text-color: rgba(0, 0, 0, 0.25);
    --white-color: #fff;
    --bg-light-color: #f7f7f6;
    --border-color: rgba(0, 0, 0, 0.1);
    --border-radius: 20px;
    --border-radius-btns: 50px;
}

/* ================================================================================================================ */
/* СТИЛИ UI ======================================================================================================= */
/* ================================================================================================================ */
/* Общие стили и классы*/
.container {
    max-width: 1334px;
    margin: 0 auto;
    padding: 0 32px;
    width: 100%;
}

body {
    font-family: Andika, sans-serif;
}

svg {
    width: 24px;
    height: 24px;
    fill: #000;
    stroke: #000;
}

.img-cover {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    max-width: 100%;
}

.icon {
    fill: #09af69;
    width: 40px;
    height: 40px;
}

/* Кнопки/Ссылки */
.btn {
    text-align: center;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background: none;
    box-shadow: none;
    box-sizing: none;
    display: block;
    transition: 0.3s;
}
.btn_start {
    width: 100%;
    padding: 24px;
    font-size: 17px;
    font-weight: 500;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    background: var(--acent-color);
}
.btn.disabled {
    pointer-events: none;
    cursor: not-allowed;
    background: grey;
}
.btn:active {
    opacity: 0.8;
}
@media (hover: hover) {
    .btn:hover {
        opacity: 0.7;
    }
}

.btn-icon {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 45px;
    height: 45px;
    flex: 0 0 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-btns);
    background: var(--acent-color);
}
.btn-icon svg {
    width: 24px;
    height: 24px;
    stroke: #ffffff;
}

.link-start {
    display: inline-block;
    font-size: 17px;
    font-weight: 500;
    padding: 18px 32px;
    line-height: 100%;
    border-radius: var(--border-radius-btns);
    border: 1px solid var(--border-color);
    color: var(--text-color);
    cursor: pointer;
}
.link-start.active {
    color: var(--white-color);
    background: var(--acent-color);
}

.link-more {
    font-size: 17px;
    color: var(--acent-color);
    text-decoration: underline;
    font-weight: 700;
}

/* Форма поиска */
.search {
    max-width: 100%;
}
.search__body {
    display: flex;
    align-items: center;
    gap: 12px;
}
.search input {
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 1px solid var(--border-color);
    padding: 12px 24px;
    border-radius: var(--border-radius-btns);
    font-size: 17px;
    font-weight: 400;
    color: var(--text-color);
}

/* Список категорий */
.catigories-list ul {
    gap: 12px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

/* Время чтения */
.time-card {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: var(--secondary-text-color);
    font-size: 16px;
}
.time-card svg {
    width: 24px;
    height: 24px;
    margin-right: 8px;
    stroke: var(--acent-color);
}

/* Пагинация */
.page-numbers {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}
.page-numbers a {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-btns);
    font-size: 17px;
    color: var(--text-color);
    font-weight: 500;
    border: 1px solid var(--border-color);
    transition: 0.3s;
}
.page-numbers a:hover {
    color: var(--acent-color);
}
.page-numbers .current {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--border-radius-btns);
    font-size: 17px;
    color: var(--acent-color);
    font-weight: 500;
    border: 1px solid var(--border-color);
}
.page-numbers .prev,
.page-numbers .next {
    width: 56px;
    height: 56px;
    border-color: var(--border-color);
    transition: 0.3s;
}
.page-numbers .prev svg,
.page-numbers .next svg {
    width: 32px;
    height: 32px;
    stroke: var(--tertiary-text-color);
    transition: 0.3s;
}
.page-numbers .prev span,
.page-numbers .next span {
    pointer-events: none;
}
.page-numbers .prev:hover,
.page-numbers .next:hover {
    background: var(--acent-color);
}
.page-numbers .prev:hover svg,
.page-numbers .next:hover svg {
    stroke: var(--white-color);
}
.page-numbers .prev {
    margin-right: 14px;
}
.page-numbers .next {
    margin-left: 14px;
}

/* Соц сети */
.networks {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.networks a {
    display: block;
    transition: 0.3s;
}
.networks a img {
    width: 40px;
}
.networks a:hover {
    opacity: 0.6;
}

/* ячейка информации */
.article-info {
    display: flex;
    align-items: center;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 500;
    color: var(--text-color);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-btns);
}
.article-info svg {
    stroke: var(--acent-color);
    margin-right: 8px;
}
/* Елементы формы -input  */
.input-custom {
    width: 100%;
}
.input-custom label {
    display: block;
    font-weight: 400;
    font-size: 18px;
    margin-bottom: 12px;
}
.input-custom input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    padding: 20px;
    width: 100%;
    display: block;
    background: none;
    border: 1px solid var(--border-color);
    font-size: 17px;
    font-weight: 400;
    border-radius: var(--border-radius-btns);
}
.input-custom input:focus {
    border: 1px solid var(--text-color);
}
.input-custom.error input {
    border: 1px solid #e52d2e;
}
.input-custom.error textarea {
    border: 1px solid #e52d2e;
}
.input-custom textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    resize: none;
    height: 100px;
    appearance: none;
    padding: 20px;
    width: 100%;
    display: block;
    background: none;
    border: 1px solid var(--border-color);
    font-size: 17px;
    font-weight: 400;
    border-radius: var(--border-radius);
}
.input-custom textarea:focus {
    border: 1px solid var(--text-color);
}

/* Жалоба  */
.complaint {
    display: flex;
    align-items: center;
}
.complaint svg {
    stroke: var(--acent-color);
    margin-right: 8px;
}
.complaint span {
    font-size: 17px;
    font-weight: 500;
    color: var(--secondary-text-color);
}

/* Рейтинг  */
.rating {
    display: flex;
    align-items: center;
    gap: 8px;
}
.rating__list {
    display: flex;
    align-items: center;
    gap: 2px;
}
.rating__item {
    width: 36px;
    height: 36px;
    background: url("./../img/blog/solar-linear.svg") 50%/contain no-repeat;
}
.rating__item.active {
    background-image: url("./../img/blog/solar-bold.svg");
}
.rating__result {
    font-size: 18px;
    color: var(--text-color);
}

/* Кнопки слайдера */
.button-prev,
.button-next {
    cursor: pointer;
    background: var(--white-color);
    width: 56px;
    height: 56px;
    border-radius: 50%;
    transition: 0.3s;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
}
.button-prev svg,
.button-next svg {
    width: 32px;
    height: 32px;
    stroke: var(--secondary-text-color);
}
.button-prev:hover,
.button-next:hover {
    background: var(--acent-color);
}
.button-prev:hover svg,
.button-next:hover svg {
    stroke: var(--white-color);
}
.button-prev.swiper-button-disabled,
.button-next.swiper-button-disabled {
    opacity: 0.5;
    pointer-events: none;
}
.button-prev.swiper-button-lock,
.button-next.swiper-button-lock {
    display: none;
}

/* Оценка */
.grade {
    display: flex;
    align-items: center;
}
.grade__list {
    display: flex;
    align-items: center;
}
.grade__item input {
    display: none;
}
.grade__item label {
    display: block;
    width: 36px;
    height: 36px;
    background: url("./../img/blog/solar-linear.svg") 50% 50%/contain no-repeat;
    cursor: pointer;
}
.grade__item.active label {
    background-image: url("./../img/blog/solar-bold.svg");
}
.grade__result {
    margin-left: 12px;
    font-size: 17px;
    font-weight: 600;
    color: var(--text-color);
}

@media screen and (max-width: 576px) {
    .container {
        padding: 0 16px;
    }
    /* Пагинация */
    .page-numbers {
        gap: 4px;
    }
    .page-numbers a {
        width: 40px;
        height: 40px;
    }
    .page-numbers .current {
        width: 40px;
        height: 40px;
    }
    .page-numbers .prev,
    .page-numbers .next {
        width: 40px;
        height: 40px;
    }
    .page-numbers .prev svg,
    .page-numbers .next svg {
        width: 24px;
        height: 24px;
    }
    .page-numbers .prev {
        margin-right: 8px;
    }
    .page-numbers .next {
        margin-left: 8px;
    }
    /* ячейка информации */
    .article-info {
        padding: 8px 16px;
        font-size: 14px;
    }
    /* Рейтинг  */
    .rating__item {
        width: 24px;
        height: 24px;
    }
    .rating__result {
        font-size: 14px;
    }
}
/* ================================================================================================================ */
/* СТИЛИ ТЕКСТОВ И ЗАГОЛОВКОВ ===================================================================================== */
/* ================================================================================================================ */
/* Основные заголовки и текста */
h1 {
    font-size: 36px;
    font-weight: 700;
    color: var(--text-color);
    line-height: 125%;
}

h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-color);
    line-height: 125%;
}

h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color);
    line-height: 125%;
}

h4 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-color);
    line-height: 125%;
}

h5 {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-color);
    line-height: 125%;
}

h6 {
    font-size: 17px;
    font-weight: 400;
    color: var(--text-color);
    line-height: 125%;
}

p {
    line-height: 135%;
    font-size: 17px;
    font-weight: 400;
    color: var(--secondary-text-color);
}

img {
    max-width: 100%;
}

.text-custom *:first-child {
    margin-top: 0;
}
.text-custom *:last-child {
    margin-bottom: 0;
}
.text-custom h1 {
    margin: 30px 0;
}
.text-custom h2 {
    margin: 25px 0;
}
.text-custom h3 {
    margin: 20px 0;
}
.text-custom h4 {
    margin: 18px 0;
}
.text-custom h5 {
    margin: 16px 0;
}
.text-custom h6 {
    margin: 14px 0;
}
.text-custom p {
    margin: 12px 0;
}
.text-custom p em,
.text-custom p i {
    font-style: italic;
}
.text-custom p strong,
.text-custom p b {
    font-weight: 400;
    color: var(--text-color);
}
.text-custom p a {
    color: var(--acent-color);
    text-decoration: underline;
}
.text-custom ul {
    margin: 14px 0;
}
.text-custom ul li {
    line-height: 135%;
    font-size: 17px;
    font-weight: 400;
    color: var(--secondary-text-color);
    padding: 0 0 0 10px;
    position: relative;
    display: flex;
}
.text-custom ul li:before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--secondary-text-color);
    position: absolute;
    left: 0;
    top: 9px;
}
.text-custom ol {
    margin: 14px 0;
    padding: 0 0 0 20px;
}
.text-custom ol li {
    line-height: 135%;
    font-size: 17px;
    font-weight: 400;
    color: var(--secondary-text-color);
}
.text-custom blockquote {
    line-height: 135%;
    font-size: 17px;
    font-weight: 400;
    color: var(--text-color);
    margin: 12px 0;
    font-style: italic;
}
.text-custom blockquote:before {
    content: "“";
    color: var(--acent-color);
}
.text-custom blockquote:after {
    content: "”";
    color: var(--acent-color);
}
.text-custom img {
    margin: 64px 0;
    max-width: 100%;
    border-radius: var(--border-radius);
    overflow: hidden;
}
@media screen and (max-width: 576px) {
    .text-custom h1 {
        margin: 24px 0;
    }
    .text-custom h2 {
        margin: 20px 0;
    }
    .text-custom h3 {
        margin: 18px 0;
    }
    .text-custom h4 {
        margin: 16px 0;
    }
    .text-custom h5 {
        margin: 14px 0;
    }
    .text-custom h6 {
        margin: 12px 0;
    }
    .text-custom p {
        margin: 8px 0;
    }
    .text-custom img {
        margin: 24px 0;
    }
    .text-custom ul {
        margin: 12px 0;
    }
    .text-custom ul li {
        font-size: 15px;
    }
    .text-custom ul li:before {
        top: 9px;
    }
    .text-custom ol {
        margin: 12px 0;
        padding: 0 0 0 16px;
    }
    .text-custom ol li {
        font-size: 15px;
    }
    .text-custom blockquote {
        font-size: 15px;
    }
}

@media screen and (max-width: 576px) {
    h1 {
        font-size: 24px;
    }
    h2 {
        font-size: 20px;
    }
    h3 {
        font-size: 18px;
    }
    h4 {
        font-size: 16px;
    }
    h5 {
        font-size: 15px;
    }
    h6 {
        font-size: 15px;
    }
    p {
        font-size: 15px;
    }
}
/* ================================================================================================================ */
/* СТИЛИ БЛОКОВ  ================================================================================================== */
/* ================================================================================================================ */
/* Стили для .blog-page */
.blog-page {
    padding: 120px 0;
}
.blog-page__head {
    margin-bottom: 96px;
}
.blog-page__controls {
    margin-bottom: 42px;
}
/* ------- адаптация ------- */
@media screen and (max-width: 576px) {
    .blog-page {
        padding: 64px 0;
    }
    .blog-page__head {
        margin-bottom: 48px;
    }
    .blog-page__controls {
        margin-bottom: 24px;
    }
}
/* ------- end ------- */
/* Стили для .blog-head */
.blog-head__img {
    margin-top: 24px;
    width: 100%;
    position: relative;
    padding-bottom: 30%;
    border-radius: var(--border-radius);
    overflow: hidden;
    min-height: 250px;
}

/* ------- end ------- */
/* Стили для .blog-controls */
.blog-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    grid-row: 24px;
    flex-wrap: wrap;
}
/* ------- адаптация ------- */
@media screen and (max-width: 576px) {
    .blog-controls {
        flex-direction: column;
        gap: 24px;
        flex-wrap: wrap;
    }
    .blog-controls__left {
        width: 100%;
    }
    .blog-controls__right {
        width: 100%;
    }
}
/* ------- end ------- */
/* Стили для .blog-list */
.blog-list__head {
    padding: 0 0 16px 0;
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 32px;
}
.blog-list__title {
    font-weight: 600;
    font-size: 24px;
    color: var(--text-color);
    display: flex;
    align-items: center;
}
.blog-list__title:before {
    content: "";
    width: 7px;
    height: 7px;
    margin-right: 10px;
    background: var(--acent-color);
    border-radius: 100px;
    display: block;
}
.blog-list__list {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
}
.blog-list__nav {
    margin-top: 42px;
}

/* ------- адаптация ------- */
@media screen and (max-width: 992px) {
    .blog-list__list {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media screen and (max-width: 768px) {
    .blog-list__list {
        max-width: 490px;
        margin: 0 auto;
        grid-template-columns: repeat(1, 1fr);
    }
    .article-head__img {
        min-height: 350px;
    }
}
/* ------- end ------- */
/* Стили для .article-item */
.article-item {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}
.article-item__top {
    flex: 1 1 auto;
}
.article-item__img {
    display: block;
    position: relative;
    padding-bottom: 65%;
    overflow: hidden;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
}
.article-item__body {
    padding: 24px 32px;
}
.article-item__time {
    margin-bottom: 6px;
}
.article-item__title {
    display: block;
    font-size: 18px;
    color: var(--text-color);
    font-weight: 600;
}
.article-item__text {
    margin-top: 12px;
}
.article-item__down {
    border-top: 1px solid var(--border-color);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}
.article-item__data {
    font-weight: 500;
    color: var(--secondary-text-color);
}

/* ------- адаптация ------- */
@media screen and (max-width: 576px) {
    .article-item__body {
        padding: 24px;
    }
    .article-item__down {
        padding: 24px;
    }
}
/* ------- end ------- */
/* Стили для .author-block */
.author-block {
    display: flex;
    border-radius: var(--border-radius);
    border: 1px solid var(--border-color);
    padding: 32px 0px;
}
.author-block__left {
    padding: 0 64px;
    flex: 0 0 50%;
}
.author-block hr {
    display: block;
    height: auto;
    width: 1px;
    flex: 0 0 1px;
    background: var(--border-color);
}
.author-block__right {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    padding: 0 64px;
}

.author-prev {
    display: flex;
    align-items: center;
}
.author-prev__img {
    width: 156px;
    height: 156px;
    flex: 0 0 156px;
    position: relative;
    border-radius: 200px;
    overflow: hidden;
    margin-right: 32px;
}
.author-prev__text {
    margin-top: 4px;
}
.author-prev__networks {
    margin-top: 12px;
}

.author-info__title {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 4px;
}
.author-info__title svg {
    stroke: var(--acent-color);
    margin-right: 8px;
}

/* ------- адаптация ------- */
@media screen and (max-width: 992px) {
    .author-block {
        flex-direction: column;
        padding: 32px 48px;
        align-items: center;
        gap: 32px;
    }
    .author-block__left {
        padding: 0px;
        flex: 0 0 50%;
        width: 100%;
    }
    .author-block hr {
        width: 100%;
        height: 1px;
    }
    .author-block__right {
        flex: 1 1 auto;
        padding: 0px;
    }
}
@media screen and (max-width: 576px) {
    .author-block {
        padding: 24px;
        gap: 32px;
    }
    .author-prev {
        flex-direction: column;
        gap: 24px;
    }
    .author-prev__img {
        width: 96px;
        height: 96px;
        flex: 0 0 96px;
        margin: 0;
    }
    .author-prev__info {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .author-prev__title {
        text-align: center;
    }
    .author-prev__text {
        text-align: center;
        margin-top: 4px;
    }
    .author-prev__networks {
        margin-top: 12px;
    }
}
/* ------- end ------- */
/* Стили для .article-page */
.article-page {
    margin: 128px 0;
}
/* ------- адаптация ------- */
@media screen and (max-width: 576px) {
    .article-page {
        margin: 64px 0;
    }
}
/* ------- end ------- */
/* Стили для .article-head */
.article-head__info {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 12px;
}
.article-head__head {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
}
.article-head__head svg {
    flex: 0 0 24px;
    stroke: var(--acent-color);
}
.article-head__img {
    margin: 24px 0 40px;
    border-radius: var(--border-radius);
    overflow: hidden;
    min-height: 600px;
    /*padding-bottom: 65%;*/
    position: relative;
}

/* ------- адаптация ------- */
@media screen and (max-width: 576px) {
    .article-head__info {
        gap: 8px;
        margin-bottom: 24px;
    }
}
/* ------- end ------- */
/* Стили для -------- */
.article-body {
    max-width: 1194px;
    margin: 96px auto;
    display: flex;
    justify-content: space-between;
    gap: 52px;
}
.article-body__left {
    min-width: 320px;
    position: relative;
}
.article-body__left .nav-text {
    position: sticky;
    top: 100px;
}
.article-body__right {
    max-width: 700px;
}
.article-body__text {
    margin-bottom: 64px;
}
.article-body__shere {
    margin: 32px 0;
}
.article-body__author {
    margin: 32px 0;
}
.article-body__coment {
    margin: 32px 0;
}

/* ------- адаптация ------- */
@media screen and (max-width: 992px) {
    .article-body {
        margin: 64px 0;
        flex-direction: column;
        gap: 32px;
    }
    .article-body__coment {
        margin: 0;
    }
    .article-body__text {
        margin-bottom: 48px;
    }
    .article-body__shere {
        margin: 24px 0;
    }
    .article-body__author {
        margin: 24px 0;
    }
}
@media screen and (max-width: 576px) {
    .article-body {
        margin: 0;
    }
}
/* ------- end ------- */
/* Стили для .nav-text */
.nav-text__title {
    font-size: 24px;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 16px;
}
.nav-text > ul {
    counter-reset: count;
}
.nav-text > ul > li > a {
    display: block;
    padding: 12px 24px;
    width: 100%;
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary-text-color);
    border-radius: var(--border-radius);
    margin: 8px 0;
    display: flex;
}
.nav-text > ul > li > a.active {
    color: var(--acent-color);
    background: var(--acent-color-light);
}
.nav-text > ul > li > a:before {
    counter-increment: count;
    content: counter(count) ". ";
    margin-right: 4px;
}
.nav-text > ul > li > a:hover {
    color: var(--acent-color);
}
.nav-text > ul > li > ul {
    padding-left: 32px;
}
.nav-text > ul > li > ul > li > a {
    font-size: 16px;
    font-weight: 500;
    color: var(--secondary-text-color);
    margin: 8px 0;
    display: block;
}
.nav-text > ul > li > ul > li > a.active {
    color: var(--acent-color);
}
.nav-text > ul > li > ul > li > a:before {
    content: "- ";
}
.nav-text > ul > li > ul > li > a:hover {
    color: var(--acent-color);
}

/* ------- адаптация ------- */
/* ------- end ------- */
/* Стили для .article-shere  */
.article-shere {
    width: 100%;
    padding: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
    border: 1px solid var(--acent-color);
    border-radius: var(--border-radius);
}
.article-shere__title {
    text-align: center;
    font-size: 28px;
    font-weight: 600;
    color: var(--text-color);
}
/* ------- адаптация ------- */
@media screen and (max-width: 576px) {
    .article-shere {
        padding: 24px;
        gap: 16px;
    }
    .article-shere__title {
        font-size: 20px;
    }
}
/* ------- end ------- */
/* Стили для .article-author */
.article-author {
    background: var(--bg-light-color);
    border-radius: var(--border-radius);
    padding: 32px;
    display: flex;
}
.article-author__img {
    width: 124px;
    height: 124px;
    flex: 0 0 124px;
    position: relative;
    margin-right: 32px;
    border-radius: 100px;
    overflow: hidden;
    display: block;
}
.article-author__status {
    color: var(--secondary-text-color);
    font-size: 18px;
    font-weight: 600;
    line-height: 125%;
}
.article-author__name {
    display: block;
    color: var(--text-color);
    font-size: 28px;
    font-weight: 600;
    line-height: 125%;
    margin-bottom: 16px;
}
.article-author .networks {
    margin-top: 16px;
}

/* ------- адаптация ------- */
@media screen and (max-width: 576px) {
    .article-author {
        flex-direction: column;
        padding: 32px 24px;
    }
    .article-author__img {
        margin: 0 0 24px 0;
    }
    .article-author__status {
        font-size: 16px;
    }
    .article-author__name {
        font-size: 20px;
    }
    .article-author .networks {
        margin-top: 12px;
    }
}
/* ------- end ------- */
/* Стили для .article-grade */
.article-grade {
    margin: 24px 0;
    padding: 32px;
    border-radius: var(--border-radius);
    background: var(--bg-light-color);
}
.article-grade__title {
    margin-bottom: 24px;
}
.article-grade__form {
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
}
.article-grade__row {
    margin-top: 16px;
    display: flex;
    gap: 16px;
}
.article-grade__grade {
    margin: 24px 0;
}
.article-grade__infa {
    margin-top: 12px;
    text-align: center;
}

/* ------- адаптация ------- */
@media screen and (max-width: 576px) {
    .article-grade {
        padding: 32px 24px;
    }
    .article-grade__row {
        flex-direction: column;
    }
}
/* ------- end ------- */
/* Стили для .article-coment */
.article-coment {
    margin: 16px 0;
    padding: 32px;
    border-radius: var(--border-radius);
    background: var(--bg-light-color);
}
.article-coment__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 16px;
}
.article-coment__title {
    font-weight: 600;
    font-size: 24px;
    color: var(--text-color);
}
.article-coment__body {
    padding-top: 16px;
}
.article-coment__rating {
    margin-top: 16px;
}

/* ------- адаптация ------- */
@media screen and (max-width: 576px) {
    .article-coment {
        padding: 24px;
    }
}
/* ------- end ------- */
/* Стили для .dop-article */
.dop-article {
    overflow: hidden;
    margin: 128px 0;
}
.dop-article__head {
    padding: 32px 0;
}

.dop-article-slider {
    position: relative;
}
.dop-article-slider .swiper {
    overflow: visible;
}
.dop-article-slider .swiper-control {
    position: absolute;
    z-index: 10;
    right: 0;
    top: 0;
    transform: translate(0%, calc(-100% - 32px));
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

/* ------- адаптация ------- */
@media screen and (max-width: 1200px) {
    .dop-article-slider .swiper-control {
        margin-top: 24px;
        position: static;
        transform: translate(0%, 0px);
    }
}
@media screen and (max-width: 576px) {
    .dop-article {
        margin: 40px 0;
    }
    .dop-article__head {
        padding: 0 0 32px 0;
    }

}
/* ------- end ------- */
/* Стили для -------- */
/* ------- адаптация ------- */
/* ------- end ------- */
/* Стили для -------- */
/* ------- адаптация ------- */
/* ------- end ------- */


.img-cover img{
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.avatar {
    object-fit: contain;
    width: 100%;
    height: 100%;
}

.post-navigation {
    display: flex;
    justify-content: space-between;
    gap:10px;
}

.post-navigation__prev,
.post-navigation__next {
    max-width: 300px;
}

@media (max-width: 768px) {
    .post-navigation__prev,
    .post-navigation__next {
        max-width: 200px;
    }
    .post-navigation__title{
        display: none;
    }
}

.post-navigation__label {
    font-size: 14px;
    color: #999;
}

.post-navigation__title {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.post-navigation__prev a,
.post-navigation__next a {
    text-decoration: none;
    display: flex;
    gap:8px;
    flex-direction: column;
}
.post-navigation__next a{
    align-items: end;
    text-align: right;
}

.post-navigation__prev:hover .post-navigation__title,
.post-navigation__next:hover .post-navigation__title {
    color: var(--acent-color);
}