/**
 * Process CTA Block Styles
 * Dark bridge section with dual CTAs
 */

.process-cta-section {
  background: var(--dark);
  padding: 48px 40px;
  text-align: center;
}

.process-cta-section h3 {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 38px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 10px;
  line-height: 1.2;
}

.process-cta-section > p {
  color: var(--sandy-tan);
  font-size: 16px;
  margin-bottom: 28px;
  opacity: .9;
  max-width: 780px;
	margin-left: auto;
	margin-right: auto;
}

.process-cta-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 600px) {
  .process-cta-section {
    padding: 36px 20px;
  }
  
  .process-cta-section h3 {
    font-size: 28px;
  }
  
  .process-cta-actions {
    flex-direction: column;
    gap: 12px;
  }
}
