.blog-posts {
  .main-content-area {
    article {
      position: relative;
      margin-bottom: 30px;
      .entry-header {
        position: relative;
        .post-thumb {
          position: relative;
          overflow: hidden;
          margin-bottom: 0;
          .thumb {
            border-radius: 10px;
            img {
              display: block;
              width: 100%;
              @include transition(all 400ms ease);
            }
            &:after {
              display: none;
            }
            &:before {
              background: rgba(255, 255, 255, 0.3);
              bottom: 0;
              content: "";
              left: 50%;
              position: absolute;
              right: 51%;
              top: 0;
              opacity: 1;
              pointer-events: none;
              z-index: 1;
              @include transition(all 400ms linear);
            }
          }
        }
        .link {
          background: #333;
          position: absolute;
          left: 0;
          top: 45%;
          right: 0;
          height: 50px;
          width: 50px;
          color: #fff;
          padding: 10px;
          text-align: center;
          margin: 0 auto;
          z-index: 1;
          opacity: 0;
          @include transition(all 0.4s ease-in-out);
        }
        .post-single-meta {
          position: absolute;
          right: 20px;
          top: 20px;
          background: var(--theme-color1);
          color: var(--theme-color2);
          z-index: 1;
          @include vertical-center;
          height: 52px;
          width: 52px;
          align-items: center;
          font-size: 12px;
          font-weight: 600;
          line-height: 16px;
          text-transform: uppercase;
          span {
            display: block;
            font-size: 14px;
            font-weight: 600;
            text-align: center;
            color: var(--theme-color2);
            &.day {
              font-weight: 600;
            }
            &.month {
              font-size: 12px;
            }
            &.year {
              display: none;
            }
          }
          &:before {
            @include overlay;
            top: 6px;
            background-color: var(--theme-color1);
            content: "";
            opacity: 0.3;
            z-index: -1;
          }
        }
      }
      .entry-content {
        position: relative;
        padding: 30px 40px 35px;
        background-color: #fff;
        border-radius: 10px;
        z-index: 2;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.07);
        @include transition(all 300ms ease);
        .entry-title {
          margin-bottom: 15px;
          &:hover {
            color: var(--theme-color1);
          }
        }
        .entry-meta {
          li {
            i {
              color: var(--theme-color1);
            }
            &.posted-date {
              background: var(--theme-color1);
              padding: 5px 20px;
              border-radius: 10px;
              margin-right: 10px;
              z-index: 1;
              a {
                font-size: 12px;
                line-height: 20px;
                color: #fff;
                font-weight: 700;
              }
              i {
                display: none;
              }
            }
          }
        }
        .post-excerpt {
          margin-bottom: 15px;
        }
        .read-more {
          position: relative;
          font-size: 12px;
          line-height: 25px;
          color: #0f0f0f;
          font-weight: 700;
          display: flex;
          align-items: center;
          text-transform: uppercase;
          letter-spacing: 0.1em;
          @include transition(all 100ms linear);
          i {
            margin-right: 10px;
            font-size: 16px;
            @include transition(all 100ms linear);
          }
          &:hover {
            color: var(--theme-color1);
            @include transform(translateX(-25px));
            i {
              @include transform(translateX(15px));
              opacity: 0;
            }
          }
        }
      }
      &:hover {
        .entry-header {
          .post-thumb {
            .thumb {
              img {
                @include transform (scale(1.1));
              }
              &:before {
                left: 0;
                right: 0;
                opacity: 0;
                @include transition(all 400ms linear);
              }
            }
          }
        }
        .content-box {
          box-shadow: 0 10px 60px rgba(0, 0, 0, 0.1);
        }
      }
    }
  }
}
.blog-posts {
  .main-content-area {
    .isotope-layout .isotope-item {
      article {
        margin-bottom: 0px;
      }
    }
  }
}

@-webkit-keyframes circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}
@keyframes circle {
  0% {
    opacity: 1;
  }
  40% {
    opacity: 1;
  }
  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

.blog-posts {
  .main-content-area {
    article.has-post-thumbnail {
      .entry-content {
        margin-top: -65px;
        margin-left: 30px;
        border-radius: 10px 0 10px 10px;
      }
    }
  }
}
