/* ==========================================================================
   CHROMA FILMS — RESPONSIVE KIT
   Desktop-first, with clean mobile/tablet breakpoints
   Breakpoints: xl(≥1200) lg(≥992) md(≥768) sm(≥576) xs(<576)
   ========================================================================== */

:root {
  --app-container-max: 1320px;
  --app-container-padding: 1.5rem;
  --app-card-padding-xl: 1.5rem;
  --app-card-padding-lg: 1.25rem;
  --app-card-padding-md: 1rem;
  --app-card-padding-sm: 0.75rem;
  --app-gap-xl: 1.5rem;
  --app-gap-lg: 1.25rem;
  --app-gap-md: 1rem;
  --app-gap-sm: 0.75rem;
}

/* ==========================================================================
   APP CONTAINER — max-width + padding responsive
   ========================================================================== */
.app-container {
  max-width: var(--app-container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--app-container-padding);
  padding-right: var(--app-container-padding);
  width: 100%;
}

@media (max-width: 991.98px) {
  .app-container { --app-container-padding: 1rem; }
}
@media (max-width: 767.98px) {
  .app-container { --app-container-padding: 0.75rem; }
}

/* ==========================================================================
   APP GRID — Main + Aside layout (2 col desktop → 1 col mobile)
   ========================================================================== */
.app-grid {
  display: grid;
  gap: var(--app-gap-xl);
  grid-template-columns: 1fr 380px;
  grid-template-areas: "main aside";
}

.app-grid > .app-main { grid-area: main; min-width: 0; }
.app-grid > .app-aside { grid-area: aside; min-width: 0; }

@media (max-width: 991.98px) {
  .app-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "aside";
    gap: var(--app-gap-md);
  }
}

/* Alternate: aside-first on desktop */
.app-grid--aside-first {
  grid-template-columns: 320px 1fr;
  grid-template-areas: "aside main";
}
@media (max-width: 991.98px) {
  .app-grid--aside-first {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "aside";
  }
}

/* ==========================================================================
   APP TOOLBAR — Wrap + stack on mobile
   ========================================================================== */
.app-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
  justify-content: space-between;
}

.app-toolbar-left,
.app-toolbar-right {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

@media (max-width: 767.98px) {
  .app-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
  }
  .app-toolbar-left,
  .app-toolbar-right {
    width: 100%;
    justify-content: stretch;
  }
  .app-toolbar-right {
    flex-direction: column;
  }
}

/* ==========================================================================
   APP ACTIONS — Button group, stack on xs
   ========================================================================== */
.app-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
}

.app-actions--end { justify-content: flex-end; }
.app-actions--center { justify-content: center; }

@media (max-width: 575.98px) {
  .app-actions {
    flex-direction: column;
    width: 100%;
  }
  .app-actions > .btn,
  .app-actions > a.btn {
    width: 100%;
  }
  /* data attribute for opt-in full width */
  .btn[data-responsive],
  a.btn[data-responsive] {
    width: 100%;
  }
}

/* ==========================================================================
   APP KPI GRID — 2 cols mobile, 3 tablet, 4 desktop
   ========================================================================== */
.app-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--app-gap-lg);
}

@media (max-width: 1199.98px) {
  .app-kpi-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 991.98px) {
  .app-kpi-grid { grid-template-columns: repeat(2, 1fr); gap: var(--app-gap-md); }
}
@media (max-width: 575.98px) {
  .app-kpi-grid { grid-template-columns: 1fr 1fr; gap: var(--app-gap-sm); }
}

/* ==========================================================================
   APP PHOTO GRID — Responsive columns for photo galleries
   ========================================================================== */
.app-photo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--app-gap-md);
}

