.cta-banner {
  margin-top: 20px;
  margin-bottom: 20px;
  position: relative;
  width: 100%;
  min-height: 220px;
  overflow: hidden;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    #090909 0%,
    #090909 28%,
    rgba(9, 9, 9, 0.92) 38%,
    #d4931a62 100%
  );
}

.cta-banner__content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding: 3.5rem clamp(1.5rem, 5vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}

.cta-banner__title {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 700;
  color: var(--color-text-primary);
  line-height: 1.15;
  max-width: 480px;
}

.cta-banner__sub {
  font-size: clamp(0.875rem, 2vw, 1rem);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

.cta-banner__btn {
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2.5rem;
  background: var(--color-primary);
  color: #000;
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition:
    background var(--transition),
    box-shadow var(--transition),
    transform var(--transition);
  min-width: 160px;
}

.cta-banner__btn:hover {
  background: var(--color-primary-light);
  box-shadow: 0 6px 24px rgba(212, 146, 26, 0.4);
  color: #000;
}

.cta-banner__btn:active {
  transform: scale(0.97);
}

@media (max-width: 480px) {
  .cta-banner {
    min-height: 280px;
  }

  .cta-banner::before {
    background: linear-gradient(
      to bottom,
      #090909 0%,
      rgba(9, 9, 9, 0.88) 55%,
      #d4931a62 100%
    );
  }
}

[data-theme="light"] .cta-banner::before {
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.95) 0%,
    rgba(255, 255, 255, 0.88) 35%,
    rgba(212, 147, 26, 0.35) 100%
  );
}
