/* BLOG HIGHLIGHT */

.post-highlight {
  position: relative;
  left: 50%;
  right: 50%;
}

.post-highlight-image {
  height: 50vh;
  background: #000000;
  overflow: hidden;
  position: relative;
}

.post-highlight-image img {
  width: 100%;
  height: 100%;
  opacity: 0.8;
  object-fit: cover;
  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;
}

.post-highlight-content {
  text-align: center;
  position: absolute;
  bottom: 50%;
  right: 50%;
  transform: translate(50%, 50%);
}

.post-highlight-title {
  color: #ffffff;
  font-size: 48px;
  font-weight: 900;
  text-decoration: none;
}

.post-highlight-dash {
  width: 64px;
  height: 2px;
  background: #ffffff;
  margin: 0 auto;
  margin-top: 14px;
  margin-bottom: 14px;
}

.post-highlight-excerpt p {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  line-height: 30px;
}

.post-highlight-link {
  margin: 30px 0 0 0;
}

.post-highlight-link a {
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  border: 1px solid #ffffff;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 10px;
}

.post-highlight-link a:hover {
  color: #333333;
  background: #ffffff;
}

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

.post-highlight-date-month {
  font-size: 18px;
}

.post-highlight-date-day {
  font-size: 30px;
}


/* TABLET */

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

  .post-highlight-content {
      width: 70%;
  }

  .post-highlight-title {
    font-size: 40px;
  }

  .post-highlight-excerpt p {
    font-size: 14px;
    line-height: 24px;
  }

  .post-highlight-link a {
    font-size: 10px;
  }
}



/* MOBILE */

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

  .post-highlight-content {
      width: 90%;
  }

  .post-highlight-title {
    font-size: 32px;
  }

  .post-highlight-excerpt p {
    font-size: 13px;
    line-height: 20px;
  }

  .post-highlight-link a {
    font-size: 10px;
  }
}
