@charset "UTF-8";
/* Standalone variables
========================================================================== */
/*
==========================================================================
    Mixins - typography - body
========================================================================== */
.c-post-list {
  list-style: none;
  padding: 0;
  margin-top: 0;
  margin-bottom: -2rem;
}

.c-post-list__heading {
  font-weight: 600;
  font-size: 1.5rem;
}

.c-post-list__item {
  margin-bottom: 2rem;
}

.c-post-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.c-post-card:not(.c-post-card--without-hover):hover .c-post-card__media .c-post-card__title {
  color: #204D51;
}
.c-post-card:not(.c-post-card--without-hover):hover .c-post-card__media::before {
  background-color: #fefefe;
}
.c-post-card:not(.c-post-card--without-hover):hover .c-post-card__media--no-image {
  background-color: #FEFEFE;
}
.c-post-card:not(.c-post-card--without-hover):hover .c-post-card__media--no-image .c-post-card__logo {
  color: #FEFEFE;
}
.c-post-card:not(.c-post-card--without-hover):hover .c-post-card__media--no-image::before {
  display: none;
}

.c-post-card--alt:not(.c-post-card--without-hover):hover .c-post-card__media--no-image .c-post-card__logo {
  color: #204D51;
}

.c-post-card__media {
  position: relative;
  margin-bottom: 2rem;
  padding: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #FEFEFE;
  min-height: 21rem;
  overflow: hidden;
  border-radius: 0.25rem;
  background-size: cover;
  background-position: center;
  transition-timing-function: ease;
  transition-duration: 250ms;
}
@media (min-width: 0) and (max-width: 767px) {
  .c-post-card__media {
    min-height: 15.75rem;
  }
}
.c-post-card__media .c-post-card__title {
  z-index: 1;
  transition-timing-function: ease;
  transition-duration: 250ms;
}
@media (min-width: 1025px) {
  .c-post-card__media .c-post-card__title {
    max-width: 28rem;
  }
}
.c-post-card__media::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(254, 254, 254, 0);
  z-index: 1;
  transition-timing-function: ease;
  transition-duration: 250ms;
}
.c-post-card__media::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(32, 77, 81, 0) 0%, rgba(32, 77, 81, 0.5) 100%);
}

.c-post-card__title {
  transition-timing-function: ease;
  transition-duration: 250ms;
}

.c-post-card__media--no-image {
  color: #204D51;
  background-color: #B4F6D0;
}
.c-post-card__media--no-image::after {
  display: none;
}

.c-post-card__logo {
  display: flex;
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  transition-timing-function: ease;
  transition-duration: 250ms;
}

@media (min-width: 0) and (max-width: 1024px) {
  .c-post-card__media--no-image .c-post-card__logo {
    position: initial;
    transform: scale(2);
  }
}

@media (min-width: 0) and (max-width: 1024px) {
  .c-post-card__date,
.c-post-card__tags {
    margin-bottom: 1rem;
  }
}
@media (min-width: 1025px) {
  .c-post-card__date,
.c-post-card__tags {
    margin-bottom: 1.25rem;
  }
}

.c-post-card__desc {
  flex-grow: 1;
  max-height: 4.625rem;
  overflow: hidden;
}
@media (min-width: 1025px) {
  .c-post-card__desc {
    max-width: 37.5rem;
  }
}
.c-post-card__desc p {
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  display: -webkit-box;
}

@media (min-width: 0) and (max-width: 1024px) {
  .c-post-card__action {
    margin-top: 1rem;
  }
}
@media (min-width: 1025px) {
  .c-post-card__action {
    margin-top: 2rem;
  }
}
.c-post-card__action .c-link:hover {
  text-decoration: none;
}
.c-post-card__action .c-link::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.c-post-card--alt .c-post-card__media .c-post-card__logo {
  z-index: 1;
  color: rgba(32, 77, 81, 0);
  bottom: 50%;
  right: 50%;
  transform: translate(50%, 50%) scale(2);
}
@media (min-width: 768px) {
  .c-post-card--alt .c-post-card__media {
    min-height: 19.5rem;
  }
}
.c-post-card--alt .c-post-card__media--no-image .c-post-card__logo {
  color: #204d51;
}
@media (min-width: 0) and (max-width: 1024px) {
  .c-post-card--alt .c-post-card__media--no-image .c-post-card__logo {
    position: absolute;
  }
}
@media (min-width: 0) and (max-width: 1024px) {
  .c-post-card--alt .c-post-card__title {
    margin-bottom: 1rem;
  }
}
@media (min-width: 1025px) {
  .c-post-card--alt .c-post-card__title {
    min-height: 4rem;
    margin-bottom: 2rem;
  }
}
.c-post-card--alt .c-post-card__desc {
  margin: 0;
}
@media (min-width: 1025px) {
  .c-post-card--alt .c-post-card__desc {
    max-width: 22.5rem;
  }
}
.c-post-card--alt:not(.c-post-card--without-hover):hover .c-post-card__title {
  color: #FEFEFE;
}
.c-post-card--alt:not(.c-post-card--without-hover):hover .c-post-card__logo {
  color: #204d51;
}

@media (min-width: 0) and (max-width: 1024px) {
  .c-2-posts-section .c-post-card .c-post-card__media .c-post-card__title {
    display: none;
  }
}

.c-post-card__tags .c-tags-list {
  flex-wrap: wrap;
}

@media (min-width: 1025px) {
  .c-2-posts-section .c-post-card > .c-post-card__title {
    display: none;
  }
}
@media (min-width: 0) and (max-width: 1024px) {
  .c-2-posts-section .c-post-card > .c-post-card__title {
    margin-bottom: 1rem;
  }
}

.c-post-card__media--responsive {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.c-post-card__media--responsive picture,
.c-post-card__media--responsive img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.c-post-card--writer .c-post-card__media {
  border-radius: 0;
}
.c-post-card--writer .c-post-card__title {
  color: #484848;
}
.c-post-card--writer .c-post-card__date,
.c-post-card--writer .c-post-card__tags {
  color: #484848;
  font-size: 0.875rem;
  margin: 1rem 0 0;
}
.c-post-card--writer .c-post-card__desc {
  margin: 1rem 0 0;
  color: #000;
}
@media (min-width: 1025px) {
  .c-post-card--writer .c-post-card__desc {
    max-width: 95%;
  }
}
.c-post-card--writer .c-tags-list__item:not(:last-child)::after {
  content: "•";
  margin: 0 0.5rem;
}
.c-post-card--writer .c-post-card__action {
  margin: 1.5rem 0 0;
}
.c-post-card--writer .c-link {
  font-size: 1.125rem;
  font-weight: 600;
}

.c-post-card--on-image .c-post-card__title {
  line-height: 1.4;
  margin-bottom: 0;
}
.c-post-card--on-image .c-link__text {
  display: none;
}
