/* =========================================================
   PAYLANCE — Open Requests Page (Открытые заявки)
   Geist · white aesthetic · list view
   ========================================================= */

:root {
  --req-text: #1D1D1F;
  --req-muted: #6E6E73;
  --req-hint: #AEAEB2;
  --req-border: #E5E5EA;
  --req-surface: #F5F5F7;
  --req-white: #FFFFFF;
  --req-blue: #0071E3;
  --req-font: 'Geist Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html, body {
  overflow-x: hidden;
  max-width: 100%;
}

body {
  font-family: var(--req-font);
  font-size: 14px;
  line-height: 1.5;
  color: var(--req-text);
  background: var(--req-white);
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }
input, select, textarea { font-family: inherit; }

/* ═══════════════════════════════════════════════════════
   PAGE SHELL
   ═══════════════════════════════════════════════════════ */
.req-page {
  min-height: calc(100vh - 60px);
  background: var(--req-white);
}

/* ═══════════════════════════════════════════════════════
   HERO
   ═══════════════════════════════════════════════════════ */
.req-hero {
  border-bottom: 1px solid var(--req-border);
  background: var(--req-white);
}

.req-hero__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 36px 32px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.req-hero__title {
  font-size: 40px;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: var(--req-text);
  margin: 0 0 10px;
}

.req-hero__sub {
  font-size: 15px;
  color: var(--req-muted);
  margin: 0;
  max-width: 520px;
  line-height: 1.55;
}

/* 3D-style illustration */
.req-hero__illus {
  flex-shrink: 0;
  width: 220px;
  height: 160px;
}

