/* ===================================
   Buttons & CTAs
   =================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 220px;
  height: 50px;
  background-color: var(--color-primary);
  color: var(--color-light);
  border-radius: var(--radius-md);
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  font-family: inherit;
  font-size: 1rem;
}

.btn:hover {
  background-color: var(--color-on-primary);
  color: var(--color-light);
  transform: translateY(-2px);
}

/* Modifier for section CTA buttons (centered block) */
.btn--block {
  display: flex;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

@media (max-width: 480px) {
  .btn {
    width: 100%;
    max-width: 280px;
  }
}
