.avs-card-visual {
  position: relative;
  height: 300px;
  border-radius: 30px 30px 30px 30px;
  overflow: hidden;
  color: #ffffff;
  cursor: pointer;
  box-shadow: 0 30px 45px rgba(0, 0, 0, 0.14);
  transition: transform 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

.avs-card-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-image: var(--avs-card-image);
  transition: transform 0.3s ease, filter 0.3s ease;
}

.avs-card-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      to top,
      rgba(0, 0, 0, 0.75) 0%,
      rgba(0, 0, 0, 0.45) 35%,
      rgba(0, 0, 0, 0.25) 70%,
      rgba(0, 0, 0, 0.10) 100%
    );
  /*backdrop-filter: blur(2px);*/
}

.avs-card-visual:hover {
  box-shadow: 0 26px 60px rgba(0, 0, 0, 0.35);
}

.avs-card-visual:hover::before {
  transform: scale(1.04);
}

/*.avs-card-visual:hover::after {*/
/*  background:*/
/*    linear-gradient(*/
/*      to top,*/
/*      rgba(0, 155, 160, 0.85) 0%,*/
/*      rgba(0, 0, 0, 0.55) 40%,*/
/*      rgba(0, 0, 0, 0.20) 80%*/
/*    );*/
/*}*/

.avs-card-body {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 1.1rem 1.1rem 1rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-decoration: none !important;
}

.avs-card-tag {
  font-family: "Born Ready Upright", "Gilroy", system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text";
  font-size: 1.2rem;
  letter-spacing: 0.06em;
  color: #e6f7f8;
}

.avs-card-title {
  font-size: 1.55rem;
  font-weight: 700;
  margin: 0.25rem 0 0.2rem;
  color: #e6f7f8;
}

.avs-card-text {
  font-size: 0.86rem;
  opacity: 0.9;
  margin-bottom: 0.2rem;
  color: #e6f7f8;
}

.avs-card-footer {
  font-size: 0.9rem;
  opacity: 0.9;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #e6f7f8;
}

.avs-price-amount {
  font-size: 1.40rem;
  font-weight: 700;
}
