/* CC Deep Dive CTA — scoped under .cc-dd-cta-wrap */

.cc-dd-cta-wrap {
  margin: 3rem 0 2rem;
  padding: 0;
}

.cc-dd-cta-wrap .cc-dd-cta {
  padding: 1.5rem 1.75rem;
  border-left: 4px solid #9b8fb4;
  background: linear-gradient(135deg, #f7f9fb 0%, #edf2f7 100%);
  border-radius: 6px;
}

.cc-dd-cta-wrap h3 {
  margin: 0 0 .75rem;
  font-size: 1.15rem;
  line-height: 1.35;
  color: #1f2937;
}

.cc-dd-cta-wrap p {
  margin: 0 0 1rem;
  color: #4b5563;
  font-size: .95rem;
  line-height: 1.55;
}

.cc-dd-cta-wrap .cc-dd-cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: .625rem;
}

.cc-dd-cta-wrap .cc-dd-btn-primary,
.cc-dd-cta-wrap .cc-dd-btn-secondary {
  display: inline-block;
  padding: .625rem 1.25rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: .9rem;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
}

.cc-dd-cta-wrap .cc-dd-btn-primary {
  background: #9b8fb4;
  color: #ffffff;
}

.cc-dd-cta-wrap .cc-dd-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(155, 143, 180, .4);
  color: #ffffff;
  text-decoration: none;
}

.cc-dd-cta-wrap .cc-dd-btn-secondary {
  background: transparent;
  color: #9b8fb4;
  border: 2px solid #9b8fb4;
}

.cc-dd-cta-wrap .cc-dd-btn-secondary:hover {
  background: #9b8fb4;
  color: #ffffff;
  text-decoration: none;
}

@media (max-width: 600px) {
  .cc-dd-cta-wrap .cc-dd-cta-buttons {
    flex-direction: column;
  }
  .cc-dd-cta-wrap .cc-dd-btn-primary,
  .cc-dd-cta-wrap .cc-dd-btn-secondary {
    text-align: center;
  }
}
