.ccb-header-banner {
  --ccb-forest: var(--navy-900, #0b2e1f);
  --ccb-forest-dark: var(--navy-950, #041a10);
  --ccb-forest-mid: var(--navy-700, #1a5c44);
  --ccb-lime: var(--amber-500, #a8e82c);
  --ccb-lime-hover: var(--amber-400, #b8f044);
  --ccb-cream: var(--cream, #faf8f0);
  --ccb-text: var(--text, #1a2a20);
  --ccb-muted: var(--text-muted, #3d5a48);
  position: relative;
  width: min(1120px, calc(100% - 32px));
  overflow: hidden;
  margin: 16px auto;
  padding: clamp(18px, 2.6vw, 34px) 18px;
  border: 1px solid rgba(168, 232, 44, 0.28);
  border-radius: 16px;
  background:
    radial-gradient(circle at 78% 36%, rgba(168, 232, 44, 0.14), transparent 26%),
    linear-gradient(120deg, rgba(4, 26, 16, 0.76) 0%, rgba(11, 46, 31, 0.6) 42%, rgba(26, 92, 68, 0.34) 100%);
  background-position: center;
  background-size: cover;
  color: #ffffff;
  font-family: var(--font-ui, "DM Sans", system-ui, sans-serif);
}

.ccb-header-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(4, 26, 16, 0.68) 0%, rgba(11, 46, 31, 0.34) 42%, rgba(11, 46, 31, 0.04) 100%),
    radial-gradient(circle at 82% 44%, transparent 0 28%, rgba(4, 26, 16, 0.12) 64%);
  pointer-events: none;
}

.ccb-header-banner::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(168, 232, 44, 0.34);
}

.ccb-header-banner__content {
  position: relative;
  z-index: 1;
  width: min(1120px, 100%);
  margin: 0 auto;
  text-shadow: 0 2px 16px rgba(4, 26, 16, 0.44);
}

.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(168, 232, 44, 0.4);
  border-radius: 999px;
  background: rgba(168, 232, 44, 0.1);
  color: var(--ccb-lime-hover);
  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: var(--font-display, "Playfair Display", Georgia, serif);
  font-size: clamp(30px, 3.1vw, 44px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.04;
}

.ccb-header-banner p {
  max-width: 690px;
  margin: 0 0 14px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 650;
  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: 10px;
  background: linear-gradient(135deg, var(--ccb-lime) 0%, #7dd63e 100%);
  color: var(--ccb-forest-dark);
  font-weight: 900;
  text-decoration: none !important;
  box-shadow: 0 10px 22px rgba(168, 232, 44, 0.26);
  transition: box-shadow 160ms ease, transform 160ms ease, filter 160ms ease;
}

.ccb-header-banner__cta:hover,
.ccb-header-banner__cta:focus {
  color: var(--ccb-forest-dark);
  filter: brightness(1.04);
  box-shadow: 0 14px 28px rgba(168, 232, 44, 0.36);
  transform: translateY(-2px);
  outline: 0;
}

@media (max-width: 680px) {
  .ccb-header-banner {
    width: min(1120px, calc(100% - 20px));
    margin: 12px auto;
    padding: 22px 14px;
    border-radius: 12px;
  }

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

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

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