.req-illus {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(135deg, #F5F5F7 0%, #E8E8ED 100%);
  overflow: hidden;
}

.req-illus__block {
  position: absolute;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.req-illus__block--1 {
  width: 72px;
  height: 72px;
  top: 28px;
  left: 24px;
  background: linear-gradient(145deg, #fff 0%, #E5E5EA 100%);
  transform: rotate(-6deg);
}

.req-illus__block--2 {
  width: 56px;
  height: 56px;
  top: 48px;
  left: 96px;
  background: linear-gradient(145deg, #1D1D1F 0%, #3A3A3C 100%);
  transform: rotate(8deg);
}

.req-illus__block--3 {
  width: 48px;
  height: 48px;
  bottom: 28px;
  right: 32px;
  background: linear-gradient(145deg, #EBF3FF 0%, #B8D4F8 100%);
  transform: rotate(-12deg);
}

.req-illus__coin {
  position: absolute;
  top: 22px;
  right: 36px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(145deg, #1D1D1F, #424245);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.req-illus__arrow {
  position: absolute;
  bottom: 36px;
  left: 52px;
  color: var(--req-muted);
  opacity: 0.6;
}

/* ═══════════════════════════════════════════════════════
   TOOLBAR
   ═══════════════════════════════════════════════════════ */
.req-toolbar {
  position: sticky;
  top: 60px;
  z-index: 80;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--req-border);
}

.req-toolbar__inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 16px 32px 14px;
}

.req-toolbar__row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.req-toolbar__row--chips {
  margin-top: 12px;
  justify-content: space-between;
  gap: 16px;
}

.req-search {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 14px;
  height: 42px;
  border: 1px solid var(--req-border);
  border-radius: 12px;
  background: var(--req-white);
  color: var(--req-hint);
  transition: border-color 0.15s;
}

.req-search:focus-within {
  border-color: var(--req-text);
}

.req-search__input {
  flex: 1;
  border: none;
  outline: none;
  background: transparent;
  font-size: 14px;
  color: var(--req-text);
  min-width: 0;
}

.req-search__input::placeholder { color: var(--req-hint); }

.req-filters-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 42px;
  padding: 0 16px;
  border: 1px solid var(--req-border);
  border-radius: 12px;
  background: var(--req-white);
  font-size: 14px;
  font-weight: 500;
  color: var(--req-muted);
  white-space: nowrap;
  transition: border-color 0.15s, color 0.15s;
}

.req-filters-btn:hover { border-color: var(--req-text); color: var(--req-text); }
.req-filters-btn.is-open { border-color: var(--req-text); color: var(--req-text); font-weight: 600; }

.req-post-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 42px;
  padding: 0 18px;
  border-radius: 100px;
  background: var(--req-text);
  color: #fff;
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.15s, transform 0.1s;
}

.req-post-btn:hover { background: #2d2d2f; }
.req-post-btn:active { transform: scale(0.98); }

/* Chips */
.req-chips {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow-x: auto;
  scrollbar-width: none;
  flex: 1;
  min-width: 0;
}

.req-chips::-webkit-scrollbar { display: none; }

.req-chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 7px 14px;
  border-radius: 100px;
  border: 1px solid var(--req-border);
  background: var(--req-white);
  font-size: 13px;
  font-weight: 500;
  color: var(--req-muted);
  white-space: nowrap;
  flex-shrink: 0;
  transition: background 0.15s, color 0.15s, border-color 0.15s;
}

.req-chip:hover { border-color: #D2D2D7; color: var(--req-text); }

.req-chip.is-active {
  background: var(--req-text);
  border-color: var(--req-text);
  color: #fff;
  font-weight: 600;
}

.req-chip--pin svg { flex-shrink: 0; }

.req-sort {
  padding: 8px 30px 8px 12px;
  border: 1px solid var(--req-border);
  border-radius: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--req-muted);
  background: var(--req-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236E6E73' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 10px center;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  flex-shrink: 0;
}

.req-sort:focus { outline: none; border-color: var(--req-text); }

/* Filters panel */
.req-filters-panel {
  margin-top: 12px;
  padding: 14px;
  border: 1px solid var(--req-border);
  border-radius: 12px;
  background: var(--req-surface);
}

.req-filters-panel__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.req-filters-panel__sel {
  padding: 9px 30px 9px 12px;
  border: 1px solid var(--req-border);
  border-radius: 10px;
  font-size: 13px;
  color: var(--req-text);
  background: var(--req-white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236E6E73' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 10px center;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.req-filters-panel__urgent {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--req-muted);
  cursor: pointer;
  padding: 9px 12px;
  border: 1px solid var(--req-border);
  border-radius: 10px;
  background: var(--req-white);
}

.req-filters-panel__urgent input { display: none; }

.req-filters-panel__urgent-box {
  width: 18px;
  height: 18px;
  border: 2px solid #D2D2D7;
  border-radius: 5px;
  flex-shrink: 0;
  transition: all 0.15s;
}

.req-filters-panel__urgent input:checked + .req-filters-panel__urgent-box {
  background: var(--req-blue);
  border-color: var(--req-blue);
}

.req-filters-panel__urgent input:checked + .req-filters-panel__urgent-box::after {
  content: '';
  display: block;
  width: 10px;
  height: 6px;
  margin: 3px auto;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
}

/* ═══════════════════════════════════════════════════════
   LIST
   ═══════════════════════════════════════════════════════ */
.req-list-section {
  padding: 8px 32px 64px;
}

.req-list-section__inner {
  max-width: 1120px;
  margin: 0 auto;
}

.req-list__count {
  font-size: 13px;
  font-weight: 600;
  color: var(--req-muted);
  margin: 0 0 12px;
}

.req-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* ── Row card ── */
.req-row {
  display: grid;
  grid-template-columns: 80px 1fr auto auto;
  align-items: center;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--req-border);
  transition: background 0.15s;
}

.req-row:hover { background: #FAFAFA; }

.req-row__img {
  width: 80px;
  height: 80px;
  border-radius: 14px;
  background: var(--req-surface);
  flex-shrink: 0;
  overflow: hidden;
  position: relative;
}

.req-row__img--fallback {
  background: #F5F5F7;
}

.req-row__thumb {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
}

.req-row__main {
  min-width: 0;
}

.req-row__title {
  font-size: 15px;
  font-weight: 600;
  color: var(--req-text);
  margin: 0 0 8px;
  line-height: 1.35;
  letter-spacing: -0.01em;
}

.req-row__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 6px;
}

.req-row__meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  color: var(--req-muted);
}

.req-row__meta-item svg { flex-shrink: 0; color: var(--req-hint); }

.req-row__cat {
  font-size: 12px;
  color: var(--req-hint);
  font-weight: 500;
}

.req-row__budget {
  text-align: right;
  min-width: 140px;
  padding: 0 8px;
}

.req-row__budget-lbl {
  font-size: 11px;
  color: var(--req-hint);
  margin-bottom: 4px;
  white-space: nowrap;
}

.req-row__budget-val {
  font-size: 22px;
  font-weight: 700;
  color: var(--req-text);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.req-row__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.req-row__offers {
  font-size: 13px;
  font-weight: 600;
  color: var(--req-blue);
  white-space: nowrap;
}

.req-row__btn {
  padding: 9px 18px;
  border-radius: 100px;
  background: var(--req-text);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.15s, transform 0.1s;
}

.req-row__btn:hover { background: #2d2d2f; }
.req-row__btn:active { transform: scale(0.97); }

.req-row__save {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--req-border);
  background: var(--req-white);
  color: var(--req-muted);
  transition: background 0.15s, border-color 0.15s;
}

.req-row__save:hover { background: var(--req-surface); border-color: #D2D2D7; }
.req-row__save.is-on { border-color: #FECDD3; background: #FFF1F2; }

/* Empty & load more */
.req-empty {
  text-align: center;
  padding: 64px 24px;
}

.req-empty__text {
  font-size: 15px;
  color: var(--req-muted);
  margin: 0;
}

.req-empty__link {
  font-weight: 700;
  color: var(--req-blue);
  background: none;
  border: none;
  cursor: pointer;
  font-size: inherit;
  font-family: inherit;
}

.req-load-more {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 24px;
  padding: 14px 24px;
  border: 1px solid var(--req-border);
  border-radius: 12px;
  background: var(--req-surface);
  font-size: 14px;
  font-weight: 500;
  color: var(--req-muted);
  transition: background 0.15s, color 0.15s;
}

.req-load-more:hover {
  background: #EBEBED;
  color: var(--req-text);
}

/* ═══════════════════════════════════════════════════════
   MODALS
   ═══════════════════════════════════════════════════════ */
.br-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.2s;
}

.br-overlay.is-open { opacity: 1; }

.br-modal {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 520px;
  max-height: 88vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.18);
  transform: translateY(12px) scale(0.98);
  transition: transform 0.22s cubic-bezier(0.34, 1.3, 0.64, 1);
}

.br-overlay.is-open .br-modal { transform: translateY(0) scale(1); }
.br-modal--sm { max-width: 400px; }

.br-modal__hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px 16px;
  border-bottom: 1px solid #F5F5F7;
  flex-shrink: 0;
}

.br-modal__title {
  font-size: 17px;
  font-weight: 700;
  color: var(--req-text);
  letter-spacing: -0.01em;
}

.br-modal__close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #F5F5F7;
  color: #424245;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
  flex-shrink: 0;
}

.br-modal__close:hover { background: #E5E5EA; }

.br-modal__bd {
  flex: 1;
  overflow-y: auto;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  -webkit-overflow-scrolling: touch;
}

.br-modal__ft {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding: 16px 24px;
  border-top: 1px solid #F5F5F7;
  flex-shrink: 0;
}

.br-modal__ref {
  background: #F5F5F7;
  border-radius: 12px;
  padding: 12px 16px;
}

.br-modal__ref-cat {
  font-size: 11.5px;
  font-weight: 600;
  color: var(--req-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}

.br-modal__ref-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--req-text);
  line-height: 1.35;
}

.br-modal__sell-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #F5F5F7;
  color: var(--req-text);
  margin: 0 auto 16px;
}

