/* Default (mobile-first) */
.cta-inline {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  flex-wrap: wrap;   /* छोटे स्क्रीन पर wrap allow */
}

/* Buttons - compact look */
.custom-btn {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 13px;
  line-height: 1.2;
  text-decoration: none;
  cursor: pointer;
  box-sizing: border-box;
}

.custom-btn.small {
  padding: 4px 8px;
  font-size: 12px;
}

.custom-btn.buy-btn,
.custom-btn.quiz-btn,
.custom-btn.start-btn,
.custom-btn.progress-btn,
.custom-btn.certificate-btn {
  width: auto !important;
  min-width: 0;
}

/* ✅ Desktop view (992px and above) - force inline + smaller */
@media (min-width: 992px) {
  .cta-inline {
    flex-wrap: nowrap;      /* एक लाइन पर रखो */
    gap: 8px;
  }
  .custom-btn {
    padding: 4px 8px;
    font-size: 12px;
  }
  .custom-btn.small {
    padding: 3px 6px;
    font-size: 11px;
  }
}
