/* Wrap the migrated markup with .migrated-block-banner */
.migrated-block-banner .section--banner {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #fff;
  padding: 0;
  position: relative;
  text-align: center;
}

.migrated-block-banner .section--banner::before {
  background: rgba(0, 0, 0, 0.5);
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 100%;
  z-index: 1;
}

.migrated-block-banner .section--banner > div {
  backdrop-filter: blur(8px);
  background: rgba(0, 0, 0, 0.35);
  padding: 50px 0;
  position: relative;
  z-index: 2;
}

.migrated-block-banner .container {
  box-sizing: border-box;
  margin: 0 auto;
  padding: 0 16px;
  position: relative;
  width: 100%;
  z-index: 2;
}

.migrated-block-banner .title-h1 {
  font-size: 28px;
  font-weight: 500;
  letter-spacing: -1px;
  margin: 0 0 20px;
}

.migrated-block-banner .container p {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  margin: 0;
}

.migrated-block-banner .container > div:last-child {
  align-items: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
  justify-content: center;
  margin-top: 40px;
}

.migrated-block-banner .btn {
  display: inline-block;
  font-size: 1.125rem;
  font-weight: 600;
  line-height: 1.75rem;
  padding: 12px 28px;
  text-decoration: none;
  transition: all 0.3s ease;
  width: 100%;
}

.migrated-block-banner .btn-primary {
  background: #ffc857;
  border: 2px solid #ffc857;
  color: #000;
}

.migrated-block-banner .btn-outline-white {
  background: transparent;
  border: 2px solid #fff;
  color: #fff;
}

@media (min-width: 640px) {
  .migrated-block-banner .container {
    max-width: 640px;
  }
}

@media (min-width: 768px) {
  .migrated-block-banner .container {
    max-width: 768px;
  }
}

@media (min-width: 1024px) {
  .migrated-block-banner .container {
    max-width: 1024px;
  }

  .migrated-block-banner .section--banner > div {
    padding: 190px 0;
  }

  .migrated-block-banner .title-h1 {
    font-size: 65px;
    line-height: 75px;
  }

  .migrated-block-banner .container p {
    font-size: 26px;
    line-height: 38px;
  }

  .migrated-block-banner .container > div:last-child {
    flex-direction: row;
    gap: 42px;
  }

  .migrated-block-banner .btn {
    width: auto;
  }
}

@media (min-width: 1280px) {
  .migrated-block-banner .container {
    max-width: 1280px;
  }
}

@media (min-width: 1536px) {
  .migrated-block-banner .container {
    max-width: 1536px;
  }
}
