@charset "UTF-8";
/* ============================================================
   CTA BUTTON BAND — Unified Styles (Light Background / Custom Geometric)
   Colors: uses --bs-bluegray (#6c757d) and --bs-bluegray-trans (#405e6fc0)
   ============================================================ */
.cta-band-light {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  padding: 26px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-sizing: border-box;
  background: linear-gradient(108deg, #f8fafc, #e6f0ef 45%, #f9e6cc);
  border: 1px solid rgba(20, 32, 43, 0.12);
  z-index: 1; /* Containment for pseudo-elements */
}

/* Diagonal stripes and grid-line repetition */
.cta-band-light::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(112deg, transparent 18%, rgba(255, 255, 255, 0.74) 18.2% 33%, transparent 33.3%), repeating-linear-gradient(0deg, rgba(23, 32, 42, 0.07) 0 1px, transparent 1px 11px);
  pointer-events: none;
  z-index: -2;
}

/* Soft white gradient fade-out across the band */
.cta-band-light::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.85), transparent 42%);
  pointer-events: none;
  z-index: -1;
}

/* --- Text Alignment Layouts --- */
.cta-band-light__text {
  display: flex;
  flex-direction: column;
  flex-shrink: 1;
  min-width: 0;
}

/* Left-aligned Text Layout Modifiers (Default) */
.cta-band-light--left .cta-band-light__text {
  align-items: flex-start;
  text-align: left;
}

/* Right-aligned Text Layout Modifiers (Buttons on the Left) */
.cta-band-light--right .cta-band-light__text {
  align-items: flex-end;
  text-align: right;
}

.cta-band-light .kicker {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 700;
  color: rgba(20, 32, 43, 0.58);
  margin-bottom: 4px;
}

.cta-band-light .title {
  font-size: 16px;
  color: #14202b;
  font-weight: 600;
  margin: 0;
}

/* --- Button Structure --- */
.cta-band-light__buttons {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  flex-wrap: wrap;
  align-items: center;
  z-index: 2; /* Ensure hover and clicks are active above patterns */
}

/* Original Blue-Gray Outline Button (Higher Specificity to override Bootstrap defaults) */
.cta-band-light .cta-band__btn--outline {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 8px;
  border: 1.5px solid #6c757d;
  background: transparent;
  color: #405e6f;
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.18s ease, border-color 0.18s ease;
  font-family: inherit;
  line-height: 1;
}

.cta-band-light .cta-band__btn--outline:hover,
.cta-band-light .cta-band__btn--outline:focus-visible {
  background: rgba(108, 117, 125, 0.09);
  border-color: #405e6f;
  color: #2e4455;
  text-decoration: none;
  outline: none;
}

.cta-band-light .cta-band__btn--outline:focus-visible {
  box-shadow: 0 0 0 3px rgba(108, 117, 125, 0.25);
}

/* Original Blue-Gray Solid Fill Button (Higher Specificity to override Bootstrap defaults) */
.cta-band-light .cta-band__btn--fill {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 8px;
  border: none;
  background: rgba(64, 94, 111, 0.7529411765);
  color: #ffffff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.18s ease;
  font-family: inherit;
  line-height: 1;
}

.cta-band-light .cta-band__btn--fill:hover,
.cta-band-light .cta-band__btn--fill:focus-visible {
  background: #405e6f;
  color: #ffffff;
  text-decoration: none;
  outline: none;
}

.cta-band-light .cta-band__btn--fill:focus-visible {
  box-shadow: 0 0 0 3px rgba(64, 94, 111, 0.3);
}

/* --- Responsive Adaptability --- */
@media (max-width: 640px) {
  /* Text Left, Buttons Right on Mobile */
  .cta-band-light--left {
    flex-direction: column;
    align-items: flex-start;
    padding: 22px 24px;
    gap: 16px;
  }
  /* Text Right, Buttons Left on Mobile (Reverses to keep text at the top) */
  .cta-band-light--right {
    flex-direction: column-reverse;
    align-items: flex-start;
    padding: 22px 24px;
    gap: 16px;
  }
  /* Reset alignment so everything reads neatly on mobile screens */
  .cta-band-light--left .cta-band-light__text,
  .cta-band-light--right .cta-band-light__text {
    align-items: flex-start !important;
    text-align: left !important;
    width: 100%;
  }
  .cta-band-light__buttons {
    width: 100%;
  }
  .cta-band-light__buttons .cta-band__btn--outline,
  .cta-band-light__buttons .cta-band__btn--fill {
    flex: 1;
    text-align: center;
  }
}