.aae--posts-tab {
  svg {
    width: 1em;
    height: 1em;
  }

  .thumb {
    img {
      object-fit: cover;
    }
  }

  .link svg {
    width: 1em;
    height: 1em;
  }

  .posts-banner {
    width: 100%;
    height: 680px;
    overflow: hidden;
    position: relative;

    &::after {
      position: absolute;
      content: "";
      width: 100%;
      height: 100%;
      left: 0;
      top: 0;
      pointer-events: none;
    }

    .thumb {
      height: 100%;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;

      img {
        width: 100%;
        height: 100%;
      }

      .play-icon {
        position: absolute;
        left: 50%;
        top: 25%;
        transform: translate(-50%, 0);
        border: 2px solid #fff;
        border-radius: 100%;
        width: 85px;
        height: 85px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #fff;
        fill: #fff;
        z-index: 1;
      }
    }
  }

  .aae-posts {
    display: grid;
    flex-basis: auto;
  }

  .aae-post {
    display: flex;
    gap: 15px;
    border-right: 1px solid #222;

    &:last-child {
      border-right: none;
    }
  }

  .aae-posts-wrap {
    display: flex;
    border-top: 1px solid #222;
    position: absolute;
    bottom: 0;
    left: 0;
  }

  &.style-2 {
    .posts-banner {
      height: 680px;
    }

    .aae-posts-wrap {
      display: flex;
      border-top: 1px solid #222;
      position: absolute;
      bottom: 0;
      left: 0;
    }

    .aae-posts {
      flex-basis: auto;
    }

    .aae-view-all {
      flex-basis: 200px;
      border-left: 1px solid #222;
    }

  }

}

// demo 
.posts-banner img {
  display: block;
  width: 100%;
  height: 400px;

  .aae-view-all {
    flex-basis: 200px;
    border-left: 1px solid #222;
    display: flex;
    align-items: center;
  }
}