.banner {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  height: clamp(26rem, 55vw, 38rem);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.banner__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.banner__content {
  position: relative;
  z-index: 2;
  max-width: var(--width-container-extra-large, 90rem);
  width: 100%;
  margin-inline: auto;
  padding: 4rem 0;
}

.banner__title {
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: var(--color-white, #ffffff);
  line-height: 1.1;
  margin: 0 0 0.75rem;
  max-width: 40rem;
}

.banner__subtitle {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--color-white, #ffffff);
  line-height: 1.6;
  margin: 0 0 1.5rem;
  opacity: 0.9;
  max-width: 40rem;
}

.banner__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.banner__cta {
  display: inline-block;
  padding: 0.7rem 1.75rem;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border-radius: 4px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.banner__cta--primary {
  background-color: var(--colour-primary, #00c4b4);
  color: var(--color-black, #000000);
  border: 2px solid var(--colour-primary, #00c4b4);
}

.banner__cta--primary:hover {
  background-color: var(--colour-primary-dark, #009e91);
  border-color: var(--colour-primary-dark, #009e91);
  text-decoration: none;
}

.banner__cta--secondary {
  background-color: rgba(255, 255, 255, 0.3);
  color: var(--color-white, #ffffff);
  border: 2px solid rgba(255, 255, 255, 0.7);
}

.banner__cta--secondary:hover {
  background-color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
}
