.wrapper {
  justify-content: left;
}

.head {
  position: relative;
  padding-top: 2rem;
  margin-top: 0;
  margin-bottom: 3.75rem;

  @media (max-width: 768px) {
    margin-bottom: 2.5rem;
  }

  & .head-content {
    /* max-width: calc(312px + 25%); */
    margin-bottom: 3rem;

    @media (max-width: 768px) {
      margin-bottom: 2rem;
    }

    & h1 {
      margin-top: 0;
    }
  }

  & img {
    border-radius: 16px;
    width: 100%;
  }
}

.tags-section {
  margin-block: 0;

  & .tags {
    margin-inline: 0;
    margin-top: 0;
    align-self: flex-start;
    padding-inline: 0;
    margin-bottom: 5rem;

    @media (max-width: 768px) {
      margin-bottom: 3.75rem;
    }
  }
}

.article-content {
  margin-top: 0;

  @media (max-width: 1200px) {
    margin-bottom: 60px;
  }

  & .article-content__wrapper {
    max-width: 824px;
  }

  & p {
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
    letter-spacing: 0%;
    margin-block: 0 0.5rem;

    & strong {
      font-weight: 600;
    }
  }

  & h3 {
    margin-block: 3rem 2rem;
    font-weight: 600;
    font-size: 24px;
    line-height: 36px;
    letter-spacing: 0%;
  }

  & ul,
  ol {
    padding-inline-start: 1.5rem;
    margin-block: 1rem 3rem;
  }

  & li {
    margin-block: 1rem 1.5rem;

    & h4, strong {
      margin-block: 0.5rem;
      font-weight: 600;
      font-size: 16px;
      line-height: 24px;
    }
  }

  & ul {
    & li {
      margin-block: 0.5rem;
    }
  }
}

.wrapper .social-icons {
  display: flex;
  gap: 1.5rem;
  margin-top: 0;

  & a {
    position: relative;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #fff;
    width: 2rem;
    height: 2rem;
  }

  & img {
    opacity: 1;
    transition: all 0.2s ease;
  }

  & img.active {
    position: absolute;
    opacity: 0;
    left: 0;
  }

  & a:hover {
    & img {
      opacity: 0;
    }

    & img.active {
      opacity: 1;
    }
  }
}