@media (max-width: 1199.98px) {
  .app-photo-grid { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 991.98px) {
  .app-photo-grid { grid-template-columns: repeat(3, 1fr); gap: var(--app-gap-sm); }
}
@media (max-width: 767.98px) {
  .app-photo-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Variant: 6 cols desktop */
.app-photo-grid--lg {
  grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 1199.98px) { .app-photo-grid--lg { grid-template-columns: repeat(5, 1fr); } }
@media (max-width: 991.98px) { .app-photo-grid--lg { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 767.98px) { .app-photo-grid--lg { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 575.98px) { .app-photo-grid--lg { grid-template-columns: repeat(2, 1fr); } }

/* ==========================================================================
   APP CARD RESPONSIVE — Padding adapts
   ========================================================================== */
.app-card-responsive {
  padding: var(--app-card-padding-xl);
}
@media (max-width: 991.98px) { .app-card-responsive { padding: var(--app-card-padding-lg); } }
@media (max-width: 767.98px) { .app-card-responsive { padding: var(--app-card-padding-md); } }
@media (max-width: 575.98px) { .app-card-responsive { padding: var(--app-card-padding-sm); } }

/* Card body responsive */
.app-card .card-body,
.card.app-card-responsive .card-body {
  padding: var(--app-card-padding-xl);
}
@media (max-width: 991.98px) {
  .app-card .card-body,
  .card.app-card-responsive .card-body { padding: var(--app-card-padding-lg); }
}
@media (max-width: 767.98px) {
  .app-card .card-body,
  .card.app-card-responsive .card-body { padding: var(--app-card-padding-md); }
}
@media (max-width: 575.98px) {
  .app-card .card-body,
  .card.app-card-responsive .card-body { padding: var(--app-card-padding-sm); }
}

/* ==========================================================================
   APP TABLE COMPACT — Reduce font/padding on mobile
   ========================================================================== */
.app-table-compact {
  font-size: 0.9375rem;
}
.app-table-compact th,
.app-table-compact td {
  padding: 0.75rem;
  vertical-align: middle;
}

@media (max-width: 991.98px) {
  .app-table-compact {
    font-size: 0.875rem;
  }
  .app-table-compact th,
  .app-table-compact td {
    padding: 0.5rem;
  }
}

@media (max-width: 575.98px) {
  .app-table-compact {
    font-size: 0.8125rem;
  }
  .app-table-compact th,
  .app-table-compact td {
    padding: 0.4rem 0.5rem;
  }
  .app-table-compact .text-nowrap {
    white-space: normal !important;
  }
}

/* ==========================================================================
   APP STICKY ACTIONS — Sticky on desktop, static on mobile
   ========================================================================== */
.app-sticky-actions {
  position: sticky;
  bottom: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(4px);
  border-top: 1px solid var(--cf-border, #e5e7eb);
  padding: 1rem;
  margin: 0 -1.5rem -1.5rem;
}

@media (max-width: 767.98px) {
  .app-sticky-actions {
    position: static;
    background: transparent;
    backdrop-filter: none;
    border-top: none;
    padding: 1rem 0 0;
    margin: 0;
  }
}

/* ==========================================================================
   APP SIDEBAR — Max-height desktop, collapsible mobile
   ========================================================================== */
.app-sidebar-responsive {
  max-height: 400px;
  overflow-y: auto;
}

@media (max-width: 991.98px) {
  .app-sidebar-responsive {
    max-height: none;
    overflow: visible;
  }
}

/* Sidebar collapse toggle for mobile */
.app-sidebar-toggle {
  display: none;
}

@media (max-width: 991.98px) {
  .app-sidebar-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--chroma-accent, #0f5d66);
    color: #fff;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    cursor: pointer;
  }
  .app-sidebar-toggle:hover {
    background: #0c5058;
  }
  .app-sidebar-toggle::after {
    content: '▼';
    font-size: 0.75rem;
    transition: transform 0.2s ease;
  }
  .app-sidebar-toggle[aria-expanded="true"]::after {
    transform: rotate(180deg);
  }
  .app-sidebar-content {
    display: none;
    margin-top: 0.75rem;
  }
  .app-sidebar-content.show {
    display: block;
  }
}

/* ==========================================================================
   APP DROPZONE — Height responsive
   ========================================================================== */
.app-dropzone-responsive {
  min-height: 180px;
}
@media (max-width: 767.98px) {
  .app-dropzone-responsive {
    min-height: 140px;
  }
}
@media (max-width: 575.98px) {
  .app-dropzone-responsive {
    min-height: 120px;
  }
}

/* ==========================================================================
   MODAL RESPONSIVE — Scrollable + full-width buttons on xs
   ========================================================================== */
@media (max-width: 575.98px) {
  .modal-dialog {
    margin: 0.5rem;
  }
  .modal-body {
    max-height: 70vh;
    overflow-y: auto;
  }
  .modal-content {
    border-radius: 0.75rem;
  }
  .modal-footer {
    flex-direction: column;
    gap: 0.5rem;
  }
  .modal-footer .btn {
    width: 100%;
    margin: 0 !important;
  }
}

/* ==========================================================================
   NAVBAR RESPONSIVE — Mobile improvements
   ========================================================================== */
@media (max-width: 991.98px) {
  .app-navbar .navbar-collapse,
  .cf-header .navbar-collapse {
    padding: 1rem 0;
  }
  .app-navbar .navbar-nav,
  .cf-header .navbar-nav {
    gap: 0.25rem;
  }
  .app-navbar .nav-link,
  .cf-header .nav-link {
    padding: 0.75rem 1rem !important;
    border-radius: 0.5rem;
    transition: background 0.15s ease;
  }
  .app-navbar .nav-link:hover,
  .cf-header .nav-link:hover {
    background: rgba(255, 255, 255, 0.08);
  }
  .app-navbar .nav-link.active,
  .cf-header .nav-link.active {
    background: rgba(255, 255, 255, 0.12);
  }
  /* Dropdown buttons */
  .app-navbar .d-flex.gap-2,
  .cf-header .d-flex.gap-2 {
    flex-direction: column;
    gap: 0.5rem !important;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 0.75rem;
  }
  .app-navbar .d-flex.gap-2 .btn,
  .cf-header .d-flex.gap-2 .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ==========================================================================
   STEPPER RESPONSIVE — For parent wizard
   ========================================================================== */
.app-stepper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0;
  margin-bottom: 1.5rem;
}

.app-stepper-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.app-stepper-number {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  background: #e5e7eb;
  color: #6b7280;
  flex-shrink: 0;
}

.app-stepper-step.active .app-stepper-number {
  background: var(--chroma-accent, #0f5d66);
  color: #fff;
}

.app-stepper-step.done .app-stepper-number {
  background: #10b981;
  color: #fff;
}

.app-stepper-label {
  font-weight: 500;
  color: #6b7280;
}

.app-stepper-step.active .app-stepper-label {
  color: var(--chroma-text, #0f172a);
  font-weight: 600;
}

.app-stepper-line {
  width: 40px;
  height: 2px;
  background: #e5e7eb;
  margin: 0 0.5rem;
}

.app-stepper-step.done + .app-stepper-line {
  background: #10b981;
}

@media (max-width: 767.98px) {
  .app-stepper { gap: 0; }
  .app-stepper-label { display: none; }
  .app-stepper-line { width: 24px; }
}

@media (max-width: 575.98px) {
  .app-stepper-number {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }
  .app-stepper-line { width: 16px; }
}

/* ==========================================================================
   HELPER RESPONSIVE UTILITIES
   ========================================================================== */

/* Hide on breakpoints */
@media (max-width: 575.98px) { .hide-xs { display: none !important; } }
@media (max-width: 767.98px) { .hide-sm { display: none !important; } }
@media (max-width: 991.98px) { .hide-md { display: none !important; } }
@media (max-width: 1199.98px) { .hide-lg { display: none !important; } }

/* Show only on breakpoints */
.show-xs, .show-sm, .show-md, .show-lg { display: none !important; }
@media (max-width: 575.98px) { .show-xs { display: block !important; } }
@media (max-width: 767.98px) { .show-sm { display: block !important; } }
@media (max-width: 991.98px) { .show-md { display: block !important; } }
@media (max-width: 1199.98px) { .show-lg { display: block !important; } }

/* Text truncate with max-width */
.text-truncate-sm {
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (min-width: 768px) {
  .text-truncate-sm { max-width: none; }
}

/* Flex stack on mobile */
.flex-stack-sm {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
@media (max-width: 767.98px) {
  .flex-stack-sm {
    flex-direction: column;
  }
  .flex-stack-sm > * {
    width: 100%;
  }
}

/* Gap responsive */
.gap-responsive { gap: var(--app-gap-xl); }
@media (max-width: 991.98px) { .gap-responsive { gap: var(--app-gap-md); } }
@media (max-width: 575.98px) { .gap-responsive { gap: var(--app-gap-sm); } }

/* Padding responsive utility */
.p-responsive { padding: var(--app-card-padding-xl); }
@media (max-width: 991.98px) { .p-responsive { padding: var(--app-card-padding-lg); } }
@media (max-width: 767.98px) { .p-responsive { padding: var(--app-card-padding-md); } }
@media (max-width: 575.98px) { .p-responsive { padding: var(--app-card-padding-sm); } }

/* Touch-friendly tap targets */
@media (max-width: 767.98px) {
  .tap-target {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
  }
}

/* ==========================================================================
   TABLE RESPONSIVE ENHANCEMENTS
   ========================================================================== */
.table-responsive {
  border-radius: 0.5rem;
}

/* Action column - shrink and dropdown on mobile */
@media (max-width: 767.98px) {
  .table .col-actions {
    width: 48px;
    text-align: center;
  }
  /* Hide text buttons, show dropdown */
  .table .action-text { display: none; }
  .table .action-dropdown { display: inline-block; }
}
@media (min-width: 768px) {
  .table .action-dropdown { display: none; }
}

/* ==========================================================================
   FORM RESPONSIVE
   ========================================================================== */
@media (max-width: 575.98px) {
  .form-control-lg,
  .form-select-lg {
    font-size: 1rem;
    padding: 0.625rem 0.875rem;
  }
  .btn-lg {
    font-size: 1rem;
    padding: 0.625rem 1rem;
  }
  /* Full width inputs in stacked forms */
  .form-group-responsive .form-control,
  .form-group-responsive .form-select,
  .form-group-responsive .btn {
    width: 100%;
  }
}

/* ==========================================================================
   UPLOAD CARDS — Stack on tablet
   ========================================================================== */
.upload-cards-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--app-gap-lg);
}

@media (max-width: 991.98px) {
  .upload-cards-row {
    grid-template-columns: 1fr;
    gap: var(--app-gap-md);
  }
}

/* ==========================================================================
   FILTER BAR RESPONSIVE
   ========================================================================== */
.app-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: flex-end;
  padding: 1rem;
  background: #fff;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.app-filter-bar .form-group {
  flex: 1 1 180px;
  min-width: 150px;
}

.app-filter-bar .form-group-actions {
  flex: 0 0 auto;
}

@media (max-width: 767.98px) {
  .app-filter-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .app-filter-bar .form-group,
  .app-filter-bar .form-group-actions {
    flex: 1 1 100%;
    width: 100%;
  }
  .app-filter-bar .btn {
    width: 100%;
  }
}

/* ==========================================================================
   SAFE AREA INSETS (notched devices)
   ========================================================================== */
@supports (padding: max(0px)) {
  .app-container {
    padding-left: max(var(--app-container-padding), env(safe-area-inset-left));
    padding-right: max(var(--app-container-padding), env(safe-area-inset-right));
  }
  .app-sticky-actions {
    padding-bottom: max(1rem, env(safe-area-inset-bottom));
  }
}

/* ==========================================================================
   SCROLLBAR STYLING (thin on mobile)
   ========================================================================== */
.app-sidebar-responsive,
.table-responsive {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.15) transparent;
}

.app-sidebar-responsive::-webkit-scrollbar,
.table-responsive::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

.app-sidebar-responsive::-webkit-scrollbar-thumb,
.table-responsive::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 3px;
}

/* ==========================================================================
   ENHANCED CLASS CARDS GRID — Better spacing & responsive
   ========================================================================== */
.app-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 1399.98px) {
  .app-kpi-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 991.98px) {
  .app-kpi-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }
}

@media (max-width: 575.98px) {
  .app-kpi-grid {
    grid-template-columns: 1fr;
    gap: 0.75rem;
  }
}

/* ==========================================================================
   BULK TOOLBAR RESPONSIVE — Stack on mobile
   ========================================================================== */
.cf-bulk-toolbar {
  flex-wrap: wrap;
  gap: 0.75rem;
}

@media (max-width: 767.98px) {
  .cf-bulk-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding: 0.75rem;
  }

  .cf-bulk-count {
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    margin-bottom: 0.25rem;
  }

  .cf-bulk-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    width: 100%;
  }

  .cf-bulk-btn {
    justify-content: center;
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
  }

  .cf-bulk-close {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    margin: 0;
  }
}

