@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes diagonal {
  0% {
    transform: translatex(0) translatey(0);
  }
  50% {
    transform: translatex(15px) translatey(15px);
  }
  100% {
    transform: translatex(0) translatey(0);
  }
}
@-moz-keyframes diagonal {
  0% {
    transform: translatex(0) translatey(0);
  }
  50% {
    transform: translatex(15px) translatey(15px);
  }
  100% {
    transform: translatex(0) translatey(0);
  }
}
@-o-keyframes diagonal {
  0% {
    transform: translatex(0) translatey(0);
  }
  50% {
    transform: translatex(15px) translatey(15px);
  }
  100% {
    transform: translatex(0) translatey(0);
  }
}
@keyframes diagonal {
  0% {
    transform: translatex(0) translatey(0);
  }
  50% {
    transform: translatex(15px) translatey(15px);
  }
  100% {
    transform: translatex(0) translatey(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.c-post-widget {
  background-color: #ffffff;
  margin-bottom: 40px;
  border-radius: 6px;
  box-shadow: 0 10px 60px 0 rgba(77, 90, 95, 0.1);
  height: calc(100% - 40px);
}
@media (max-width: 1199.98px) {
  .c-post-widget {
    margin-bottom: 30px;
    height: calc(100% - 30px);
  }
}
@media (max-width: 575.98px) {
  .c-post-widget {
    margin-bottom: 20px;
    height: calc(100% - 20px);
  }
}
.c-post-widget__image {
  border-radius: 6px 6px 0 0;
  position: relative;
  width: 100%;
  background-blend-mode: multiply, screen;
  background-image: radial-gradient(circle at 50% 50%, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) 48%, rgba(0, 0, 0, 0.5) 102%), linear-gradient(to bottom, rgba(127, 157, 182, 0.4), rgba(127, 157, 182, 0.4));
}
.c-post-widget__text-container {
  padding: 30px;
}
@media (max-width: 1199.98px) {
  .c-post-widget__text-container {
    padding: 24px;
  }
}
@media (max-width: 767.98px) {
  .c-post-widget__text-container {
    padding: 20px;
  }
}
.c-post-widget__title {
  font-size: 1.25em;
  font-weight: bold;
  line-height: normal;
  font-family: "Quicksand", sans-serif;
  color: #ff4438;
  margin-top: 10px;
}
@media (max-width: 1199.98px) {
  .c-post-widget__title {
    font-size: 1em;
    margin-top: 8px;
  }
}
@media (max-width: 767.98px) {
  .c-post-widget__title {
    font-size: 1em;
  }
}
.c-post-widget__title a {
  color: #ff4438;
}
.c-post-widget__title a:hover, .c-post-widget__title a:active, .c-post-widget__title a:focus, .c-post-widget__title a:visited {
  color: #ff4438;
}
.c-post-widget__categories {
  font-size: 0.875em;
  font-weight: 500;
  line-height: 1.14;
  color: #585858;
  margin: 5px 0 0 0;
  text-transform: uppercase;
}
@media (max-width: 1199.98px) {
  .c-post-widget__categories {
    font-size: 0.75em;
  }
}
.c-post-widget__categories a {
  color: #585858;
}
.c-post-widget__categories a:hover, .c-post-widget__categories a:active, .c-post-widget__categories a:focus, .c-post-widget__categories a:visited {
  color: #585858;
}
.c-post-widget__published {
  font-size: 0.875em;
  font-weight: bold;
  color: #585858;
  line-height: 1.14;
  margin: 10px 0;
  opacity: 0.5;
}
@media (max-width: 1199.98px) {
  .c-post-widget__published {
    font-size: 0.75em;
  }
}
.c-post-widget__text {
  font-size: 0.875em;
  line-height: 1.4;
  text-align: justify;
  color: #585858;
  margin: 5px 0 0 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 8;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media (max-width: 1199.98px) {
  .c-post-widget__text {
    font-size: 0.75em;
    text-align: left;
  }
}