

/* Start:/local/templates/aio/assets/css/blogpage.css?17512893867665*/
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex-grow: 1;
}

footer::before {
  border-top: 1px solid #6e6e84;
}

.blog {
  padding-top: 98px;
  padding-bottom: 160px;
  background-color: #000;
}

.blog .container {
  max-width: 1232px;
  padding: 0 16px;
}

.blog .blog__inner {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  column-gap: 24px;
}

.blog .blog__last-article {
  grid-column: span 5;
}

:is(.blog .blog__last-article) .blog__article-card {
  background-color: #15151f;
  margin-bottom: 24px;
  min-height: auto;
  max-height: 65vh;
}

:is(.blog .blog__last-article) .blog__card-image {
  height: 554px;
}

:is(.blog .blog__last-article) .blog__card-title {
  flex-shrink: 0;
}

.blog .blog__last-inner {
  position: sticky;
  top: 98px;
}

.blog .blog__content {
  grid-column: span 7;
}

.blog .blog__articles {
  margin-bottom: 24px;
}

.blog .blog__articles-list {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 24px;
  margin-bottom: 24px;
}

.blog .blog__articles-item {
  grid-column: span 6;
}

.blog .blog__article-card {
  min-height: 410px;
  border: 1px solid #6e6e84;
  border-radius: 32px;
  background-color: #000;
  padding: 24px;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  cursor: pointer;
}

.blog .blog__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.blog .blog__card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 9px;
  border-radius: 32px;
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 143%;
  letter-spacing: -0.02em;
}

.blog .blog__card-tag--blue {
  background: rgba(164, 195, 255, 0.25);
  color: #568fff;
}

.blog .blog__card-tag--yellow {
  background: rgba(230, 243, 85, 0.25);
  color: #e6f355;
}

.blog .blog__card-tag--red {
  background: rgba(255, 106, 42, 0.25);
  color: #ff6a2a;
}

.blog .blog__card-tag--green {
  background: rgba(34, 205, 72, 0.25);
  color: #22cd48;
}

.blog .blog__card-date {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 12px;
  line-height: 133%;
  letter-spacing: -0.02em;
  color: #6e6e84;
}

