.blog-body {
  opacity: 0;
  .container {
    display: grid;
    gap: 40px;
    grid-template-columns: 1fr 400px;
    align-items: start;
    @media (max-width: 1280px) {
      gap: 30px;
      grid-template-columns: 1fr 330px;
    }
    @media (max-width: 1024px) {
      grid-template-columns: 1fr;
    }
    article {
      .featured-image {
        margin-bottom: 2em;
        border-radius: var(--br-md);
        overflow: hidden;
        img {
          width: 100%;
        }
      }
      .blog-top {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 2em;
        date {
          color: var(--c-primary-200);
          font-weight: 700;
        }
        .share {
          ul {
            display: flex;
            gap: 12px;
            margin: 0;
            padding: 0;
            list-style: none;
            li {
              a {
                display: block;
                svg {
                  path {
                    transition: fill 0.3s ease;
                  }
                }
                &:hover {
                  svg {
                    path {
                      fill: var(--c-gray-600);
                    }
                  }
                }
              }
            }
          }
        }
      }
      .text {
        font-weight: 400;
      }
    }
    aside {
      padding: 30px 30px 50px;
      color: var(--c-white);
      background-color: var(--c-gray-600);
      border-radius: var(--br-md);
      h3 {
        margin: 0 0 0.5em;
        text-align: center;
      }
      .blog-similars {
        margin-bottom: 2em;
        ul {
          margin: 0;
          padding: 0;
          list-style: none;
          li {
            a {
              display: block;
              padding: 18px 0;
              color: var(--c-white);
              border-bottom: 1px dashed rgba(255, 255, 255, 0.4);
              transition: color 0.3s ease, border-color 0.3s ease;
              &:hover {
                color: var(--c-primary-200);
                border-color: var(--c-primary-200);
              }
            }
          }
        }
      }
      .cta {
        display: flex;
        justify-content: center;
      }
    }
  }
}
