.articles-index__title {
  margin: 0;
}

.articles-index__sidebar {
  padding-top: 80px;
}

.article-item__container {
  display: flex;
  background-color: #fff;
  margin-bottom: 16px;
  min-height: 140px;
}

.article-item__content {
  flex-grow: 1;
  padding: 16px;
}

.article-item__title {
  display: block;
  font-weight: 700;
  font-size: 18px;
  line-height: 24px;
  color: #5F5F5F;
}

.article-item__title:hover {
  color: #23527c;
}

.article-item__bottom {
  display: flex;
  align-items: center;
  margin-top: 12px;
}

.article-item__date {
  font-weight: 700;
  font-size: 14px;
  line-height: 17px;
  color: #434343;
  margin-right: 12px;
}

.article-item__comment {
  display: flex;
  align-items: center;
}

.article-item__comment-icon {
  margin-right: 4px;
}

.article-item__comment-icon svg {
  display: block;
}

.article-item__comment-count {
  font-size: 11px;
  line-height: 17px;
  font-weight: 700;
  color: #4A90E2;
}

.article-item__img {
  width: 250px;
  flex-shrink: 0;
  position: relative;
}

.article-item__img img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  object-fit: cover;
}

@media (max-width: 600px) {
  .article-item__container {
    flex-direction: column-reverse;
  }

  .article-item__img {
    width: 100%;
    height: 180px;
  }
}

/** ---- articles-grid ---- */

.articles-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}

.articles-grid__item {
  background-color: #fff;
  position: relative;
}

.articles-grid__img {
  width: 100%;
  height: 100px;
}

.articles-grid__img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.articles-grid__content {
  padding: 8px;
  padding-bottom: 30px;
}

.articles-grid__title {
  font-weight: 700;
  font-size: 14px;
  color: #434343;
}

.articles-grid__comment {
  display: flex;
  align-items: center;
  position: absolute;
  bottom: 8px;
  right: 8px;
}

.articles-grid__comment-icon {
  margin-right: 4px;
}

.articles-grid__comment-icon svg {
  display: block;
}

.articles-grid__comment-count {
  font-size: 11px;
  line-height: 17px;
  font-weight: 700;
  color: #4A90E2;
}

@media (max-width: 600px) {
  .articles-grid {
    grid-template-columns: 1fr;
  }

  .articles-grid__img {
    height: 160px;
  }
}

/** ---- article view ---- */

