.ccb-header-banner {
  --ccb-bg: #101623;
  --ccb-card: #111827;
  --ccb-alt: #151c2e;
  --ccb-text: #f1f5f9;
  --ccb-muted: #94a3b8;
  --ccb-light: #64748b;
  --ccb-accent: #3dc372;
  --ccb-accent-light: #6ee7a8;
  --ccb-accent-dark: #0a0e1a;
  --ccb-orange: #f5a623;
  --ccb-orange-light: #ffbe55;
  --ccb-border: rgba(255, 255, 255, 0.09);
  position: relative;
  overflow: hidden;
  width: min(1180px, calc(100% - 32px));
  margin: 14px auto 0;
  padding: clamp(18px, 2.6vw, 30px) clamp(18px, 3vw, 38px);
  background:
    radial-gradient(circle at 88% 28%, rgba(245, 166, 35, 0.2), transparent 28%),
    radial-gradient(circle at 68% 18%, rgba(61, 195, 114, 0.18), transparent 30%),
    linear-gradient(120deg, rgba(10, 14, 26, 0.96) 0%, rgba(17, 24, 39, 0.92) 48%, rgba(21, 28, 46, 0.84) 100%);
  background-position: center;
  background-size: cover;
  border: 1px solid var(--ccb-border);
  border-radius: var(--rl, 16px);
  color: var(--ccb-text);
  font-family: "DM Sans", system-ui, sans-serif;
  box-shadow: 0 18px 46px rgba(4, 6, 11, 0.28);
}

.ccb-header-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 14, 26, 0.72) 0%, rgba(10, 14, 26, 0.5) 44%, rgba(10, 14, 26, 0.16) 100%),
    linear-gradient(120deg, rgba(61, 195, 114, 0.08) 0%, transparent 55%);
  pointer-events: none;
}

.ccb-header-banner::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 7px;
  background: linear-gradient(180deg, var(--ccb-accent-light), var(--ccb-orange));
}

.ccb-header-banner__content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
}

.ccb-header-banner a,
.ccb-header-banner a:hover,
.ccb-header-banner a:focus {
  text-decoration: none !important;
}

.ccb-header-banner__tag {
  display: inline-flex;
  margin-bottom: 9px;
  padding: 5px 9px;
  border: 1px solid rgba(245, 166, 35, 0.28);
  border-radius: 999px;
  background: rgba(245, 166, 35, 0.1);
  color: var(--ccb-orange-light);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-transform: uppercase;
}

.ccb-header-banner__title {
  max-width: 720px;
  margin: 0 0 8px;
  color: inherit;
  font-family: Outfit, "DM Sans", system-ui, sans-serif;
  font-size: clamp(27px, 3vw, 40px);
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1.12;
}

.ccb-header-banner p {
  max-width: 690px;
  margin: 0 0 14px;
  color: var(--ccb-muted);
  font-size: 15px;
  font-weight: 700;
  line-height: 1.45;
}

.ccb-header-banner__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 18px;
  border-radius: var(--rs, 8px);
  background: linear-gradient(135deg, #e8930a 0%, var(--ccb-orange) 52%, var(--ccb-orange-light) 100%);
  color: var(--ccb-accent-dark);
  font-weight: 900;
  text-decoration: none !important;
  box-shadow: 0 4px 16px rgba(245, 166, 35, 0.25);
  transition: box-shadow 160ms ease, transform 160ms ease, filter 160ms ease, background 160ms ease;
}

.ccb-header-banner__cta:hover,
.ccb-header-banner__cta:focus {
  color: var(--ccb-accent-dark);
  filter: brightness(1.04);
  box-shadow: 0 8px 26px rgba(245, 166, 35, 0.34);
  transform: translateY(-2px);
  outline: 0;
}

@media (max-width: 680px) {
  .ccb-header-banner {
    width: calc(100% - 20px);
    margin-top: 10px;
    padding: 20px 16px;
  }

  .ccb-header-banner__title {
    font-size: 28px;
  }

  .ccb-header-banner p {
    font-size: 15px;
  }

  .ccb-header-banner__cta {
    width: 100%;
  }
}
