.qmr-banner-with-cta__wrapper {
  background: linear-gradient(110deg, #0C746A 1.59%, #1F7791 40.95%, #0D3273 100%);
}

.qmr-banner-with-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: 2rem 2.5rem;
  color: var(--qmr-gray-100);
}

.qmr-banner-with-cta__content {
  min-width: 0;
  max-width: 48rem;
}

.qmr-banner-with-cta__title {
  margin: 0 0 0.5rem;
  color: inherit;
  font-size: 2rem;
  line-height: 1.15;
}

.qmr-banner-with-cta__description {
  max-width: 42rem;
  margin: 0;
  color: inherit;
  font-size: 1.1rem;
  line-height: 1.5;
}

.qmr-banner-with-cta__actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: flex-end;
  gap: 0.75rem;
}

.qmr-banner-with-cta__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3rem;
  padding: 0.75rem 1.25rem;
  border: 2px solid var(--qmr-gray-100);
  border-radius: 0;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
}

.qmr-banner-with-cta__cta--primary {
  color: var(--qmr-primary);
  background: var(--qmr-gray-100);
}

.qmr-banner-with-cta__cta--secondary {
  color: var(--qmr-gray-100);
  background: transparent;
}

.qmr-banner-with-cta__cta:hover,
.qmr-banner-with-cta__cta:focus-visible {
  color: var(--qmr-primary);
  background: var(--qmr-gray-100);
}

@media (max-width: 767px) {
  .qmr-banner-with-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 1.5rem;
  }

  .qmr-banner-with-cta__title {
    font-size: 1.6rem;
  }

  .qmr-banner-with-cta__actions {
    align-items: stretch;
    justify-content: flex-start;
    flex-direction: column;
  }

  .qmr-banner-with-cta__cta {
    width: 100%;
    white-space: normal;
  }
}
