.ccb-header-banner {
  --ccb-dark: #07351f;
  --ccb-deep: #052719;
  --ccb-green: #145a38;
  --ccb-gold: #f8bd25;
  position: relative;
  overflow: hidden;
  margin: 12px 0 30px;
  padding: clamp(30px, 5vw, 58px) 18px;
  background:
    radial-gradient(circle at 82% 38%, rgba(67, 200, 121, 0.2), transparent 25%),
    linear-gradient(120deg, var(--ccb-deep) 0%, var(--ccb-dark) 42%, var(--ccb-green) 100%);
  background-position: center;
  background-size: cover;
  color: #ffffff;
}

.ccb-header-banner::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: rgba(248, 189, 37, 0.28);
}

.ccb-header-banner__content {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.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: 10px;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(248, 189, 37, 0.38);
  background: rgba(248, 189, 37, 0.12);
  color: var(--ccb-gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.ccb-header-banner .ccb-banner-image {
  display: block;
  width: 76px;
  height: 76px;
  margin-bottom: 14px;
  border-radius: 16px;
  object-fit: cover;
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 12px 28px rgba(4, 39, 25, 0.32);
}

.ccb-header-banner h1 {
  max-width: 760px;
  margin: 0 0 12px;
  color: inherit;
  font-size: clamp(34px, 4vw, 56px);
  line-height: 1.05;
}

.ccb-header-banner p {
  max-width: 720px;
  margin: 0 0 20px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  line-height: 1.5;
}

.ccb-header-banner__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 8px;
  background: linear-gradient(180deg, #ffcd38 0%, var(--ccb-gold) 100%);
  color: #12351f;
  font-weight: 800;
  text-decoration: none !important;
  box-shadow: 0 12px 26px rgba(248, 189, 37, 0.22);
  transition: background 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.ccb-header-banner__cta:hover,
.ccb-header-banner__cta:focus {
  background: #ffd85a;
  color: #12351f;
  box-shadow: 0 16px 32px rgba(248, 189, 37, 0.32);
  transform: translateY(-2px);
}

@media (max-width: 680px) {
  .ccb-header-banner {
    padding: 30px 14px;
  }

  .ccb-header-banner h1 {
    font-size: 34px;
  }

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

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