.article__meta {
  display: flex;
  align-items: center;
  column-gap: 1rem;

  color: initial;

  list-style-type: none;
}

.article__meta-item {
  font-size: .875rem;
}

@media (max-width: 768px) {
  .article__meta-item {
    display: flex;
    flex-direction: column;
    gap: .25rem;

    font-size: .75rem;
  }
}

.article__time,
.article__read-time {
  font-weight: bold;
}

.article__main-wrapper {
  position: relative;

  display: flex;
  justify-content: flex-start;
  gap: 2.5rem;
  width: 100%;

  margin-bottom: 4rem;
}

.article__content {
  flex: 1;
  min-width: 0;

  margin: 2rem 0;

  color: initial;
}

.article__content * {
  line-height: 1.5;
}

.article__content p {
  margin: 1rem 0;
}

.article__content h2 {
  margin: 1rem 0;
}

@media (max-width: 768px) {
  .article__content h2 {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .article__content h2 {
    font-size: 1.5rem;
  }
}

.article__content > img {
  width: 100%;
  height: auto;

  margin: 1rem 0;
}

.article__content sup {
  color: #07b9ed;
}

.article__content ul li,
.article__content ol li {
  margin: 4px 0;
}

@media (max-width: 768px) {
  .article__content p,
  .article__content ul li,
  .article__content ol li {
    font-size: .875rem;
  }
}

.article__aside {
  flex-shrink: 0;

  width: 300px;
}

@media (max-width: 768px) {
  .article__aside {
    display: none;
  }
}

.article__aside-sticky {
  max-height: calc(100vh - 140px);

  padding: 1rem 1.5rem;

  color: #fff;

  background-color: #07b9ed;
  border-radius: 1.5rem;

  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #ccc transparent;
}

.article__aside-sticky::-webkit-scrollbar {
  width: .25rem;
}

.article__aside-sticky::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 1rem;
}

.article__aside-title {
  margin-bottom: 1rem;

  font-size: 1.5rem;
  font-weight: bold;
}

@media (max-width: 768px) {
  .article__aside-title {
    font-size: 1.25rem;
  }
}

@media (max-width: 480px) {
  .article__aside-title {
    font-size: 1rem;
  }
}

.article__aside ul {
  margin: 0;
  padding: 0;

  list-style: none;
}

.article__aside ul li {
  margin-bottom: .5rem;
}


.note {
  margin: 1rem 0;
  padding: .5rem;

  border-top: 1px solid;
  border-bottom: 1px solid;
}

.note--important {
  border-top-color: #07b9ed;
  border-bottom-color: #07b9ed;
}



.quote {
  display: grid;
  grid-template-columns: 20% 80%;
  justify-content: center;
  align-items: center;

  margin: 1.5rem 0;
}

.quote__avatar {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
}

.quote__content {
  position: relative;

  margin-left: -20px;
  padding: 24px;

  font-size: 1rem;
  color: #134294;

  background-color: #d7f4ff;
  border-radius: 20px;
}

.quote__content::before {
  content: "“";
  position: absolute;
  top: 0;
  left: 12px;

  font-size: 2rem;

  opacity: .5;
}

.quote__meta {
  margin-top: 24px;

  font-size: inherit;
  text-align: right;

  border-radius: 8px;
}

.quote__meta > p {
  margin: .25rem 0;
}


.faq,
.sources {
  margin: 4rem 0;
}

.faq__title,
.sources__title {
  margin-bottom: 1.5rem;

  font-size: 2rem;
  font-weight: 700;
  color: #07b9ed;
}

@media (max-width: 768px) {
  .faq__title,
  .sources__title {
    font-size: 1.75rem;
  }
}

@media (max-width: 480px) {
  .faq__title,
  .sources__title {
    font-size: 1.5rem;
  }
}

.faq .main-faq-item {
  color: initial;
}

.faq .main-faq-item .main-faq-icon svg:nth-child(1) {
  display: block;
}

.faq .main-faq-item .main-faq-icon svg:nth-child(2) {
  display: none;
}

.faq .main-faq-item.opened .main-faq-icon svg:nth-child(1) {
  display: none;
}

.faq .main-faq-item.opened .main-faq-icon svg:nth-child(2) {
  display: block;
}

.faq .main-faq-question {
  flex: none;

  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 1rem;

  padding: 1rem .5rem;

  font-size: 1.25rem;
  font-weight: 600;

  cursor: pointer;
}

.faq .main-faq-icon {
  flex-shrink: 0;

  display: flex;
  justify-content: center;
  align-items: center;
  width: 3rem;
  height: 3rem;

  color: #fff;

  background-color: #07b9ed;
  border-radius: 50%;
}

.faq .main-faq-answer {
  display: none;

  padding: 0 1.5rem;

  font-size: 1rem;
}

@media (max-width: 768px) {
  .faq .main-faq-question {
    font-size: 1rem;
  }

  .faq .main-faq-answer {
    font-size: .875rem;
  }
}


.sources__list {
  color: initial;
}

.sources__item {
  margin: .5rem 0;
}


.authors {
  display: flex;
  flex-direction: column;
  gap: 1rem;

  margin-top: 1rem;
  margin-bottom: 2rem;
}

.authors__block {
  display: flex;
  align-items: center;
  gap: 2rem;

  padding: 1.25rem;

  background: #07b9ed;
  border-radius: 1.5rem;
}

.authors__photo img {
  display: block;
  width: 100px;

  border-radius: .5rem;
}

.authors__info {
  color: #fff;
}

.authors__name {
  font-size: 1.5rem;
  font-weight: 700;
}

.authors__description {
  margin-top: 1rem;

  font-size: 1.25rem;
}

@media (max-width: 768px) {
  .authors__name {
    font-size: 1.25rem;
  }

  .authors__description {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .authors__name {
    font-size: 1rem;
  }

  .authors__description {
    font-size: .875rem;
  }
}


.share {
  margin: 4rem 0;
}

.share__link {
  display: block;
  margin-bottom: 1rem;

  font-size: 1.25rem;
}

.share__link:hover {
  text-decoration: none;
}
