/* desktop: text + tlačítko vedle sebe */
.lead-empty {
  display: flex;
  align-items: center;
  gap: 16px;              /* mezera mezi textem a tlačítkem */
}

/* ať se tlačítko nezalamuje textem */
.lead-empty__cta {
  flex-shrink: 0;
}

/* na mobilu pod sebe */
@media (max-width: 768px) {
  .lead-empty {
    flex-direction: column;
    align-items: flex-start;
  }

  .lead-success__cta-link {
    width: 100%;
    text-align: center;
  }
}

.lead-success__cta-link {
  display: inline-block;
  white-space: nowrap;
  font-weight: 600;
  text-decoration: none;
  padding: 6px 16px;
  border-radius: 9999px;
  border: 1px solid #16a34a;
  background: #16a34a;
  color: #ffffff;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease,
              transform 0.1s ease;
}

.lead-success__cta-link:hover {
  background: #15803d;
  border-color: #15803d;
  color: #ffffff;
  transform: translateY(-1px);
}