.post-item {
  position: relative;
  padding-top: 73%;
  overflow: hidden;
  border-radius: 10px;
}
.post-item img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.post-item .post-details-overlay {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  min-width: 200px;
  min-height: fit-content;
  background: rgb(0, 0, 0);
  background: linear-gradient(0deg, rgb(0, 0, 0) 0%, rgba(0, 0, 0, 0) 50%);
}
.post-item .post-title {
  font-size: 18px;
}
.post-item .read-more {
  font-family: var(--f-default) !important;
  color: var(--c-sec);
  font-weight: 500;
  font-size: 16px !important;
  display: inline;
}

.post-item.layout-overlay .post-details-overlay {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-flow: column;
  justify-content: flex-end;
  height: 100%;
  padding: 0 38px;
}
.post-item.layout-overlay .post-details-overlay .post-details {
  height: 120px;
}
.post-item.layout-overlay .post-details-overlay .post-details .post-title {
  margin-top: 0.5rem;
  font-size: 21px;
  line-height: 26px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.post-meta .post-cat {
  background: #E21E26;
  padding: 3px 8px;
}
.post-meta .post-date, .post-meta .post-cat {
  color: #FFF;
  font-size: 10px;
}
.post-meta .post-date {
  margin: 0;
}

.post-featured {
  display: flex;
}
.post-featured .img-wrapper {
  width: 280px;
  margin-right: 32px;
}
.post-featured .img-wrapper img {
  border-radius: 10px;
}
.post-featured .post-details-wrapper {
  flex: 1;
}
.post-featured .post-title {
  color: #FFF;
  margin-top: 1.5rem;
  margin-bottom: 1rem;
  font-size: 18px;
}
.post-featured .post-meta {
  margin-top: 12px;
}
.post-featured .post-excerpt p {
  font-size: 16px !important;
  line-height: 22px;
}

.post-grid {
  display: grid;
  gap: 28px;
  margin-top: 28px;
}
.post-grid .post-item {
  flex-flow: column;
  padding-top: unset;
}
.post-grid .post-item .img-wrapper {
  position: relative;
  padding-top: 71.42%;
}
.post-grid .post-details-wrapper {
  padding: 16px;
}
.post-grid .post-title {
  color: #FFF;
  margin-top: 0.5rem;
  font-size: clamp(10.44px, 10.44px + (100vw - 320px) * 0.0225, 18px) !important;
  line-height: clamp(0.812, 0.812 + (100vw - 320px) * 0.0225, 1.4) !important;
  font-weight: 400 !important;
  font-family: "niveau-grotesk", sans-serif !important;
}

// Facet Load more
.facetwp-facet.facetwp-type-pager { margin-bottom: 1rem!important; }
.facetwp-facet.facetwp-type-pager .facetwp-load-more { margin: 2rem auto 0; display: block; background-color: #c60810; font-weight: 400!important; font-size: .97em!important; }

@media (min-width: 1220px) {
  .post-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
  }
  .post-grid .post-item {
    width: 279px;
  }
}
@media (max-width: 1219.98px) {
  .post-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}
@media (min-width: 768px) {
  .post-featured {
    margin-bottom: 2rem;
    padding: 30px 0px;
  }
}
@media (max-width: 767.98px) {
  .post-featured {
    flex-flow: column;
    margin-bottom: 2rem;
  }
  .post-featured .img-wrapper {
    width: 100%;
  }
  .post-featured .post-details-wrapper {
    padding: 20px;
  }
}
@media screen and (max-width: 549px) {
  .post-featured {
    margin-bottom: 0;
  }
  .post-featured .img-wrapper img {
    aspect-ratio: 7/5;
    width: 100%;
    object-fit: cover;
    object-position: center;
  }
  .post-featured .post-details-wrapper {
    padding: 20px 0;
  }
}