/* BLOG v1 */

.blog {
  display: flex;
  margin-bottom: 40px;
}

.section.blog {
  padding: 100px 0 0 0;
}

.section-row.blog {
  width: 60%;
}

.blog-image {
  display: flex;
  flex: 1;
  min-width: 360px;
  height: 240px;
  overflow: hidden;
  position: relative;
  margin-right: 50px;
  background: #000000;
}

.blog-image-img {
  width: 100%;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.blog-image-img:hover {
  opacity: 0.8;
  filter: blur(1px);
}

.blog-info {
  display: flex;
  flex: 3 0 0;
  justify-content: flex-start;
  align-items: flex-start;
}

.blog .far, .blog .fas, .blog .fab, .blog-v2 .far, .blog-v2 .fas, .blog-v2 .fab {
  margin-right: 5px;
}

.blog-info-link a {
  color: #666666;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 15px 10px 15px;
  border: 1px solid #cccccc;
}

.blog-info-link a:hover {
  color: #ffffff;
  text-decoration: none;
  border: 1px solid #666666;
  background: #666666;
  cursor: pointer;
}

.blog-info-title a {
  color: #666666;
  font-size: 30px;
  text-decoration: none;
}

.blog-info-title a:hover {
  color: #333333;
}

.blog-info-date {
  font-family: 'TradeGothicLTCom-BdCn20';
  justify-content: flex-start;
  font-size: 12px;
  text-transform: uppercase;
  text-decoration: none;
  margin: 15px 0;
}

.blog-link {
  margin: 20px 0 0 0;
}

.blog-link a {
  color: #666666;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 15px 10px 15px;
  border: 1px solid #cccccc;
}

.blog-link a:hover {
  color: #ffffff;
  text-decoration: none;
  border: 1px solid #666666;
  background: #666666;
  cursor: pointer;
}


/* BLOG v2 */

.blog-v2 {
  width: calc(33.3333% - 20px);
  float: left;
  margin-bottom: 40px;
}

.blog-v2:nth-child(3n+2) {
  margin-left: 30px;
  margin-right: 30px;
}

.blog-v2:nth-child(3n+4) {
  clear: both;
}

.blog-v2-image {
  height: 200px;
  position: relative;
  overflow: hidden;
}

.blog-v2-image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.blog-v2-image-img:hover {
  opacity: 0.8;
  filter: blur(1px);
}

.blog-v2-date {
  font-size: 10px;
  font-weight: 400;
  line-height: 16px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  background: #ffffff;
  padding: 5px 10px;
  position: absolute;
  top: 0;
  left: 20px;
}

.blog-v2-date-month {
  font-size: 12px;
}

.blog-v2-date-day {
  font-size: 20px;
}

.blog-v2-info {
  text-align: center;
  margin-top: 10px;
}

.blog-v2-info-title a, .post-title {
  color: #666666;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
}

.blog-v2-info-title a:hover {
  color: #333333;
}


/* BLOG v3 */

.blog-v3-posts {
  margin-bottom: 50px;
}

.grid-sizer, .blog-v3 {
  width: calc(33.3333% - 22px);
}

.blog-v3 {
  border: 1px solid #f2f2f2;
  margin-bottom: 20px;
  -webkit-box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.05);
  -moz-box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.05);
  box-shadow: 0px 0px 7px 0px rgba(0,0,0,0.05);
}

.blog-v3-image {
  position: relative;
}

.blog-v3-image-img {
  width: 100%;
  height: auto;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.blog-v3-image-img:hover {
  opacity: 0.8;
  filter: blur(1px);
}

.blog-v3-date {
  font-size: 10px;
  font-weight: 400;
  line-height: 16px;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  background: #ffffff;
  padding: 5px 10px;
  position: absolute;
  top: 0;
  left: 20px;
}

.blog-v3-date-month {
  font-size: 12px;
}

.blog-v3-date-day {
  font-size: 20px;
}

.blog-v3-info {
  text-align: center;
  background: #ffffff;
  padding: 20px 30px;
}

.blog-v3-info-title a, .post-title {
  color: #666666;
  font-size: 24px;
  font-weight: 700;
  text-decoration: none;
}

.blog-v3-info-title a:hover {
  color: #333333;
}


/* TABLET */

@media only screen and (min-width: 800px) and (max-width: 1200px) {

  .blog-image {
    min-width: 240px;
    height: 160px;
  }

  .blog-v2 {
    width: calc(50% - 10px);
  }

  .blog-v2:nth-child(3n+2) {
    margin-leftt: initial;
    margin-right: initial;
  }

  .blog-v2:nth-child(3n+4) {
    clear: none;
  }

  .blog-v2:nth-child(2n) {

    margin-left: 20px;
  }

  .blog-v2:nth-child(2n+3) {
    margin-left: 0;
    clear: both;
  }

  .grid-sizer, .blog-v3{
    width: calc(50% - 10px);
  }
}



/* MOBILE */

@media only screen and (min-width: 1px) and (max-width: 799px) {

  .blog {
    display: block;
  }

  .blog-image {
    min-width: 180px;
    height: 180px;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .blog-info-title a, .post-title {
    font-size: 20px;
  }

  .blog-v2 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }

  .blog-v2:nth-child(3n+2) {
    margin-left: 0;
    margin-right: 0;
  }

  .blog-v2:nth-child(3n+4) {
    clear: none;
  }

  .blog-v2-image {
    height: 300px;
  }

  .blog-v3 {
    width: 100%;
  }
}
