/* =========================================================
   CTA ROW (Reusable component)
   Used in: team list + team detail + any other pages
   ========================================================= */

.cta-row-profes {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start; /* ✅ todo alineado a la izquierda */
  gap: 16px;
  width: 100%;
  margin-top: 30px;
}

.cta-row-profes > a.btn,
.cta-row-profes > a.btn-alt,
.cta-row-profes > button.btn,
.cta-row-profes > button.btn-alt {
  flex: 0 0 auto;
}

.cta-row-profes .logo-return {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-left: 0; /* ✅ ya no empuja el logo a la derecha */
  text-decoration: none;
  white-space: nowrap;
}

.cta-row-profes .logo-return img {
  display: block;
}

/* Responsive: en pantallas pequeñas solo hace wrap natural */
@media (max-width: 768px) {
  .cta-row-profes {
    justify-content: flex-start; /* ✅ mantiene alineación izquierda */
  }

  .cta-row-profes .logo-return {
    margin-left: 0;
    margin-top: 8px;
  }
}