.blog .blog__card-image {
  height: 222px;
  border: 1px solid #6e6e84;
  border-radius: 16px;
  background-color: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

:is(.blog .blog__card-image) img {
  width: 100%;
}

.blog .blog__card-title {
  font-family: var(--third-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
  letter-spacing: -0.04em;
  color: #fff;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog .blog__articles-btn {
  width: 100%;
}

.blog .blog__banner {
  border: 1px solid #6e6e84;
  border-radius: 32px;
  background: #15151f;
  overflow: hidden;
  padding-top: 98px;
  padding-right: 32px;
  padding-bottom: 99px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.blog .blog__banner-image {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  width: 453px;
  height: 596px;
  display: flex;
  align-items: center;
  justify-content: center;
}

:is(.blog .blog__banner-image) img {
  width: 100%;
}

.blog .blog__banner-info {
  text-align: center;
  position: relative;
  z-index: 2;
}

.blog .blog__banner-title {
  font-family: var(--third-family);
  font-weight: 600;
  font-size: 32px;
  line-height: 125%;
  text-align: center;
  color: #fff;
  margin-bottom: 8px;
}

.blog .blog__banner-sutitle {
  font-family: var(--second-family);
  line-height: 150%;
  letter-spacing: -0.04em;
  text-align: center;
  color: #fff;
  margin-bottom: 16px;
}

.blog .blog__banner-link {
  padding: 12px 34px;
}

.custom-select__trigger {
  display: none;
}

.custom-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.custom-option {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  max-width: 90px;
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  border: 1px solid #e6f355;
  border-radius: 32px;
  padding: 8px 16px;
  background-color: #000;
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 143%;
  letter-spacing: -0.02em;
  color: #fff;
  transition: background-color 0.3s ease-in, color 0.3s ease-in, opacity 0.3s ease-in;
}

.custom-option:hover {
  opacity: 0.7;
}

.custom-option.active {
  background-color: #e6f355;
  color: #232332;
}

@media (max-width: 992px) {
  .blog .blog__inner {
    row-gap: 40px;
  }

  .blog .blog__last-article {
    grid-column: span 12;
  }

  .blog .blog__last-inner {
    position: static;
  }

  .blog .blog__content {
    grid-column: span 12;
  }
}

@media (max-width: 650px) {

  .blog .blog__articles {
    margin-bottom: 40px;
  }

  .blog .blog__articles-item {
    grid-column: span 12;
  }
}

@media (max-width: 500px) {
  :is(.blog .blog__last-article) .blog__card-image {
    height: 222px;
  }

  .blog .blog__card-title {
    font-weight: 400;
  }

  .blog .blog__banner {
    flex-direction: column;
    padding-right: 0;
    padding-bottom: 24px;
  }

  .blog .blog__banner-image {
    transform: none;
    position: static;
    width: 100%;
    height: auto;
    margin-top: -110px;
  }

  .custom-select {
    position: relative;
  }

  .custom-select__trigger {
    display: block;
    border-radius: 32px;
    padding: 4px 4px 4px 16px;
    border: 1px solid #e6f355;
    background-color: #e6f355;
    font-family: var(--second-family);
    font-weight: 600;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: -0.04em;
    color: #232332;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.3s ease-in, background-color 0.3s ease-in;
  }

  .custom-select__trigger .custom-select__trigger-decor {
    border-radius: 50%;
    width: 44px;
    height: 44px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease-in, background-color 0.3s ease-in;
  }

  .custom-options {
    display: flex;
    flex-direction: column;
    row-gap: 4px;
    border-radius: 32px;
    padding: 8px;
    box-shadow: 0 24px 32px 0 rgba(0, 0, 0, 0.32);
    background: #15151f;
    position: absolute;
    width: 100%;
    top: calc(100% + 8px);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-20px) scale(0.95);
    transition: all 0.2s ease-in;
  }

  .custom-option {
    display: block;
    max-width: none;
    padding: 14px 16px;
    font-size: 16px;
    line-height: 150%;
    border-radius: 32px;
    border: none;
    background-color: transparent;
  }

  .custom-option.active {
    background-color: #232332;
    color: #fff;
    position: relative;
  }

  .custom-option.active::after {
    content: '';
    width: 20px;
    height: 20px;
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    background-image: url(/local/templates/aio/assets/css/../img/filter-check-icon.svg);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
  }

  .custom-select.open .custom-select__trigger {
    color: #fff;
    background-color: #000;
  }

  :is(.custom-select.open .custom-select__trigger) .custom-select__trigger-decor {
    background-color: #232332;
    transform: rotate(180deg);
  }

  .custom-select.open .custom-options {
    opacity: 1;
    visibility: visible;
    transform: none;
    transition: all 0.2s ease-in;
  }
}
/* End */


/* Start:/local/templates/aio/assets/css/articlepage.css?175128933814506*/
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  background-color: #000;
}

main {
  flex-grow: 1;
}

footer::before {
  border-top: 1px solid #6e6e84;
}

.breadcrumbs .breadcrumbs__list {
  display: flex;
  align-items: center;
  column-gap: 36px;
}

.breadcrumbs .breadcrumbs__item {
  border-radius: 32px;
  padding: 4px 9px;
  background: rgba(255, 255, 255, 0.25);
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 143%;
  letter-spacing: -0.02em;
  color: #fff;
}

:is(.breadcrumbs .breadcrumbs__item) span {
  max-width: 134px;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.breadcrumbs .breadcrumbs__item:not(:first-child) {
  background: rgba(164, 195, 255, 0.25);
  color: #568fff;
  position: relative;
}

:is(.breadcrumbs .breadcrumbs__item:not(:first-child))::before {
  content: '';
  width: 28px;
  height: 28px;
  position: absolute;
  top: 0;
  left: -32px;
  background-image: url(/local/templates/aio/assets/css/../img/breadcrumbs-arrow.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.breadcrumbs .breadcrumbs__link {
  color: inherit;
}

@keyframes fadein {
  from {
    bottom: 20px;
    opacity: 0;
  }

  to {
    bottom: 35px;
    opacity: 1;
  }
}

@keyframes fadeout {
  from {
    bottom: 35px;
    opacity: 1;
  }

  to {
    bottom: 20px;
    opacity: 0;
  }
}

.article {
  height: 100%;
  padding-top: 114px;
  padding-bottom: 160px;
  background-color: #000;
}

.article .container {
  padding: 0;
  max-width: 925px;
  display: grid;
  grid-template-columns: 251px 650px;
  column-gap: 24px;
  transform: translateX(-15%);
}

.article .article__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 15px;
  margin-bottom: 24px;
}

.article .article__date {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 12px;
  line-height: 133%;
  letter-spacing: -0.02em;
  color: #6e6e84;
}

.article .article__title {
  font-family: var(--third-family);
  font-weight: 600;
  font-size: 40px;
  line-height: 120%;
  letter-spacing: -0.04em;
  color: #f4f5fd;
  margin-bottom: 24px;
}

.article .article__author {
  border: 1px solid #6e6e84;
  border-radius: 40px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.article .article__author-info {
  display: flex;
  align-items: center;
  column-gap: 12px;
}

.article .article__author-none {
  width: 56px;
  height: 56px;
}

:is(.article .article__author-none) img {
  width: 100%;
  object-fit: cover;
}

.article .article__author-avatar {
  display: block;
  border: 1px solid #f4f5fd;
  border-radius: 50%;
  width: 56px;
  height: 56px;
}

.article .article__author-desc {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  row-gap: 4px;
}

.article .article__author-name {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 133%;
  letter-spacing: -0.04em;
  color: #cacddc;
}

.article .article__author-team {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 12px;
  line-height: 133%;
  letter-spacing: -0.02em;
  color: #6e6e84;
}

.article .article__author-share {
  border: 1px solid #6e6e84;
  border-radius: 56px;
  height: 56px;
  padding: 0px 24px;
  display: flex;
  align-items: center;
  column-gap: 14px;
}

:is(.article .article__author-share) li span {
  font-family: var(--second-family);
  font-weight: 600;
  line-height: 150%;
  letter-spacing: -0.04em;
  color: #cacddc;
  position: relative;
  top: -1px;
}

:is(.article .article__author-share) li a {
  transition: opacity 0.3s ease-in;
}

:is(:is(.article .article__author-share) li a):hover {
  opacity: 0.7;
}

:is(.article .article__author-share) li:last-child a {
  position: relative;

}

:is(:is(.article .article__author-share) li:last-child a)::before {
  content: 'Link copied';
  position: absolute;
  width: max-content;
  background-color: #333;
  color: #fff;
  text-align: center;
  border-radius: 2px;
  padding: 5px 5px;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
  bottom: 35px;
  font-size: 14px;
  visibility: hidden;
}

:is(:is(.article .article__author-share) li:last-child a.show-toast)::before {
  visibility: visible;
  animation: fadein 0.5s, fadeout 0.5s 1s;
}

.article .article__content {
  border-bottom: 1px solid #6e6e84;
  margin-bottom: 64px;
}

:is(.article .article__content) img {
  width: 100%;
  height: 520px;
  border: 1px solid #6e6e84;
  border-radius: 32px;
  object-fit: cover;
  margin-bottom: 24px;
}

:is(.article .article__content) div:has(> ol) {
  margin-bottom: 64px;


}

:is(:is(.article .article__content) div:has(> ol)) h5 {
  font-family: var(--third-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 125%;
  color: #fff;
  margin-bottom: 8px;
}

:is(:is(.article .article__content) div:has(> ol)) ol {
  padding-left: 8px;
  list-style: none;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
}

:is(:is(.article .article__content) div:has(> ol)) a,
:is(:is(.article .article__content) div:has(> ol)) p {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.04em;
  color: #fff;
  margin-bottom: 0;
}

:is(:is(.article .article__content) div:has(> ol)) a {
  color: #568fff;
  transition: opacity 0.3s ease-in;
}

:is(:is(:is(.article .article__content) div:has(> ol)) a):hover {
  opacity: 0.7;
}

:is(:is(.article .article__content) div:has(> ol)) ul {
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  margin-bottom: 0;
}

:is(:is(:is(.article .article__content) div:has(> ol)) ul) li {
  padding-left: 28px;
  position: relative;
}

:is(:is(:is(:is(.article .article__content) div:has(> ol)) ul) li)::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #fff;
  position: absolute;
  top: 8px;
  left: 7px;
}

:is(.article .article__content) h2,
:is(.article .article__content) h3,
:is(.article .article__content) h4,
:is(.article .article__content) h5 {
  font-family: var(--third-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 125%;
  color: #fff;
  padding-left: 48px;
  margin-bottom: 16px;
  position: relative;
}

:is(:is(.article .article__content) h2, :is(.article .article__content) h3, :is(.article .article__content) h4, :is(.article .article__content) h5)::before {
  content: '';
  box-sizing: border-box;
  width: 40px;
  height: 40px;
  border: 1px solid #6e6e84;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(/local/templates/aio/assets/css/../img/book-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px 24px;
}

:is(:is(.article .article__content) h3)::before {
  background-image: url(/local/templates/aio/assets/css/../img/lamp-on.svg);
}

:is(:is(.article .article__content) h4)::before {
  background-image: url(/local/templates/aio/assets/css/../img/crown.svg);
}

:is(.article .article__content) h5 {
  padding-left: 0;
}

:is(:is(.article .article__content) h5)::before {
  display: none;
}

:is(.article .article__content) h6 {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 24px;
  line-height: 133%;
  letter-spacing: -0.04em;
  color: #e4e4e4;
  margin-bottom: 8px;
}

:is(.article .article__content) p {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.04em;
  color: #e4e4e4;
  margin-bottom: 64px;
}

:is(.article .article__content) ul {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 64px;
}

:is(:is(.article .article__content) ul) h6 {
  max-width: 300px;
}

:is(:is(.article .article__content) ul) p {
  margin-bottom: 0;
}

:is(.article .article__content) div:has(> ul) {
  border: 1px solid #6e6e84;
  border-radius: 24px;
  padding: 16px;
  margin-bottom: 64px;
}

:is(:is(.article .article__content) div:has(> ul)) ul {
  margin-bottom: 0;
  padding-bottom: 16px;
  overflow-x: auto;
}

:is(:is(:is(.article .article__content) div:has(> ul)) ul)::-webkit-scrollbar {
  width: 100%;
  height: 6px;
}

:is(:is(:is(.article .article__content) div:has(> ul)) ul)::-webkit-scrollbar-thumb {
  width: 100px;
  background: #6e6e84;
  border-radius: 10px;
}

:is(:is(:is(.article .article__content) div:has(> ul)) ul)::-webkit-scrollbar-track {
  background-color: #15151f;
  border: none;
  border-radius: 10px;
}

:is(:is(:is(.article .article__content) div:has(> ul)) ul)::-webkit-scrollbar-button {
  display: none;
}

@supports not selector(::-webkit-scrollbar) {
  :is(:is(.article .article__content) div:has(> ul)) ul {
    scrollbar-width: thin;
    scrollbar-color: #6e6e84 #15151f;
  }
}

:is(:is(.article .article__content) div:has(> ul)) li {
  min-width: 313px;
}

:is(.article .article__content) div:has(> p) {
  margin-bottom: 64px;
}

:is(:is(.article .article__content) div:has(> p)) p:first-child {
  margin-bottom: 16px;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.04em;
  color: #e4e4e4;
  padding-left: 20px;
  position: relative;
}

:is(:is(:is(.article .article__content) div:has(> p)) p:first-child)::before {
  content: '';
  width: 4px;
  height: 100%;
  background-color: #313ffe;
  border-radius: 8px;
  position: absolute;
  left: 0;
  top: 0;
}

:is(:is(.article .article__content) div:has(> p)) p:last-child {
  margin-bottom: 0;
  text-align: center;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
}

:is(:is(.article .article__content) div:has(> p)) a {
  display: block;
  text-align: center;
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 18px;
  line-height: 133%;
  text-align: center;
  color: #568fff;
  transition: opacity 0.3s ease-in;
}

:is(:is(:is(.article .article__content) div:has(> p)) a):hover {
  opacity: 0.8;
}

.article .article__bottom-title {
  font-family: var(--third-family);
  font-weight: 700;
  font-size: 32px;
  line-height: 125%;
  color: #fff;
  margin-bottom: 16px;
}

.article .article__bottom-items {
  display: flex;
  align-items: center;
  column-gap: 24px;
}

.article .article__article-card {
  width: 313px;
  min-height: 410px;
  border: 1px solid #6e6e84;
  border-radius: 32px;
  background-color: #000;
  padding: 24px;
  display: flex;
  flex-direction: column;
  row-gap: 24px;
  cursor: pointer;
}

.article .article__card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.article .article__card-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 9px;
  border-radius: 32px;
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 14px;
  line-height: 143%;
  letter-spacing: -0.02em;
}

.article .article__card-tag--blue {
  background: rgba(164, 195, 255, 0.25);
  color: #568fff;
}

.article .article__card-tag--yellow {
  background: rgba(230, 243, 85, 0.25);
  color: #e6f355;
}

.article .article__card-tag--red {
  background: rgba(255, 106, 42, 0.25);
  color: #ff6a2a;
}

.article .article__card-tag--green {
  background: rgba(34, 205, 72, 0.25);
  color: #22cd48;
}

.article .article__card-date {
  font-family: var(--second-family);
  font-weight: 600;
  font-size: 12px;
  line-height: 133%;
  letter-spacing: -0.02em;
  color: #6e6e84;
}

.article .article__card-image {
  height: 222px;
  border: 1px solid #6e6e84;
  border-radius: 16px;
  background-color: #000;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

:is(.article .article__card-image) img {
  width: 100%;
}

.article .article__card-title {
  font-family: var(--third-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
  letter-spacing: -0.04em;
  color: #fff;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article .article__popup {
  position: sticky;
  top: 50%;
  border: 1px solid #6e6e84;
  border-radius: 32px;
  width: 251px;
  background-color: #000;
  transition: visibility 0.2s ease-in, opacity 0.2s ease-in;
}

:is(.article .article__popup) .article__popup-inner {
  display: flex;
  flex-direction: column;
  position: relative;
}

:is(.article .article__popup) .article__popup-image {
  margin-top: -74px;
  margin-bottom: -29px;
}

:is(:is(.article .article__popup) .article__popup-image) img {
  width: 251px;
  height: 330px;
  object-fit: cover;
}

:is(.article .article__popup) .article__popup-info {
  border-top: 1px solid #6e6e84;
  padding: 16px;
  text-align: center;
}

:is(.article .article__popup) .article__popup-title {
  font-family: var(--third-family);
  font-weight: 700;
  font-size: 24px;
  line-height: 133%;
  color: #fff;
  margin-bottom: 8px;
}

:is(.article .article__popup) .article__popup-suptitle {
  font-family: var(--second-family);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: -0.04em;
  text-align: center;
  color: #fff;
  margin-bottom: 16px;
}

:is(.article .article__popup) .article__popup-btn {
  width: 100%;
  padding: 12px 32px;
}

:is(.article .article__popup) .article__popup-close {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #000;
  border: 1px solid #e6f355;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  cursor: pointer;
  position: absolute;
  top: 16px;
  right: 16px;
}

.article .article__popup.closed {
  visibility: hidden;
  opacity: 0;
}

@media (max-width: 1223px) {

  .article .container {
    display: block;
    max-width: 682px;
    padding: 0 16px;
    transform: none;
  }

  .article .article__bottom-items {
    overflow-x: auto;
    padding-left: 16px;
    padding-right: 16px;
    margin-left: -16px;
    margin-right: -16px;

    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  :is(.article .article__bottom-items)::-webkit-scrollbar {
    display: none;
  }

  .article .article__popup_wrap {
    display: none;
  }
}

@media (max-width: 500px) {
  .article .article__author {
    border-radius: 32px;
  }

  .article .article__author-none {
    display: none;
  }

  .article .article__author-share {
    border-radius: 32px;
    width: 100%;
  }

  :is(.article .article__content)>ul {
    flex-direction: column;
  }
}
/* End */
/* /local/templates/aio/assets/css/blogpage.css?17512893867665 */
/* /local/templates/aio/assets/css/articlepage.css?175128933814506 */
