.pressListing .pressWrapper {
  aspect-ratio: 0.7142857143;
  border-radius: 12px;
  overflow: hidden;
  justify-content: center;
  background-size: cover;
  position: relative;
  box-shadow: 0px 3px 15px rgba(0, 0, 0, 0.05);
  transition: all 0.35s ease;
}
.pressListing .pressWrapper .pressContent {
  transition: all 0.35s ease;
  justify-content: center;
  align-items: center;
  text-align: center;
  z-index: 1;
}
@media (min-width: 1200px) {
  .pressListing .pressWrapper .pressContent {
    transform: translateY(100vh);
  }
}
.pressListing .pressWrapper .pressContent .title {
  font-family: var(--text);
  font-size: 1.55rem;
  font-weight: 300;
  color: #fff;
}
.pressListing .pressWrapper .pressContent .date {
  font-family: var(--text);
  font-size: 0.875rem;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.85);
}
.pressListing .pressWrapper .pressContent .simpleLink .elementor-button {
  border: 1px solid #FFF;
  padding: 0.75rem 1rem;
  border-radius: 45rem;
  background-color: transparent;
  transition: var(--ease);
}
.pressListing .pressWrapper .pressContent .simpleLink .elementor-button svg {
  margin-top: 2px;
}
.pressListing .pressWrapper .pressContent .simpleLink .elementor-button .elementor-button-text {
  font-weight: 400;
  font-size: 1rem;
}
.pressListing .pressWrapper .pressContent .simpleLink .elementor-button:hover {
  background-color: var(--pink);
  color: var(--cherry);
  border-color: var(--cherry);
}
.pressListing .pressWrapper .pressContent .simpleLink .elementor-button:hover svg path {
  fill: var(--cherry);
}
.pressListing .pressWrapper:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 100%;
  transition: all 0.35s ease;
  background-color: rgb(from var(--cherry) r g b / 90%);
}
@media (min-width: 1200px) {
  .pressListing .pressWrapper:after {
    transform: translateY(100vh);
  }
}
.pressListing .pressWrapper:hover:after {
  transform: translateY(0vh);
  transition: all 0.35s ease;
}
.pressListing .pressWrapper:hover .pressContent {
  transform: translateY(0vh);
  z-index: 1;
  transition: all 0.35s ease;
}
