.c-brand-cta {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;

  @media (min-width: 768px) {
    padding: 8rem 0;
  }
}

.c-brand-cta__bg {
  position: absolute;
  inset: 0;
  z-index: -1;

  &::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--brand-cta-gardient);
  }
}

.c-brand-cta__inner {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  max-width: 58.5rem;
  position: relative;
}

.c-brand-cta__title-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.c-brand-cta__title {
  color: var(--color-white);

  @media (max-width: 564px) {
    text-align: center;
  }
}

.c-brand-cta__text {
  color: var(--color-white);

  @media (max-width: 564px) {
    text-align: center;
    font-size: 1.4rem;
    line-height: 2.6rem;
  }
}

.c-brand-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;

  @media (max-width: 564px) {
    width: 100%;

    a {
      width: 100%;
    }
  }
}