.post {
  margin-bottom: 30px;
  max-width: 100%;
  /* Post Gallery */
  .post-gallery {
    display: block;
    margin-bottom: 25px;
    background: $black;
    overflow: hidden;
    position: relative;
    .thb_counts {
      background: rgba(#000,0.8);
      color: #fff;
      bottom: 0;
      left: 0;
      position: absolute;
      font-size: 16px;
      font-weight: 600;
      display: flex;
      width: 34px;
      height: 34px;
      line-height: 1;
      justify-content: center;
      align-items: center;
      text-align: center;
    }
    &>a {
      display: block;
      width: 100%;
    }
    .wp-post-image {
      width: 100%;
      will-change: transform;
      @include transition(all .75s $transition);
    }
    &.thb-parallax {
      .wp-post-image {
        opacity: 1;
        will-change: transform;
        object-fit: cover;
        height: 100%;

        .thb-parallax-on & {
          @include transition(none);
          @include transition(opacity .5s $transition);
        }
      }

      iframe,
      video {
        will-change: transform;
      }
      &:after {
        content: '';
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: rgba($black, 0.125);
      }
    }
    &:hover {
      .wp-post-image {
        @include scale(1.04);
      }
    }
    .post-video-play {
      width: 40px;
      height: 40px;
      position: absolute;
      top: 50%;
      left: 50%;
      margin: -20px 0 0 -20px;
      display: flex;
      justify-content: center;
      align-items: center;
      border-radius: 50%;
      background: rgba(#000,0.8);
      .thb-video-icon {
        fill: #fff;
        height: 11px;
        margin-left: 2px;
      }
    }
    .thb-post-icon {
			position: absolute;
			top: 10px;
			left: 10px;
			z-index: 99;
			background: rgba(#000,0.8);
			display: flex;
			justify-content: center;
			align-items: center;
			text-align: center;
      pointer-events: none;
			width: auto;
      min-width: 42px;
			height: 30px;
			border-radius: 16px;
			padding: 0 13px;
			color: #fff;
			font-size: 11px;
      line-height: 1;
			font-weight: 500;
      @include translateZ(0);

      @include min-break($break-small) {
        top: 20px;
  			left: 20px;
      }
			svg {
				display: block;
				fill: #fff;
				width: 12px;
				height: auto;

				&.thb-video-icon {
					height: 10px;
					margin-left: 2px;
				}
			}
      .gallery_count,
      .review_count {
        margin-left: 8px;

        .rtl & {
          margin-left: 0;
          margin-right: 8px;
        }
      }
			.review_count {
				font-size: 11px;
      }
    } // .thb-post-icon
  }
  /* Sticky */
  &.sticky {
    .post-title {
      a>span {
        border-color: $accent;
      }
    }
  }
  /* Post Title */
  .post-title {
    margin-bottom: 10px;
    white-space: normal;
    a {
      display: block;
      color: $black;
      >span {
        width: calc(100%);
        border-bottom: 1px solid transparent;
        word-break: break-word;
        @extend .mid-transition;
      }
      &:hover {
        color: $black;
        >span {
          border-color: $color2;
        }
      }
    }
    .thb-capitalize-on & {
			text-transform: uppercase;
		}
  }
  /* Post Category */
  .post-category {
    font-size: 11px;
    line-height: 1;
    text-transform: uppercase;
    margin-bottom: 15px;
    flex-wrap: wrap;
    letter-spacing: 0.05em;
  }
  /* Post Excerpt */
  .post-excerpt {
    font-size: 14px;
    margin-bottom: 15px;
    p {
      font-size: inherit;
      margin: 0;
    }
  }
  /* Read More */
  .thb-read-more {
    margin-top: 20px;
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: $black;
    position: relative;
    text-transform: uppercase;
    &:after {
      content: '';
      position: absolute;
      top: 50%;
      margin-top: -0.5px;
      height: 1px;
      left: -7px;
      width: calc(100% + 14px);
      background: $accent;
      @include scale(0,1);
      transform-origin:0 0;
      @extend .mid-transition;
    }

    &:hover {
      color: $accent;

      &:after {
        @include scale(1,1);
      }
    }
  }
  /* Post date */
  .thb-post-date {
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1;
  }
  /* Post Bottom Meta */
  .thb-post-bottom {
    padding-top: 5px;
    font-size: 10px;
    text-transform: uppercase;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.05em;
    .post-author {
      margin-bottom: 7px;
      em {
        font-style: normal;
      }
      [rel="author"] {
        font-weight: 600;
      }
    }
    ul {
      display: flex;
      flex-wrap: wrap;
      list-style: none;
      margin: 0;
      padding: 0;
      li {
        display: inline-block;
        color: rgba($black,0.7);
        & + li {
          margin-left: 3px;

          @include min-break($break-small) {
            margin-left: 8px;
          }
          .rtl & {
            margin: 0 3px 0 0;

            &:before {
              margin-left: 3px;
              margin-right: 0;

              @include min-break($break-small) {
                margin-left: 8px;
              }
            }
            @include min-break($break-small) {
              margin-right: 8px;
            }
          }
          &:before {
            content: '\00b7';
            font-weight: 600;
            color: #b5b5b5;
            margin-right: 3px;

            @include min-break($break-small) {
              margin-right: 8px;
            }
          }
        }
      }
    }
    &.sponsored-bottom {
      ul li {
        color: $accent;
      }
    }
    .post-share {
      position: relative;
      cursor: pointer;
      &:hover {
        color: $color2;

        .post-share-bubble {
          opacity: 1;
          visibility: visible;
        }
      }

      .post-share-bubble {
        position: absolute;
        bottom: 100%;
        left: 50%;
        @include translate3d(calc(-50% + 8px), 0, 0);
        padding-bottom: 15px;
        opacity: 0;
        visibility: hidden;
        @extend .quick-transition;

        .post-share-icons {
          background: #fff;
          border: 1px solid #e6e6e6;
          border-radius: 2px;
          position: relative;
          height: 38px;
          display: flex;
          line-height: 1;
          align-items: center;
          font-size: 14px;
          padding: 0 8px;
          @include box-shadow(0 1px 4px rgba(0,0,0,0.05));
          .post-social-share {
            display: inline-block;
            padding: 5px 7px;
            @each $profile, $color in $social {
              &.#{$profile} {
                &:hover {
                  color: $color;
                }
              }
            }
          }
          &:before {
          	top: calc(100% - 6px);
          	left: 50%;
          	content: " ";
          	height: 12px;
          	width: 12px;
            margin-left: -7px;
            border-radius: 2px;
          	position: absolute;
          	pointer-events: none;
            background-color: #fff;
            border: 1px solid transparent;
            border-left-color: #e6e6e6;
            border-bottom-color: #e6e6e6;
            @include rotateZ(-45);
            @include box-shadow(-1px 1px 3px -1px rgba(0,0,0,0.05));
          }
        }
      }
    }
  } // .thb-post-bottom

  /* Center Contents */
  &.center-contents {
    text-align: center;

    .thb-post-bottom {
      ul {
        justify-content: center;
        flex-wrap: wrap;
      }
    }
  }
	/* Center Bottom Contents */
  &.center-bottom-contents {
    text-align: center;

    .thb-post-bottom {
      ul {
        justify-content: center;
        flex-wrap: wrap;
      }
    }
		&.featured-style {
			justify-content: flex-end;

			.post-inner-content {
				height: auto;
				width: 100%;
				@include background-image(linear-gradient(rgba(0,0,0,0), rgba(0,0,0,0.55)));
			}
		}
  }
  /* Category over Photo */
  &.block-category {

    .post-category {
      position: absolute;
      bottom: 0;
      left: 50%;
      margin: 0;
      background: #fff;
      max-height: 30px;
      display: flex;
      align-items: center;
      justify-content: center;
      max-width: 100%;
      padding: 10px 20px;
      @include translateX(-50%);
    }
  }
  /* Post Styles */
  &.style1 {
    &.center-contents {
      .post-title {
        padding-left: 5%;
        padding-right: 5%;
      }
      .post-excerpt {
        padding: 0 5%;
      }
      .archive & {
        margin-bottom: 40px;
      }
    }
  } // .style1
  &.thumbnail-style1 {
    display: flex;
    align-items: stretch;
    max-width: 470px;
    .thb-post-bottom.sponsored-bottom {
      li:nth-child(2) {
        display: none;
      }
    }
    .post-gallery {
      width: 110px;
      margin-bottom: 0;
      flex-shrink: 0;

      >a {
        height: 100%;
      }
      .wp-post-image {
        @extend .object-fit;
      }
      @include min-break($break-small) {
        width: 140px;
      }
    }
    .thumbnail-style1-inner {
      background: #fff;
      padding: 15px;
      white-space: normal;
      width: 100%;
      @include min-break($break-small) {
        padding: 25px;
      }
      .post-category,
      .post-title {
        margin-bottom: 10px;
      }
      h6 {
        margin-bottom: 0;
      }
    }
  } // .thumbnail-style1
  &.thumbnail-style2,
  &.thumbnail-style3 {
    display: flex;
    align-items: center;
    .thb-post-bottom.sponsored-bottom {
      li:nth-child(2) {
        display: none;
      }
    }
    .post-gallery {
      width: 74px;
      height: 74px;
      margin-bottom: 0;
      margin-right: 30px;
      flex-shrink: 0;
      border-radius: 37px;
      position: relative;
      .rtl & {
        margin-right: 0;
        margin-left: 30px;
      }
      >a {
        height: 100%;
      }
      .wp-post-image {
        border-radius: 37px;
        opacity: 0.8;
        @extend .object-fit;
      }
      .thumb_count {
        color: #fff;
        font-size: 28px;
        font-weight: 600;
        position: absolute;
        top: 50%;
        left: 50%;
        @include translate3d(-50%, -50%, 0);
      }
    }
    .thumbnail-style2-inner {
      white-space: normal;
      .post-category {
        margin-bottom: 5px;
      }
      .post-title {
        margin-bottom: 0;
      }
      h5 {
        margin-bottom: 0;
      }
    }
  } // .thumbnail-style2
  &.thumbnail-style4 {
    display: flex;
    align-items: center;
    .thb-post-bottom.sponsored-bottom {
      li:nth-child(2) {
        display: none;
      }
    }
    .post-gallery {
      width: 90px;
      height: 90px;
      margin: 0 20px 0 0;
      min-height: 100%;
      flex-shrink: 0;
      position: relative;

      @include min-break($break-small) {
        width: 50px;
        height: 50px;
        margin: 0 10px 0 0;
      }

      @include min-break($break-medium) {
        width: 90px;
        height: 90px;
        margin: 0 20px 0 0;
      }
      >a {
        height: 100%;
      }
      .wp-post-image {
        @extend .object-fit;
      }
      .rtl & {
        margin-right: 0;
        margin-left: 20px;
      }
      .thumb_count {
        font-size: 12px;
        font-weight: 600;
        background: rgba(#000,0.8);
        color: #fff;
        width: 24px;
        height: 24px;
        display: flex;
        line-height: 1;
        justify-content: center;
        align-items: center;
        position: absolute;
        z-index: 10;
        bottom:0;
        left: 0;
      }
    }
    .thumbnail-style4-inner {
      white-space: normal;
      .post-category,
      .post-title {
        margin-bottom: 10px;
      }
      .post-title + .thb-post-bottom {
        padding-top: 0;
      }
      h6 {
        margin-bottom: 0;
      }
    }

  } // .thumbnail-style4
  &.thumbnail-style5 {
    .post-title {
      margin: 0;
    }
  } // .thumbnail-style5
  &.thumbnail-style6 {
    display: flex;
    align-items: center;
    cursor: pointer;
    .thb-post-bottom.sponsored-bottom {
      li:nth-child(2) {
        display: none;
      }
    }
    .post-gallery {
      width: 90px;
      height: 90px;
      margin: 0 20px 0 0;
      min-height: 100%;
      flex-shrink: 0;

      >a {
        height: 100%;
      }
      .wp-post-image {
        @extend .object-fit;
      }
      .rtl & {
        margin-right: 0;
        margin-left: 20px;
      }
      .post-video-play {
        @extend .linear-transition;
        @include transform-origin(center);

        .thb-video-icon {
          @extend .quick-transition;
        }
      }
      .now-playing {
        position: absolute;
        bottom: 0px;
        left: 0px;
        padding: 17px;
        width: 100%;
        font-weight: 500;
        text-transform: uppercase;
        font-size: 11px;
        color: #fff;
        opacity: 0;
        @include translate3d(6%, -6%, 0);
        @extend .linear-transition;
      }
    }
    .thumbnail-style6-inner {
      white-space: normal;
      .post-category,
      .post-title {
        margin-bottom: 10px;
      }
      h6 {
        margin-bottom: 0;
      }
    }
    &:hover {
      .post-video-play .thb-video-icon {
        @include scale(1.2);
      }
    }
    &.video-active {
      .post-video-play {
        @include scale(5);

        .thb-video-icon {
          opacity: 0;
        }
      }
      .now-playing {
        opacity: 1;
        @include translate3d(0%, 0%, 0);
      }
    }
  } // .thumbnail-style6
  &.thumbnail-style7 {
    display: flex;
    margin-bottom: 20px;
    .post-gallery {
      width: 90px;
      height: 90px;
      margin: 0 25px 0 0;
      min-height: 100%;
      flex-shrink: 0;
      @include min-break($break-small) {
        width: 120px;
        height: 120px;
      }
      >a {
        height: 100%;
      }
      .wp-post-image {
        @extend .object-fit;
      }
      .rtl & {
        margin-right: 0;
        margin-left: 25px;
      }
    }
    .thumbnail-style7-inner {
      white-space: normal;
      .post-title {
        margin-bottom: 0;
        h5 {
          margin: 0;
        }
      }
    }
  } // .thumbnail-style7
  &.thumbnail-style8 {
    display: flex;
    align-items: center;

    .thumb_large_count {
      font-size: 30px;
      width: 50px;
      flex-shrink: 0;
      @include min-break($break-small) {
        font-size: 40px;
      }
      color: $black;
  	  @include text-fill-color(transparent);
  	  @include text-stroke-width(1px);
  	  @include text-stroke-color($black);
    }
    .post-title,
    .post-title h6 {
      margin: 0;
    }
  } //.thumbnail-style8
  &.thumbnail-style9 {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    .post-gallery {
      width: 80px;
      height: 80px;
      margin: 0 20px 0 0;
      min-height: 100%;
      flex-shrink: 0;
      >a {
        height: 100%;
      }
      .wp-post-image {
        @extend .object-fit;
      }
      .rtl & {
        margin-right: 0;
        margin-left: 25px;
      }
    }
    .thumbnail-style9-inner {
      white-space: normal;
      .post-title {
        margin-bottom: 0;
        h6 {
          margin: 0;
        }
      }
    }
  }
  &.thumbnail-seealso {
    display: flex;
    align-items: center;
    position: relative;
    padding: 10px;
    border: 1px solid $border;
    @include min-break($break-small) {
      padding: 20px;
    }
    .thb-seealso-text {
      position: absolute;
      top: -10px;
      left: 50%;
      display: flex;
      align-items: center;
      height: 22px;
      border: 1px solid $border;
      padding: 0 10px;
      text-transform: uppercase;
      background: #fff;
      color: $black;
      font-size: 10px;
      @include translate3d(-50%,0,0);
    }
    .post-gallery {
      width: 90px;
      margin-bottom: 0;
      margin-right: 30px;
      flex-shrink: 0;
      position: relative;


      .rtl & {
        margin-right: 0;
        margin-left: 30px;
      }
    }
    .post-category {
      margin-bottom: 10px;
    }
		a {
			text-decoration: none !important;
		}
    .post-title,
    .post-title h6 {
      margin: 0;
    }
  } // .thumbnail-seealso
  &.read-next-post {
    .post-gallery {
      margin-bottom: 15px;
    }
    h5 {
      font-size: 14px;
      font-weight: 500;
    }
  } // .read-next-post
  &.style3 {
    margin-bottom: 30px;
    .post-gallery {
      @include min-break($break-small) {
        margin-bottom: 0
      }
    }
    .post-inner-content {
      @include min-break($break-small) {
        padding: 10px 0 10px 40px;
      }
    }
    &.style3-small {
      >.row {
        margin-top: -1px;
      }
      .post-inner-content {
        padding-bottom: 15px;
        @include min-break($break-small) {
          padding: 30px 50px;
        }
        @include min-break($break-medium) {
          padding: 50px 70px;
        }
      }
    }
  } // .style3
  &.featured-style {
    @extend .white-post-content;
    position: relative;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    .post-gallery:not(.thb-post-thumbnail-gallery) {
      background: #454545;
      position: absolute;
      top: 0;
      left: 0;
      height: 100%;
      width: 100%;
      margin: 0;
      opacity: 1;
      z-index: 0;
      @extend .quick-transition;
      pointer-events: none;

      .wp-post-image {
        opacity: 0.875;
        height: 100%;
        object-fit: cover;
      }
    }
    .post-inner-content {
      position: relative;
      z-index: 5;
      padding: 15px;
      overflow: hidden;
      max-width: 100%;
      @include min-break($break-small) {
        padding: 30px;
      }
      @include min-break($break-medium) {
        padding: 50px;
      }
    }

    .featured-read-more {
      font-size: 10px;
      color: #fff;
      font-weight: 600;
      text-transform: uppercase;
    }
    &.featured-overflow {
      .post-inner-content {
        padding: 0;
        margin: 15px;
        @include min-break($break-small) {
          margin: 30px;
        }
        @include min-break($break-medium) {
          margin: 40px;
        }
      }
      .post-overflow-content {
        @include translateY(35px);
        @extend .mid-transition;
        .post-title {
          margin-left: 0;

          h1,h2,h3,h4,h5,h6 {
            margin: 0;
          }
        }
        .featured-read-more {
          display: inline-block;
          margin-top: 20px;
        }
      }
    }
    &:hover {
      .post-gallery {
        .wp-post-image {
          opacity: 0.6;
          @include scale(1.02);
        }
      }
      .post-overflow-content {
        @include translateY(0px);
      }
    }
  }
  &.style4 {
    justify-content: flex-start;
    .post-gallery {
      &:after {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        background: $accent;
        mix-blend-mode: multiply;
        @extend .mid-transition;
      }
      >div {
        z-index: 0 !important;
      }
    }
    .btn {
      margin-top: 20%;
    }
    .post-inner-content {
      height: 100%;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      justify-content: space-between;
    }
    &:hover {
      .post-gallery {
        .wp-post-image {
          opacity: 0.875;
          transform: none;
        }
        &:after {
          opacity: 0.95;
        }
      }
    }
  } // .style4
  &.style5 {
    margin-bottom: 30px;
    .post-gallery {
      height: 100%;


      >a {
        height: 100%;

        .wp-post-image {
          @extend .object-fit;
        }
      }
      @include min-break($break-small) {
        margin-bottom: 0;
      }
    }
    .post-inner-content {
      background: $accent;
      padding: 30px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      @include min-break($break-small) {
        min-height: 460px;
        height: 100%;
      }
      @include min-break($break-medium) {
        padding: 70px 50px;
      }
    }
  } // .style5
  &.style5-white {
    margin-bottom: 30px;
    .post-gallery {
      height: 100%;
      >a {
        height: 100%;

        .wp-post-image {
          @extend .object-fit;
        }
      }
      @include min-break($break-small) {
        margin-bottom: 0;
      }
    }
    .post-inner-content {
      background: #fff;
      padding: 30px;
      display: flex;
      flex-direction: column;
      @include min-break($break-small) {
        min-height: 460px;
        height: 100%;
      }
      @include min-break($break-medium) {
        padding: 45px;
      }
    }
  } // .style5-white
  &.style6 {
    display: flex;
    flex-direction: column;
    border-radius: 3px;
    overflow: hidden;
    @include box-shadow(0 2px 4px 0 rgba(50,50,93,.1));
    .post-gallery {
      border-radius: 3px 3px 0 0;
      margin: 0;
    }
    .post-inner-content {
      display: flex;
      flex-direction: column;
      flex: 1;
      padding: 15px;
      background: #fff;
      border-radius: 0 0 3px 3px;
      @include min-break($break-small) {
        padding: 30px;
      }
      @include ie11() {
        flex: none;
      }
      .thb-post-bottom {
        margin-top: auto;
      }
    }
    &.style6-border {
      border-radius: 0;
      @include box-shadow(none);
      .post-gallery {
        border-radius: 0;
        margin: 0;
      }
      .post-inner-content {
        border-radius: 0;
        border-left: 1px solid $border;
        border-right: 1px solid $border;
        border-bottom: 1px solid $border;
      }
    }
    &.style6-shadow {
      border-radius: 4px;
      @include box-shadow(0 1px 2px rgba(0,0,0,.1), 0 2px 16px rgba(0,0,0,.06));

      .post-gallery {
        border-radius: 4px 4px 0 0;
        margin: 0;
      }
      .post-inner-content {
        border: 0;
        border-radius: 0 0 4px 4px;
      }
    }
    &.style6-bg {
      border-radius: 0;
      @include box-shadow(none);
      .post-inner-content {
        background: rgba($accent,0.4);
      }
      .post-gallery {
        border-radius: 0;
        >a {
          height: 100%;

          .wp-post-image {
            border-radius: 0;
            @extend .object-fit;
          }
        }
      }
      .post-inner-content {
        border-radius: 0;

        @include min-break($break-large) {
          padding: 30px 40px;
        }
      }
    }
  }
  &.style7 {
    .post-title {
      padding: 0 5%;
    }
  } // .style7
  &.style8 {
    margin-bottom: 40px;
    .post-gallery {
      max-height: 450px;
      margin-bottom: 10px;
      @include min-break($break-small) {
        margin-bottom: 0;
      }
    }
    .post-inner-content {
      padding: 15px 15px 0 15px;
      position: relative;
      width: 100%;
      background: #fff;
      @include min-break($break-small) {
        padding: 40px 40px 0 40px;
        width: 80%;
        left: 10%;
        margin-top: -70px;
        .post-title {
          margin: 0 5% 15px;
        }
        .rtl & {
          left: auto;
          right: 10%;
        }
      }
    }
  } // .style8
  &.style9 {
    padding-bottom: 40px;
    border-bottom: 1px solid $black;
    margin-bottom: 40px;
    .post-title,
    .post-excerpt {
      padding: 0 15%;
    }
    .post-title,
    .post-excerpt {
      margin-bottom: 35px;
    }
    .post-gallery {
      margin-bottom: 40px;
    }
  } // .style9
  &.style10 {
    margin-bottom: 30px;
    .post-gallery {
      @include min-break($break-small) {
        margin-bottom: 0
      }
    }
    .medium-4.columns {
      @include min-break($break-small) {
        max-width: 255px;
      }
    }

  } // .style10
  &.style11 {
    .post-inner-content {
      padding: 20% 10%;
    }
  } // .style11
  &.style12.featured-style {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    .post-gallery {
      background: $black;

      .wp-post-image {
        opacity: 1 !important;
      }
    }
    .post-gallery.thb-parallax {
      &:after {
        bottom: auto;
        height: 100%;
        transform-origin: 0 0;
        @include scale(1,1);
        @extend .transition;
        background: none;
			  @include background-image(linear-gradient(rgba(0,0,0,0) 40%, rgba($black,0.5)));
      }
      iframe {
        @include transition(opacity .75s $transition);
      }
    }
    &:hover {
      .post-gallery .wp-post-image,
      .post-gallery iframe {
        opacity: 0.2 !important;
      }
    }
  } // .style12
  &.style13 {
    .post-gallery {
      &:after {
        content: '';
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        background: $accent;
        mix-blend-mode: multiply;
        @extend .mid-transition;
      }
      >div {
        z-index: 0 !important;
      }
    }
    .post-inner-content {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      @include translateZ(0);
      .post-title {
        h3 {
          font-size: rem-calc(28);
        }
      }
    }
    &:hover {
      .post-gallery {
        .wp-post-image {
          opacity: 0.875;
          transform: none;
        }
        &:after {
          opacity: 0.95;
        }
      }
    }
  } // .style13
  &.style14 {
    padding: 0 10px;
    text-align: center;
    .post-gallery {
      background: transparent;
      height: 80px;
      width: 80px;
      margin: 0 auto 30px;

      @include min-break($break-small) {
        height: 160px;
        width: 160px;
      }
      >a {
        height: 100%;
      }
      .wp-post-image {
        border-radius: 50%;
        @extend .object-fit;
      }
      &:hover {
        .wp-post-image {
          @include scale(1);
        }
      }
    }
  } // .style14
  &.style15 {
    margin-bottom: 30px;
    .row .style15-content-column {
      padding-right: 10%;
    }
    .post-gallery {
      max-width: 140px;
      padding: 0;
      margin: 0;
      height: 100%;
      @include min-break($break-small) {
        max-width: 200px;
      }
      .wp-post-image {
        width: 100%;
      }
    }
  } // .style15
  &.style16 {
    display: flex;
    flex-direction: column;
    border-bottom: 1px solid $border;
    padding-bottom: 30px;
    @include min-break($break-small) {
      flex-direction: row;

      .post-gallery {
        margin-bottom: 0;
        margin-right: 40px;
        width: 60%;
        flex-shrink: 0;
      }
    }
  } // .style16
  &.style17 {
    margin-bottom: 40px;
    .post-gallery {
      width: 100%;
      padding: 0;
      @include min-break($break-small) {
        max-width: 400px;
        margin-bottom: 0;
        margin-right: 40px;
      }
      .wp-post-image {
        width: 100%;
				height: 100%;
				object-fit: cover;
      }
			>a {
				height: 100%;
			}
    }
    .style17-content-column {
      padding-right: 8% !important;
    }
  } // .style17
  &.style18 {
    position: relative;

    .post-gallery {
      @include min-break($break-small) {
        margin: 0;
      }
      height: 100%;

      >a {
        height: 100%;

        .wp-post-image {
          height: 100%;
          object-fit: cover;
        }
      }
    }
    .post-inner-content {
      @include min-break($break-small) {
        position: absolute;
        bottom: 0;
        left: 0;
        background: #fff;
        width: 70%;
        padding: 30px 30px 0 0;
      }
    }
  } // .style18
  &.style19 {
    .post-title {

      @include min-break($break-small) {
        padding: 0 10%;
        margin-bottom: 45px;
      }
    }
    .post-gallery {
      @include min-break($break-small) {
        margin-bottom: 45px;
      }
    }
    .post-excerpt {
      @include min-break($break-small) {
        padding: 0 10%;
        font-size: 18px;
      }
    }
    .thb-shopthelook {
      border-top: 0;
      @include min-break($break-small) {
        padding: 40px 10% 0;
      }
      @include min-break($break-medium) {
        padding: 40px 15% 0;
      }
    }
  } // .style19
  &.mega-menu-style1 {
    text-align: center;
    margin: 0;
    .post-gallery {
      margin-bottom: 15px;
    }
    .post-title {
      margin: 0;
      h6 {
        font-size: 14px;
        margin: 0;
      }
    }
  } // .mega-menu-style1
  &.mega-menu-style2 {
    text-align: center;
    margin: 0;
    width: 100%;
    .post-gallery:not(.thb-post-thumbnail-gallery){
      margin-bottom: 0;
      position: relative;
    }
    .post-title {
      margin: 0;
      h6 {
        font-size: 14px;
        margin: 0;
      }
    }
    .post-inner-content {
      display: flex;
      height: 250px;
      align-items: center;
      justify-content: center;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
    }
  } // .mega-menu-style2
  &.masonry-style1 {
    @include min-break($break-small) {
      padding: 0 10px;
      margin-bottom: 50px;
    }
    .post-title,
    .post-excerpt {
      padding: 0 5%;
    }
  }
}

/* White Text */
.white-post-content {
  color: #fff;
  .thb-post-bottom .post-share {
    &:hover {
      color: #fff;
    }
  }
  .thb-post-bottom ul li,
  .thb-post-bottom ul li+li:before,
  .thb-post-bottom.sponsored-bottom ul li {
    color: #fff;
  }
  a:not(.post-social-share):not(.btn):not(.button) {
    color: #fff;

    &:hover {
      color: #fff;
    }
  }
  .post-title {
    a:hover>span {
      border-color: #fff;
    }
  }
}