.wvl {
  /* All gaps in REM now */
  --wvl-gap: 1rem;
  --wvl-card-bg: #000;
  --wvl-card-fg: #ffffff;
  --wvl-muted: #9ca3af;
  --wvl-btn-bg: #FBFEF9;
  --wvl-btn-fg: #000;
  --wvl-radius: 0.88rem;

  color: var(--wvl-card-fg);
}

.wvl .wvl-grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: var(--wvl-gap);
}

@media (min-width:640px) {
  .wvl .wvl-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width:1024px) {
  .wvl .wvl-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.wvl .wvl-card {
  background: var(--wvl-card-bg);
  border-radius: var(--wvl-radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 1.88rem;
  align-items: center;
  gap: 3.75rem;
	position:relative;
}

.wvl .wvl-card__imgwrap {
  display: flex;
  width: 100%;
  justify-content: center;
}

.wvl .wvl-card__img {
  width: 20rem;
  height: 10rem;
  object-fit: contain;
  display: block;
}

/* Body (replaces header) */
.wvl .wvl-card__body {
  order: -1;
  width: 100%;
  justify-content: flex-start;
}

/* Attributes: values as individual spans */
.wvl .wvl-card__attrs {
  display: flex;
  flex-wrap: wrap;
  padding: 0.25rem 0.75rem;
  border-radius: 10rem;
  gap: 0.5rem;
  color: #000;
  font-size: 0.9375rem;
  font-family: "Poppins";
  font-weight: 400;
  line-height: 1.5em;
  width: fit-content;
  background-image: linear-gradient(90deg, var(--e-global-color-99d2674) 0%, #9DA2A6 100%);
  align-items: center;
}

.wvl .wvl-card__attrs::before {
  content: '';
  display: block;
  width: 1rem;
  height: 1.25rem;
  background: url('/wp-content/uploads/2025/10/phantum-icon-black.svg') no-repeat center / contain;
}

.wvl .wvl-attr {
  display: block;
}

.wvl .wvl-attr.attr-size {
  font-size: 0.8rem;
  margin-left: -0.15rem;
}

.wvl-card__actions {
  width: 100%;
}

.wvl .wvl-card__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 0.75rem 2.5rem;
  background: var(--wvl-btn-bg);
  color: var(--wvl-btn-fg);
  text-decoration: none;
  border-radius: 0.375rem;
  font-family: var(--e-global-typography-94780f0-font-family), Sans-serif;
  font-size: var(--e-global-typography-94780f0-font-size);
  font-weight: var(--e-global-typography-94780f0-font-weight);
  line-height: var(--e-global-typography-94780f0-line-height);
}

.wvl.wvl--mode-carousel .swiper-slide {
  height: auto;
}

.wvl .swiper-button-prev,
.wvl .swiper-button-next {
  color: #fff;
}

.wvl .swiper-pagination-bullet {
  background: #fff;
  opacity: .4;
}

.wvl .swiper-pagination-bullet-active {
  opacity: 1;
}

.wvl-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('/wp-content/uploads/2025/10/phantum-nebula-pattern-op1.svg');
  --background-overlay: '';
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 0;
  opacity: 0.17;
}

.wvl-card>* {
  z-index: 1;
}

@media (max-width:767px) {
  .wvl .wvl-card__attrs {
    font-size: 1.1rem;
  }

  .wvl .wvl-attr:last-child {
    font-size: 0.925rem;
  }

  .wvl .wvl-card__btn {
    font-size: 1.1rem;
  }
}