/* ==========================================================================
   Component: datpro_contact_cta
   Navy horizontal strip directly above the footer. Max two buttons.
   ========================================================================== */

.dp-cta {
  padding-block: clamp(2.5rem, 5vw, 4.5rem);
}

.dp-cta__panel {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  padding: clamp(1.5rem, 2.8vw, 2.25rem) clamp(1.5rem, 3vw, 2.75rem);
  border-radius: var(--r-lg);
  background: linear-gradient(112deg, #001b47 0%, var(--dp-navy) 55%, #063a86 100%);
  color: var(--dp-text-on-dark);
}

.dp-cta__text {
  max-width: 44rem;
  min-width: 0;
}

.dp-cta__title {
  color: #fff;
  font-size: clamp(1.125rem, 0.95rem + 0.75vw, 1.5rem);
  line-height: 1.35;
}

.dp-cta__desc {
  margin-top: 0.5rem;
  color: var(--dp-text-on-dark-muted);
  font-size: var(--fs-body);
  text-wrap: pretty;
}

.dp-cta__actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  flex: none;
}

@media (max-width: 767px) {
  .dp-cta__actions {
    width: 100%;
  }

  .dp-cta__actions .dp-btn {
    flex: 1 1 12rem;
  }
}