.article-new__body {
  color: #434343;
  font-family: Ubuntu;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.article-new__body > h2,
.article-new__body > h3,
.article-new__body > h4,
.article-new__body > h5,
.article-new__body > h6 {
  margin: 60px 0 30px;
  color: #434343;
  font-family: Ubuntu;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 122.4%;
}

.article-new__body > p {
  margin: 30px 0 0;
  color: #434343;
  font-family: Inter, Ubuntu;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.article-new__body > p b,
.article-new__body > p strong {
  font-weight: 600;
}

.article-new__body > p a {
  color: #0075FF;
  text-decoration: underline;
}

.article-new__body > ul {
  margin: 30px 0 0;
  padding: 0;
}

.article-new__body > ul > li {
  display: block;
  padding-left: 18px;
  position: relative;
  margin-bottom: 20px;
  color: #434343;
  font-family: Inter, Ubuntu;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.article-new__body > ul > li:last-child {
  margin-bottom: 0;
}

.article-new__body > ul > li::after {
  content: '';
  display: block;
  position: absolute;
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background: #434343;
  left: 0;
  top: 12px;
}

.article-new__body > ol {
  margin: 30px 0 0;
  padding: 0;
  counter-reset: num;
}

.article-new__body > ol > li {
  display: block;
  position: relative;
  margin-bottom: 20px;
  color: #434343;
  font-family: Inter, Ubuntu;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.article-new__body > ol > li:last-child {
  margin-bottom: 0;
}

.article-new__body > ol > li::before {
  content: counter(num) ". ";
  counter-increment: num;
}

.article-new__body > img,
.article-new__body > p > img {
  width: auto;
  height: auto;
  max-width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  border: 0;
  display: block;
}

.article-new__body > img {
  margin-top: 30px;
}

.article-new__body > blockquote,
.article-new__body > p > blockquote {
  margin: 0;
  padding: 45px 50px 45px 60px;
  border: 1px solid #D7D7D7;
  background: #F9F4EE;
  color: #434343;
  font-family: Inter, Ubuntu;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.article-new__body > blockquote {
  margin: 30px 0 0;
}

.article-new__text_blue p {
  font-family: Inter, Ubuntu;
}

.article-new__green * {
  font-family: Inter, Ubuntu;
}

.article-new__quote * {
  font-family: Inter, Ubuntu !important;
}

.article-new__yt {
  margin: 60px 0;
}

.article-new__pers_img img {
  width: 100px;
  height: 100px;
  object-fit: cover;
}

.other .recom__article__img img {
  height: 196px;
  object-fit: cover;
}

.article-new__rate_text_negative {
  color: #F00 !important;
}

.article-new__write_row {
  display: flex;
}

.article-new__write_row p {
  flex-grow: 1;
}

.article-new__write_btns {
  gap: 20px;
  display: flex;
  flex-shrink: 0;
}

.article-new__write_controls {
  margin-top: 10px;
}

.article-new__write_list {
  padding: 0 !important;
  border-bottom: 1px solid #D9D9D9;
}

.article-new__write_comment {
  align-items: flex-start;
}

.article-new__write_comment img {
  object-fit: cover;
}

.article-new__write_comment .article-new__write_row p {
  display: none;
}

.other .articles__item {
  padding-bottom: 0;
}

.article-new__content-link {
  display: grid;
  grid-template-columns: 20px 1fr;
  gap: 15px;
  align-items: start;
}

.article-new__title {
  display: block;
  margin: 60px 0 30px;
  color: #434343;
  font-family: Ubuntu;
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: 122.4%;
}

.article-new__aside-title {
  margin: 0;
  font-size: 18px;
  font-family: inherit;
  font-weight: 500;
  line-height: 1.1;
  color: inherit;
}

.article-new__sub-title {
  margin: 0;
  color: #434343;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.1;
}

.comments-title {
  display: block;
  margin: 60px 0 10px;
  color: #434343;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 121.9%;
}

.article-new__content_num {
  flex-shrink: 0;
}

.article-new__content_text {
  flex-grow: 1;
}

.article-new__content_text a {
  display: block;
  color: #434343;
  font-family: Ubuntu;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  text-decoration-line: underline;
  margin: 0;
  transition: all 0.3s;
}

.article-new__content_text a + a {
  color: #6F6F6F;
  font-size: 16px;
  font-weight: 400;
  text-decoration: none;
}

.article-new__content_text a:hover {
  color: #4A90E2;
}

.article-new__aside .article-new__content_text a {
  font-size: 14px;
  text-decoration: none;
}

.article-new__content-link_active {
  font-weight: 600 !important;
  color: #434343 !important;
}

.article-new__breadcrumbs-container {
  display: flex;
}

.article-new__breadcrumbs {
  flex-grow: 1;
}

.article-new__date {
  flex-shrink: 0;
  margin: 0;
  margin-left: 20px;
  padding-top: 1px;
  color: #A0A0A0;
  font-family: Ubuntu;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}

.article-new__time-container {
  display: flex;
  margin-top: 37px;
  align-items: flex-start;
}

.article-new__time {
  margin: 0;
  margin-right: 40px;
  flex-shrink: 0;
}

.article-new__time p {
  font-size: 12px;
}

.article-new__tag {
  margin: 0;
  flex-grow: 1;
  row-gap: 8px;
  column-gap: 20px;
  padding-top: 6px;
}

.article-new__tag a {
  font-size: 12px;
}

.article-new h1 {
  margin-top: 37px;
}

.article-main__sidebar {
  padding: 20px 20px 20px 0;
}

.article-new__alinks {
  border: 1px solid #E5E5E5;
  background: #FFF;
  box-shadow: 0px 4px 8px 0px rgba(0, 0, 0, 0.1), 0px 14px 14px 0px rgba(0, 0, 0, 0.09), 0px 32px 19px 0px rgba(0, 0, 0, 0.05), 0px 58px 23px 0px rgba(0, 0, 0, 0.01), 0px 90px 25px 0px rgba(0, 0, 0, 0);
  opacity: 1;
  transition: all 0.3s;
  margin-bottom: 24px;
}

.article-new__pers_name p {
  font-size: 16px;
}

.article-new__pers_name p {
  font-size: 16px;
}

.article-new__pers_name p + p {
  font-size: 12px;
}

.article-main__sidebar {
  display: flex;
  flex-direction: column;
}

.article-new__aside-container {
  flex-grow: 1;
}

.article-new__aside-container * {
  transition: none;
}

@media (max-width: 1024px) {
  .article-new {
    padding-right: 20px;
  }

  .article-main__sidebar {
    display: none;
  }
}

@media (max-width: 768px) {
  .article-new {
    padding: 0;
  }

  .article-new__breadcrumbs-container {
    display: block;
  }

  .article-new__date {
    text-align: right;
    margin-top: 8px;
  }

  .article-new__time-container {
    display: block;
  }

  .article-new__tag {
    padding-left: 35px;
  }
}

@media (max-width: 600px) {
  .article-new__pers_img img {
    width: 70px;
    height: 70px;
    object-fit: cover;
  }

  .other .recom__article__img img {
    height: 100%;
  }

  .article-new__pers_btn {
    font-size: 12px;
    padding: 10px 8px;
  }

  .article-new__pers_name p + p {
    font-size: 10px;
  }
}

/** ----------------------- */
