
.blog-posts {
  .main-content-area {
    article {
      @include box-shadow( 0px 0px 50px rgba(5, 5, 5, 0.08) );
      -webkit-transition: all .3s cubic-bezier(.70,.04,.37,1);
      transition: all .3s cubic-bezier(.70,.04,.37,1);
      border-radius: 7px;
      overflow: hidden;
      .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: 32px;
          border-radius: 10px;
          font-size: 16px;
          font-weight: 900;
          height: 69px;
          left: 32px;
          line-height: 22px;
          display: flex;
          align-items: center;
          justify-content: center;
          position: absolute;
          width: 69px;
          background: var(--theme-color1);
          span {
            display: block;
            color: #fff;
            text-transform: uppercase;
            font-size: 13px;
            &.day {
              font-size: 24px;
            }
            &.year {
              display: none;
            }
          }
        }
      }
      .entry-content {
        padding: 30px;
        background-color: #fff;
        position: relative;
        .entry-title {
          font-size: $archive-news-title-font-size;
          margin-top: 0;
          margin-bottom: 0.7rem;
          text-transform: capitalize;
          a{
            &:hover{
              color: var(--theme-color1);
            }
          }
        }
        .post-excerpt {
          .mascot-post-excerpt {
          }
        }
        .entry-meta {
          margin-bottom: 10px;
          color: var(--theme-color2);
          li {
            i {
              color: var(--theme-color1);
            }
            .byline {
              color: #9a9a9a;
            }
          }
        }
      }
      .post-btn-readmore {
        .btn-plain-text-with-arrow-current-style {
          color: var(--text-color-bg-theme-color1);
          background-color: var(--theme-color1);
          border: 0;
          border-radius: 50%;
          font-size: 1rem;
          height: 48px;
          line-height: 48px;
          text-align: center;
          width: 48px;
          align-items: center;
          display: flex;
          justify-content: center;
          @include transition(all .3s ease);
          &:hover {
            color: var(--text-color-bg-theme-color2);
            background-color: var(--theme-color2);
            transform: rotate(360deg);
          }
        }
      }
      &:hover {
        .entry-header {
          .thumb {
            img {
              @include scale(1.1);
            }
          }
          .link {
            opacity: 1;
            transform: rotateY(180deg);
          }
        }
      }
    }
  }
}
.blog-posts {
  .main-content-area {
    .isotope-layout .isotope-item {
      article {
        margin-bottom: 0;
      }
    }
  }
}