.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 .text h1::after,
.productbanner .text h2::after,
.productbanner .text h3::after {
  content: none;
}
.productbanner .media,
.productbanner .text,
.productbanner > .cta {
  min-width: 240px;
  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 {
  border: 2px solid hsl(0, 0%, var(--switch));
  display: inline-block;
  text-decoration: none;
  padding: 0.6em;
  position: relative;
  transition: all 200ms ease-out;
}
@supports (-webkit-backdrop-filter: none) {
  .productbanner .ctas a {
    border: 2px solid var(--color-font);
  }
}
.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 */
