.finder-head-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.random-window-feature {
  appearance: none;
  border: 0;
  border-radius: 14px;
  padding: 14px 19px;
  background: var(--coral);
  color: #fff;
  box-shadow: 0 8px 20px rgba(230, 91, 75, .24);
  font: 850 14px/1.2 Inter, ui-sans-serif, system-ui, sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .15s ease, box-shadow .15s ease;
}

.random-window-feature:hover {
  transform: translateY(-2px);
  box-shadow: 0 11px 24px rgba(230, 91, 75, .3);
}

.random-window-feature:focus-visible {
  outline: 3px solid rgba(39, 125, 115, .35);
  outline-offset: 3px;
}

@media (max-width: 580px) {
  .finder-head-actions {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }

  .random-window-feature {
    width: 100%;
    padding: 15px 18px;
  }
}
