.btn {
  background-color: var(--color-orange);
  padding: 1rem 1rem;
  /* height: 4em; */
  width: auto;
  border: none;
  border-radius: 100px;
  color: #f9f9f9;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
  font-size: var(--fs-xs);
  align-self: center;/* Prevents vertical stretching */
  justify-self: right; /* Prevents horizontal stretching in a Grid cell */
  width: max-content;
  margin-right: 0.4rem;
  
}

@media (min-width: 1024px) {
  .btn {
    padding: 1rem 2rem; /* Roomier for desktop */
    font-size: var(--fs-xs); /* Keep it crisp */
  }
}