.campaign-hero {
  --campaign-hero-bg-start: #f7f7f4;
  --campaign-hero-bg-end: #f1f1ee;
  --campaign-hero-text: #444444;
  --campaign-hero-accent: #a91d22;
  --campaign-hero-radius: 18px;
  --campaign-hero-content-width: 960px;
  --campaign-hero-video-width: 1280px;
  width: 100%;
  clear: both;
  display: block;
  background: #ffffff;
  padding: clamp(2.75rem, 5vw, 3.25rem) 0 clamp(3rem, 5vw, 3.5rem);
}

.campaign-hero,
.campaign-hero * {
  box-sizing: border-box;
}

.campaign-page-main {
  width: 100%;
  float: left;
  position: relative;
}

.campaign-hero .uk-container {
  width: min(100% - 2rem, 1360px);
  margin-left: auto;
  margin-right: auto;
}

.campaign-hero .campaign-hero__inner {
  margin: 0 auto;
  max-width: var(--campaign-hero-content-width);
  text-align: center;
}

.campaign-hero .campaign-hero__logo-wrap {
  display: inline-flex;
  justify-content: center;
}

.campaign-hero .campaign-hero__logo {
  display: block;
  max-width: min(240px, 60vw);
  height: auto;
  margin: 0 auto;
}

.campaign-hero .campaign-hero__heading {
  margin: 0 auto;
  max-width: 100%;
  color: #0f1113;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  line-height: 1.25!important;
}

.campaign-hero .campaign-hero__heading-accent {
  color: var(--campaign-hero-accent);
}

.campaign-hero .campaign-hero__heading-rest {
  color: #0f1113;
}

.campaign-hero .campaign-hero__description {
  margin: 1.15rem auto 0;
  max-width: 100%;
  color: var(--campaign-hero-text);
  font-family: "Poppins", sans-serif;
  font-size: clamp(1rem, 1.15vw, 1rem);
  line-height: 1.55;
}

.campaign-hero .campaign-hero__description p {
  margin: 0;
}

.campaign-hero .campaign-hero__description p + p {
  margin-top: 0.8rem;
}

.campaign-hero .campaign-hero__actions {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.campaign-hero .campaign-hero__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0.9rem 2rem;
  border-radius: 100px;
  border: 0;
  color: #fff;
  text-decoration: none;
  font-family: "Poppins", sans-serif;
  font-size: clamp(16px, 1.15vw, 16px);
  font-weight: 500;
  line-height: 1.1;
  transition: opacity 180ms ease, transform 180ms ease;
}

.campaign-hero .campaign-hero__button:hover,
.campaign-hero .campaign-hero__button:focus-visible {
  color: #fff;
  text-decoration: none;
  opacity: 0.92;
  transform: translateY(-1px);
}

.campaign-hero .campaign-hero__button:focus-visible {
  outline: 2px solid rgba(0, 0, 0, 0.35);
  outline-offset: 2px;
}

.campaign-hero .campaign-hero__button--primary {
  background: #000;
}

.campaign-hero .campaign-hero__button--secondary {
  background: var(--campaign-hero-accent);
}

.campaign-hero .campaign-hero__video-wrap {
  margin-left: auto;
  margin-right: auto;
  max-width: var(--campaign-hero-video-width);
}

.campaign-hero .campaign-hero__video-frame {
  position: relative;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--campaign-hero-radius);
  background: #000;
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.2);
}

@supports not (aspect-ratio: 16 / 9) {
  .campaign-hero .campaign-hero__video-frame {
    padding-top: 56.25%;
  }
}

.campaign-hero .campaign-hero__video-frame iframe,
.campaign-hero .campaign-hero__video-frame video,
.campaign-hero .campaign-hero__video-frame embed,
.campaign-hero .campaign-hero__video-frame object {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (min-width: 1220px) {
    .featured-product .uk-container, .campaign-hero .uk-container, .campaign-cta .uk-container {
        max-width: 1280px !important;
        padding: 0 0px !important;
    }
}

@media (max-width: 959px) {
  .campaign-hero {
    padding: 2.5rem 0 3rem;
  }

  .campaign-hero .campaign-hero__heading {
    /* max-width: 18ch; */
  }
}

@media (max-width: 639px) {
  .campaign-hero .campaign-hero__description {
    max-width: 34ch;
  }

  .campaign-hero .campaign-hero__actions {
    gap: 0.7rem;
  }

  .campaign-hero .campaign-hero__button {
    min-width: min(280px, 100%);
  }

  .campaign-hero .campaign-hero__video-frame {
    border-radius: 12px;
  }
}
