/* ===================================================================
   CTA Row — Frontend CSS
   =================================================================== */

.ctr-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
}

.ctr-label {
  color: #999;
  font-size: 22px;
  font-weight: 400;
  text-decoration: none !important;
  letter-spacing: 1px;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.ctr-label:hover {
  color: #666;
}

/* Button uses .cb-btn styles from contact-button */

/* ===== Responsive ===== */
@media screen and (max-width: 768px) {
  .ctr-row {
    gap: 30px;
  }
  .ctr-label {
    font-size: 18px;
  }
}

@media screen and (max-width: 480px) {
  .ctr-row {
    flex-direction: column;
    gap: 16px;
  }
  .ctr-label {
    font-size: 16px;
  }
}
