/* Copyright 2025-2026 Renofy Ltd. All rights reserved. */
/* ========================================
   BOTTOM ACTION ROW COMPONENT
   ======================================== */

/* Container for bottom action buttons in deep dive pages - Mobile first */
.bottom-action-row {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: flex-start;
  width: auto;
  flex-wrap: wrap;
  gap: 0.3rem;
  padding-top: 1rem;
  margin: 1rem 1rem 0 1rem;
  border-top: 1px solid var(--color-border);
}

/* Desktop */
@media (min-width: 821px) {
  .bottom-action-row {
    padding: 1rem 0;
    margin: 0;
    border: none;
  }
}
