.productbanner {
  margin-top: calc(4vw + 2rem);
  margin-bottom: calc(4vw + 2rem);
  padding: 2vw 3vw;
  display: flex;
  flex-wrap: wrap;
  gap: 2vw;
}
.productbanner > a[id] {
  flex: 0;
}
.productbanner .text h1,
.productbanner .text h2,
.productbanner .text h3 {
  margin-bottom: 0.2em;
}
.productbanner .media,
.productbanner .text,
.productbanner > .cta {
  min-width: 320px;
  flex: 1 1 0;
}
.productbanner .text,
.productbanner > .cta {
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 1rem;
}
.productbanner .ctas {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.productbanner .ctas a {
  --switch: calc((var(--light) - 50) * -100%);
  border: 2px solid hsl(0, 0%, var(--switch));
  display: inline-block;
  text-decoration: none;
  padding: 0.6em;
  position: relative;
  transition: all 200ms ease-out;
}
.productbanner .ctas a[href*=order] {
  border: none;
  --switchbg: calc((var(--light) - 49) * 100%);
  background-color: hsl(0, 0%, var(--switchbg));
  --switch: calc((var(--light) - 50) * -100%);
  border: 2px solid hsl(0, 0%, var(--switchbg));
  color: hsl(0, 0%, var(--light));
}
.productbanner .ctas a:hover::before {
  opacity: 0;
  inset: -0.1em;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  animation: buttonHover 400ms ease-out;
  display: block;
  border: 0.01em solid;
  background-color: rgba(200, 200, 200, 0.25);
}
.productbanner p.info {
  font-size: 1.7rem;
  line-height: 1.1;
}

/*# sourceMappingURL=productBanner.css.map */