.br-modal__sell-summary {
  background: #F5F5F7;
  border-radius: 12px;
  padding: 14px 16px;
  margin-bottom: 16px;
}

.br-field { display: flex; flex-direction: column; gap: 6px; }
.br-field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.br-field--center { justify-content: center; }

.br-lbl { font-size: 13px; font-weight: 600; color: #424245; }
.br-lbl__req { color: var(--req-blue); }

.br-inp {
  padding: 10px 14px;
  border: 1.5px solid var(--req-border);
  border-radius: 10px;
  font-size: 14px;
  color: var(--req-text);
  background: #fff;
  outline: none;
  transition: border-color 0.15s;
}

.br-inp:focus { border-color: var(--req-blue); }
.br-inp::placeholder { color: var(--req-hint); }
.br-inp--lg { font-size: 18px; font-weight: 600; padding: 12px 14px; }

.br-inp__hint { font-size: 11.5px; color: var(--req-hint); text-align: right; }

.br-sel {
  padding: 10px 32px 10px 14px;
  border: 1.5px solid var(--req-border);
  border-radius: 10px;
  font-size: 14px;
  color: var(--req-text);
  background: #fff url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2386868B' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E") no-repeat right 10px center;
  appearance: none;
  -webkit-appearance: none;
  outline: none;
  transition: border-color 0.15s;
  cursor: pointer;
}

.br-sel:focus { border-color: var(--req-blue); }

.br-txta {
  padding: 10px 14px;
  border: 1.5px solid var(--req-border);
  border-radius: 10px;
  font-size: 14px;
  color: var(--req-text);
  background: #fff;
  outline: none;
  resize: vertical;
  min-height: 80px;
  transition: border-color 0.15s;
}

.br-txta:focus { border-color: var(--req-blue); }
.br-txta::placeholder { color: var(--req-hint); }

.br-toggle {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 10px 0;
}

.br-toggle input { display: none; }

.br-toggle__track {
  width: 36px;
  height: 20px;
  border-radius: 100px;
  background: #E5E5EA;
  position: relative;
  flex-shrink: 0;
  transition: background 0.2s;
}

.br-toggle__track::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

.br-toggle input:checked + .br-toggle__track { background: var(--req-blue); }
.br-toggle input:checked + .br-toggle__track::after { transform: translateX(16px); }
.br-toggle__lbl { font-size: 13.5px; font-weight: 500; color: #424245; }

.br-totals {
  background: #F5F5F7;
  border-radius: 12px;
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.br-totals__row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: #424245;
}

.br-totals__row--sum {
  font-weight: 700;
  color: var(--req-text);
  padding-top: 8px;
  border-top: 1px solid var(--req-border);
  font-size: 15px;
}

.br-sell-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.br-sell-step {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--req-hint);
  padding: 8px 12px;
  border-radius: 10px;
}

.br-sell-step svg { flex-shrink: 0; }
.br-sell-step--done { color: #34C759; background: #F0FDF4; }
.br-sell-step--active { color: var(--req-text); background: #F5F5F7; font-weight: 600; }

.br-sell__row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  color: #424245;
  margin-bottom: 6px;
}

.br-sell__row strong { color: var(--req-text); font-weight: 700; }

.br-escrow-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 12px 14px;
  background: #EFF6FF;
  border-radius: 10px;
  font-size: 12.5px;
  color: #1D4ED8;
  line-height: 1.5;
}

.br-escrow-note svg { flex-shrink: 0; margin-top: 1px; }

.br-modal__err {
  padding: 10px 14px;
  background: #FFF1F2;
  border-radius: 10px;
  font-size: 13px;
  color: #E11D48;
  font-weight: 500;
}

.br-modal__btn-sec {
  padding: 10px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: #424245;
  background: #F5F5F7;
  border: none;
  cursor: pointer;
  transition: background 0.15s;
}

.br-modal__btn-sec:hover { background: #E5E5EA; }

.br-modal__btn-pri {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  background: var(--req-blue);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.15s;
}

.br-modal__btn-pri:hover { background: #0077ED; }

body.modal-open { overflow: hidden; }

/* ═══════════════════════════════════════════════════════
   TOAST
   ═══════════════════════════════════════════════════════ */
.br-toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--req-text);
  color: #fff;
  padding: 12px 22px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s, transform 0.25s;
  z-index: 2000;
  white-space: nowrap;
  max-width: calc(100% - 48px);
  text-align: center;
}

.br-toast--visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.br-toast--error { background: #E11D48; }

/* ═══════════════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .req-hero__inner {
    flex-direction: column;
    align-items: flex-start;
    padding: 28px 24px 24px;
  }

  .req-hero__illus {
    width: 100%;
    max-width: 280px;
    height: 140px;
  }

  .req-hero__title { font-size: 32px; }

  .req-toolbar__inner,
  .req-list-section { padding-left: 24px; padding-right: 24px; }

  .req-toolbar__row { flex-wrap: wrap; }
  .req-post-btn { display: none; }

  .req-filters-panel__grid {
    grid-template-columns: 1fr 1fr;
  }

  .req-row {
    grid-template-columns: 64px 1fr;
    grid-template-rows: auto auto;
    gap: 12px 14px;
  }

  .req-row__img { width: 64px; height: 64px; border-radius: 12px; }

  .req-row__budget {
    grid-column: 1 / -1;
    text-align: left;
    display: flex;
    align-items: baseline;
    gap: 10px;
    padding: 0;
  }

  .req-row__budget-lbl { margin: 0; }

  .req-row__actions {
    grid-column: 1 / -1;
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 600px) {
  .req-hero__title { font-size: 28px; }

  .req-toolbar__inner { padding: 12px 16px; }
  .req-list-section { padding: 8px 16px 48px; }

  .req-toolbar__row--chips {
    flex-direction: column;
    align-items: stretch;
  }

  .req-sort { width: 100%; }

  .req-filters-panel__grid { grid-template-columns: 1fr; }

  .br-field-row { grid-template-columns: 1fr; }
  .br-overlay { padding: 12px; }
}
