/* stylelint-disable */

.template-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 16px;
}

.template-card__images {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  object-fit: cover;
  padding: 12px;
}

.template-card__image--one {
  aspect-ratio: 343/192;
  border-radius: 8px !important;
  box-shadow: -4px 4px 9px rgba(0, 0, 0, 0.25) !important;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}

.template-card__image--two {
  aspect-ratio: 343/192;
  border-radius: 8px !important;
  width: 100%;
  max-width: calc(100% - 12px) !important;
  height: 100%;
  max-height: calc(100% - 12px) !important;
  object-fit: cover;
  rotate: -7deg;
  position: absolute;
  top: 10px;
  left: 0;
  z-index: -1;
  transition: transform 0.3s ease-in-out;
}

.template-card__images:hover .template-card__image--one {
  transform: rotate(9deg) scale(1.05);
  transition: transform 0.3s ease-in-out;
}

.template-card__images:hover .template-card__image--two {
  transform: rotate(0deg) scale(1.1);
  transition: transform 0.3s ease-in-out;
}
