
.blog-posts {
  .main-content-area {
    article {
      overflow: hidden;
      position: relative;
      border-radius: 0;
      -webkit-transition: all .3s cubic-bezier(.70,.04,.37,1);
      transition: all .3s cubic-bezier(.70,.04,.37,1);
      @include box-shadow( 0px 0px 50px rgba(5, 5, 5, 0.08) );
      .entry-header {
        position: relative;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        transform: translateY(0);
        -webkit-transition: all .3s cubic-bezier(.70,.04,.37,1);
        transition: all .3s cubic-bezier(.70,.04,.37,1);
        .thumb {
          border-radius: 7px 7px 0 0;
          text-align: center;
          img {
            width: auto;
            @include scale(1);
            @include transition(all .4s ease-in-out);
          }
        }
        .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 .4s ease-in-out);
        }
        .post-single-meta {
          text-align: center;
          top: 20px;
          border-radius: 0;
          font-size: 16px;
          padding: 4px 22px;
          left: 31px;
          position: absolute;
          background: rgba(255,255,255,0.7);
          z-index: 1;
          .entry-date {
            font-size: 15px;
            font-weight: 500;
            letter-spacing: 1px;
            text-transform: uppercase;
          }
          span {
            &.year {
              display: none;
            }
          }
        }
        .entry-meta{
          border-top: none;
          margin-bottom: 10px;
          position: absolute;
          bottom: 15px;
          left: 31px;
          z-index: 1;
          li {
            i {
              color: var(--theme-color1);
            }
            span {
              color: #fff;
              a {
                color: #fff;
              }
            }
          }
        }
        &:after {
          content: "";
          position: absolute;
          height: 100%;
          width: 100%;
          background: linear-gradient(0deg, black, transparent);
          top: 0;
          z-index: 0;
        }
      }
      .entry-content {
        padding: 30px;
        background-color: #fff;
        position: relative;
        &:after {
          content: "";
          height: 3px;
          width: 132px;
          background: var(--theme-color1);
          position: absolute;
          bottom: 0;
          left: 30px;
          @include transition(all .3s ease);
        }
        > :last-child {
          margin-bottom: 0;
        }
        .entry-title {
          font-size: $archive-news-title-font-size;
          margin-top: 0;
          margin-bottom: 0.7rem;
          text-transform: capitalize;
        }
        .post-excerpt {
          .mascot-post-excerpt {
          }
        }
        .post-btn-readmore {
          .btn {
            display: inline-block;
          }
          .btn {
            color: #726f6f;
            font-size: 15px;
            &:hover, &:focus {
              color: #000;
            }
          }
        }
      }
      .bottom-boder-line{
        background-color: #fff;
        border-radius: 3px;
        height: 4px;
        @include transition(all .3s ease);
      }
      &:hover {
        box-shadow: 0 20px 30px rgba(0,0,0,.10);
        .entry-header {
          .thumb {
            img {
              @include scale(1.1);
            }
          }
          .link {
            opacity: 1;
            transform: rotateY(180deg);
          }
        }
        .entry-content {
          &:after {
            background: var(--theme-color3);
            @include transition(all .3s ease-in-out);
          }
        }
        .bottom-boder-line{
          background-color: var(--theme-color1);
          @include transition(all .3s ease);
        }
      }
    }
  }
}
.blog-posts {
  .main-content-area {
    .isotope-layout .isotope-item {
      article {
        margin-bottom: 0;
      }
    }
  }
}