@media (max-width: 400px) {
  .cf-bulk-actions {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   IMPROVED PHOTO GRID RESPONSIVE — Consistent gaps
   ========================================================================== */
.cf-photo-grid {
  gap: 1rem;
}

.cf-photo-grid.grid-small {
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
}

.cf-photo-grid.grid-medium {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
}

.cf-photo-grid.grid-large {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

@media (max-width: 767.98px) {
  .cf-photo-grid {
    gap: 0.75rem;
  }

  .cf-photo-grid.grid-small {
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  }

  .cf-photo-grid.grid-medium {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }

  .cf-photo-grid.grid-large {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 400px) {
  .cf-photo-grid.grid-small,
  .cf-photo-grid.grid-medium {
    grid-template-columns: repeat(2, 1fr);
  }

  .cf-photo-grid.grid-large {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   CARD ACTIONS RESPONSIVE — Better touch targets
   ========================================================================== */
.cf-card-actions {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.75rem;
  flex-wrap: wrap;
}

.cf-card-actions .btn {
  flex: 1 1 auto;
  min-width: unset;
}

@media (max-width: 575.98px) {
  .cf-card-actions {
    flex-direction: column;
    gap: 0.35rem;
  }

  .cf-card-actions .btn {
    width: 100%;
    justify-content: center;
    min-height: 36px;
    font-size: 0.8rem;
  }
}

/* ==========================================================================
   GALLERY FILTER BAR RESPONSIVE
   ========================================================================== */
.cf-gallery-filter-bar {
  padding: 1rem;
}

@media (max-width: 991.98px) {
  .cf-gallery-filter-bar {
    padding: 0.75rem;
  }

  .cf-gallery-filter-bar .row {
    gap: 0.5rem;
  }
}

@media (max-width: 767.98px) {
  .cf-gallery-filter-bar .form-select,
  .cf-gallery-filter-bar .form-control {
    font-size: 0.9rem;
  }

  .cf-gallery-stats {
    flex-wrap: wrap;
    gap: 0.35rem;
  }

  .cf-stat-pill {
    font-size: 0.7rem;
    padding: 0.25rem 0.5rem;
  }

  .cf-quick-filters {
    flex-wrap: wrap;
    gap: 0.35rem;
  }

  .cf-quick-chip {
    padding: 0.3rem 0.6rem;
    font-size: 0.75rem;
  }

  .cf-view-toggle {
    display: none;
  }
}

/* ==========================================================================
   SECTION SPACING HELPERS — More air
   ========================================================================== */
.section-spacer {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}

.section-spacer-sm {
  margin-top: 1rem;
  margin-bottom: 1rem;
}

@media (max-width: 767.98px) {
  .section-spacer {
    margin-top: 1rem;
    margin-bottom: 1rem;
  }

  .section-spacer-sm {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }
}

/* ==========================================================================
   IMPROVED CARD PADDING — More air inside cards
   ========================================================================== */
.app-card .card-body {
  padding: 1.25rem;
}

@media (max-width: 991.98px) {
  .app-card .card-body {
    padding: 1rem;
  }
}

@media (max-width: 575.98px) {
  .app-card .card-body {
    padding: 0.875rem;
  }
}

/* ==========================================================================
   ASIDE SIDEBAR MOBILE — Better stacking
   ========================================================================== */
@media (max-width: 991.98px) {
  .app-aside > * + * {
    margin-top: 1rem;
  }

  .x-slot-aside > * + * {
    margin-top: 1rem;
  }
}

/* ==========================================================================
   PRINT PREVIEW PAGE — Better centering & spacing
   ========================================================================== */
.print-container {
  max-width: 210mm;
  margin: 0 auto;
}

.print-content {
  padding: 24px;
}

.print-header {
  padding: 16px 0 20px;
  margin-bottom: 20px;
}

@media screen {
  .print-container {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    margin-bottom: 40px;
  }

  .cards-grid {
    gap: 16px;
  }
}

@media print {
  .cards-grid {
    gap: 12px;
  }

  .photo-card {
    padding: 10px;
  }
}
