.donation-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}

.video-row {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-bottom: 1rem;
}

.donate-row {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 1rem;
}

.video-row .btn-theme {
  min-width: 300px;
  max-width: 400px;
}

.donate-row .btn-theme {
  flex: 1;
  min-width: 200px;
  max-width: 300px;
}

@media (max-width: 767px) {
  .donate-row {
    flex-direction: column;
    align-items: stretch;
  }

  .donate-row .btn-theme {
    max-width: none;
  }
}
