/* Vistorio Procurement & Requisition page */

/* ─── Hero ─── */
.pr-hero-title {
  margin: 0 0 1.25rem;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

.pr-hero-title span {
  display: block;
  font-weight: 800;
  color: var(--ink);
}

.pr-hero-title span:nth-child(1) {
  font-size: clamp(2rem, 4.5vw, 3.25rem);
}

.pr-hero-title span:nth-child(2) {
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  color: var(--red);
  font-weight: 700;
  margin-top: 0.35rem;
}

.pr-hero-tagline {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
  margin: 0 0 1.25rem;
  max-width: 28rem;
  line-height: 1.5;
}

.pr-hero-tagline em {
  font-style: normal;
  color: var(--ink);
  font-weight: 700;
}

/* Hero workflow visual */
.pr-hero-scene {
  position: relative;
  min-height: 400px;
}

.pr-hero-dash {
  background: var(--ink);
  border-radius: 20px;
  padding: 1.25rem;
  box-shadow: var(--shadow-lg);
  max-width: 520px;
  margin: 0 auto;
}

.pr-hero-dash__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pr-hero-dash__head strong {
  font-size: 0.8rem;
  color: #fff;
}

.pr-hero-dash__live {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--success);
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.pr-hero-dash__live::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--success);
  animation: hp-pulse 1.5s ease infinite;
}

.pr-hero-dash__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.pr-hero-dash__kpi {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
  padding: 0.6rem;
}

.pr-hero-dash__kpi label {
  display: block;
  font-size: 0.5rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 0.2rem;
}

.pr-hero-dash__kpi b {
  font-size: 0.85rem;
  font-weight: 800;
  color: #fff;
}

.pr-hero-dash__kpi b.warn { color: var(--warn); }
.pr-hero-dash__kpi b.alert { color: var(--danger); }

.pr-hero-flow {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  justify-content: center;
  align-items: center;
  font-size: 0.55rem;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
}

.pr-hero-flow span {
  padding: 0.3rem 0.55rem;
  background: rgba(177,18,38,0.2);
  border: 1px solid rgba(177,18,38,0.35);
  border-radius: 999px;
  animation: pr-flow-pulse 3s ease-in-out infinite;
}

.pr-hero-flow span:nth-child(2) { animation-delay: -0.5s; }
.pr-hero-flow span:nth-child(4) { animation-delay: -1s; }
.pr-hero-flow span:nth-child(6) { animation-delay: -1.5s; }

@keyframes pr-flow-pulse {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.04); }
}

.pr-float {
  position: absolute;
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.9);
  border-radius: 14px;
  padding: 0.7rem 0.9rem;
  box-shadow: 0 12px 40px rgba(15,20,25,0.12);
  min-width: 130px;
  animation: hp-float-card 6s ease-in-out infinite;
}

.pr-float label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-bottom: 0.15rem;
}

.pr-float strong {
  font-size: 1rem;
  font-weight: 800;
  color: var(--ink);
}

.pr-float--1 { top: 0; left: 0; animation-delay: 0s; }
.pr-float--2 { top: 12%; right: -2%; animation-delay: -1.5s; }
.pr-float--3 { bottom: 28%; left: -4%; animation-delay: -3s; }
.pr-float--4 { bottom: 8%; right: 0; animation-delay: -2s; }

@media (max-width: 1023px) {
  .pr-float { display: none; }
}

/* ─── Problem cards ─── */
.pr-problems {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
}

.pr-problem {
  padding: 1.25rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), border-color 0.25s;
}

.pr-problem:hover {
  transform: translateY(-3px);
  border-color: rgba(177,18,38,0.2);
}

.pr-problem__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 10px;
  background: rgba(177,18,38,0.08);
  display: grid;
  place-items: center;
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
}

.pr-problem h3 {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ink);
}

.pr-resolve {
  margin-top: 2.5rem;
  padding: 1.75rem 2rem;
  background: var(--page-muted);
  border: 1px solid rgba(177,18,38,0.15);
  border-radius: 18px;
  text-align: center;
}

.pr-resolve p {
  margin: 0;
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}

/* ─── Digital workflow ─── */
.pr-workflow-wrap {
  overflow-x: auto;
  padding-bottom: 1rem;
  -webkit-overflow-scrolling: touch;
}

.pr-workflow {
  display: flex;
  gap: 0;
  min-width: max-content;
  padding: 1rem 0;
}

.pr-wf-step {
  flex: 0 0 140px;
  text-align: center;
  position: relative;
  padding: 0 0.5rem;
}

.pr-wf-step:not(:last-child)::after {
  content: '→';
  position: absolute;
  right: -0.35rem;
  top: 1.75rem;
  font-size: 0.85rem;
  font-weight: 800;
  color: var(--red);
  z-index: 1;
}

.pr-wf-step__icon {
  width: 3.25rem;
  height: 3.25rem;
  margin: 0 auto 0.65rem;
  border-radius: 14px;
  background: var(--surface);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), border-color 0.25s;
}

.pr-wf-step:hover .pr-wf-step__icon {
  transform: scale(1.08);
  border-color: rgba(177,18,38,0.3);
}

.pr-wf-step strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 0.25rem;
  line-height: 1.3;
}

.pr-wf-step span {
  font-size: 0.65rem;
  color: var(--muted);
  line-height: 1.4;
  display: block;
}

.pr-wf-step--optional strong::after {
  content: ' (optional)';
  font-weight: 600;
  color: var(--muted);
  font-size: 0.6rem;
}

/* ─── Procurement mega dashboard ─── */
.pr-mega {
  background: var(--ink);
  border-radius: 24px;
  padding: clamp(1.25rem, 3vw, 2rem);
  box-shadow: var(--shadow-lg);
}

.pr-mega__head {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.pr-mega__head h3 {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
}

.pr-mega__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.6rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 900px) {
  .pr-mega__grid { grid-template-columns: repeat(2, 1fr); }
}

.pr-mega__kpi {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 0.85rem;
}

.pr-mega__kpi label {
  display: block;
  font-size: 0.58rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.42);
  margin-bottom: 0.3rem;
}

.pr-mega__kpi strong {
  font-size: 1.1rem;
  font-weight: 800;
  color: #fff;
}

.pr-mega__kpi.warn strong { color: var(--warn); }
.pr-mega__kpi.pos strong { color: var(--success); }

.pr-mega__chart {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 1rem;
}

.pr-mega__chart h4 {
  margin: 0 0 0.75rem;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.5);
}

.pr-trend-bars {
  display: flex;
  align-items: flex-end;
  gap: 0.35rem;
  height: 80px;
}

.pr-trend-bar {
  flex: 1;
  background: var(--red);
  border-radius: 4px 4px 0 0;
  animation: hp-bar-grow 1s var(--ease) backwards;
}

.pr-trend-bar:nth-child(1) { height: 40%; animation-delay: 0.05s; }
.pr-trend-bar:nth-child(2) { height: 55%; animation-delay: 0.1s; }
.pr-trend-bar:nth-child(3) { height: 48%; animation-delay: 0.15s; }
.pr-trend-bar:nth-child(4) { height: 72%; animation-delay: 0.2s; }
.pr-trend-bar:nth-child(5) { height: 65%; animation-delay: 0.25s; }
.pr-trend-bar:nth-child(6) { height: 88%; animation-delay: 0.3s; }

/* ─── Requisition table ─── */
.pr-req-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.pr-req-panel__head {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid var(--line);
  background: var(--page);
}

.pr-dept-tab {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.4rem 0.75rem;
  border-radius: 999px;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--muted);
  cursor: default;
}

.pr-dept-tab.active {
  background: var(--ink);
  border-color: var(--ink);
  color: #fff;
}

.pr-req-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.78rem;
}

.pr-req-table th,
.pr-req-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

.pr-req-table th {
  font-size: 0.62rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--muted);
  background: var(--page);
}

.pr-req-table tr:last-child td { border-bottom: none; }

.pr-priority {
  font-size: 0.62rem;
  font-weight: 700;
  padding: 0.2rem 0.45rem;
  border-radius: 5px;
}

.pr-priority--high { background: rgba(177,18,38,0.1); color: var(--red); }
.pr-priority--med { background: rgba(180,83,9,0.1); color: #b45309; }
.pr-priority--low { background: rgba(15,20,25,0.06); color: var(--muted); }

.pr-progress {
  display: flex;
  gap: 3px;
  align-items: center;
}

.pr-progress i {
  width: 18px;
  height: 4px;
  border-radius: 999px;
  background: var(--line);
  display: block;
}

.pr-progress i.done { background: var(--success); }
.pr-progress i.current { background: var(--red); }

/* ─── Approval timeline ─── */
.pr-approval {
  display: grid;
  gap: 2rem;
}

@media (min-width: 900px) {
  .pr-approval { grid-template-columns: 1fr 1fr; align-items: start; }
}

.pr-approval-levels {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.pr-approval-level {
  display: flex;
  gap: 1rem;
  padding-bottom: 1.25rem;
  position: relative;
}

.pr-approval-level:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 1.1rem;
  top: 2.5rem;
  bottom: 0;
  width: 2px;
  background: var(--line);
}

.pr-approval-level__dot {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--surface);
  border: 2px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 0.75rem;
  font-weight: 800;
  flex-shrink: 0;
  z-index: 1;
}

.pr-approval-level.done .pr-approval-level__dot {
  background: var(--success);
  border-color: var(--success);
  color: #fff;
}

.pr-approval-level.current .pr-approval-level__dot {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.pr-approval-level strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 0.2rem;
}

.pr-approval-level p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

.pr-approval-level time {
  display: block;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--muted);
  margin-top: 0.35rem;
}

.pr-history {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.25rem;
}

.pr-history h4 {
  margin: 0 0 1rem;
  font-size: 0.8rem;
  font-weight: 700;
}

.pr-history-item {
  display: flex;
  gap: 0.75rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.78rem;
}

.pr-history-item:last-child { border-bottom: none; }

.pr-history-item span:first-child {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--success);
  flex-shrink: 0;
  margin-top: 0.35rem;
}

.pr-history-item.pending span:first-child { background: #b45309; }

/* ─── PO dashboard ─── */
.pr-po-panel {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
}

.pr-po-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  margin-bottom: 1.25rem;
}

@media (max-width: 600px) {
  .pr-po-stats { grid-template-columns: 1fr; }
}

.pr-po-stat {
  background: var(--page);
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem;
  text-align: center;
}

.pr-po-stat label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.25rem;
}

.pr-po-stat strong {
  font-size: 1.25rem;
  font-weight: 800;
}

/* ─── Supplier cards ─── */
.pr-suppliers {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr));
}

.pr-supplier {
  padding: 1.35rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  transition: transform 0.25s var(--ease), border-color 0.25s;
}

.pr-supplier:hover {
  transform: translateY(-3px);
  border-color: rgba(177,18,38,0.2);
}

.pr-supplier__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.pr-supplier__head h3 {
  margin: 0;
  font-size: 1rem;
  font-weight: 800;
}

.pr-rating {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  background: rgba(13,122,78,0.1);
  color: var(--success);
}

.pr-rating--mid { background: rgba(180,83,9,0.1); color: #b45309; }

.pr-supplier__meta {
  display: grid;
  gap: 0.35rem;
  font-size: 0.78rem;
  color: var(--muted);
}

.pr-supplier__meta b { color: var(--ink); font-weight: 700; }

/* ─── Receiving flow ─── */
.pr-receive-flow {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 360px;
  margin: 0 auto;
}

.pr-receive-step {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 0.75rem 0;
  position: relative;
}

.pr-receive-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 1.1rem;
  top: 2.75rem;
  height: calc(100% - 0.5rem);
  width: 2px;
  background: var(--line);
}

.pr-receive-step__icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 10px;
  background: var(--red-soft);
  color: var(--red);
  display: grid;
  place-items: center;
  font-size: 0.9rem;
  font-weight: 800;
  flex-shrink: 0;
  z-index: 1;
}

.pr-receive-step strong {
  font-size: 0.85rem;
  font-weight: 700;
}

.pr-receive-ui {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.25rem;
  box-shadow: var(--shadow-md);
}

.pr-receive-ui__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.82rem;
}

.pr-receive-ui__row:last-child { border-bottom: none; }

.pr-badge {
  display: inline-block;
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 6px;
}

.pr-badge--ok { background: rgba(13,122,78,0.1); color: var(--success); }
.pr-badge--wait { background: rgba(180,83,9,0.1); color: #b45309; }

.pr-receive-ui__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--line);
}

.pr-receive-ui__head strong { font-size: 0.85rem; font-weight: 700; }

.pr-receive-ui__head span {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--success);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ─── Store integration ─── */
.pr-store-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(10rem, 1fr));
}

.pr-store-kpi {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem;
  text-align: center;
}

.pr-store-kpi label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.pr-store-kpi strong {
  font-size: 1.15rem;
  font-weight: 800;
}

.pr-store-kpi strong.warn { color: var(--red); }

/* ─── Insights (reuse structure) ─── */
.pr-insights {
  display: grid;
  gap: 0.85rem;
  grid-template-columns: repeat(auto-fill, minmax(18rem, 1fr));
}

.pr-insight {
  display: flex;
  gap: 0.85rem;
  padding: 1.15rem 1.25rem;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(16px);
  border: 1px solid var(--line);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.pr-insight__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 0.35rem;
}

.pr-insight__dot--up { background: var(--success); }
.pr-insight__dot--warn { background: #b45309; }
.pr-insight__dot--info { background: var(--red); }

.pr-insight p {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
}

/* ─── Mobile procurement ─── */
.pr-mobile-layout {
  display: grid;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 900px) {
  .pr-mobile-layout { grid-template-columns: 1fr 1fr; }
}

.pr-mobile-phones {
  display: flex;
  gap: 1.25rem;
  justify-content: center;
}

.pr-mobile-phone {
  width: 190px;
  background: var(--ink);
  border-radius: 26px;
  padding: 0.6rem;
  box-shadow: 0 24px 48px rgba(15,20,25,0.2);
}

.pr-mobile-phone--2 {
  width: 210px;
  transform: translateY(-16px);
}

.pr-mobile-screen {
  background: #f8f9fb;
  border-radius: 20px;
  min-height: 340px;
  overflow: hidden;
}

.pr-mobile-header {
  padding: 0.65rem 0.85rem;
  background: var(--ink);
  color: #fff;
}

.pr-mobile-header strong {
  display: block;
  font-size: 0.72rem;
}

.pr-mobile-header span {
  font-size: 0.55rem;
  color: rgba(255,255,255,0.55);
}

.pr-mobile-body { padding: 0.75rem; }

.pr-mobile-row {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 0.55rem 0.65rem;
  margin-bottom: 0.45rem;
  font-size: 0.68rem;
  font-weight: 600;
}

.pr-mobile-actions {
  display: flex;
  gap: 0.4rem;
  margin-top: 0.75rem;
}

.pr-mobile-actions span {
  flex: 1;
  text-align: center;
  padding: 0.45rem;
  border-radius: 8px;
  font-size: 0.65rem;
  font-weight: 700;
}

.pr-mobile-actions .approve {
  background: var(--success);
  color: #fff;
}

.pr-mobile-actions .reject {
  background: var(--page);
  border: 1px solid var(--line);
}

/* ─── Benefits ─── */
.pr-benefits {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fill, minmax(14rem, 1fr));
}

.pr-benefit {
  padding: 1.5rem;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.25s var(--ease);
}

.pr-benefit:hover { transform: translateY(-4px); }

.pr-benefit__icon {
  font-size: 1.5rem;
  margin-bottom: 0.65rem;
}

.pr-benefit h3 {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
}

.pr-benefit p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

/* ─── Final CTA ─── */
.pr-final {
  background: var(--ink);
  color: #fff;
  padding: clamp(4rem, 8vw, 6rem) 0;
  text-align: center;
}

.pr-final .hp-h2 { color: #fff; }
.pr-final .hp-lede { color: rgba(255,255,255,0.7); }

.pr-final .mk-btn-xl--outline {
  border-color: rgba(255,255,255,0.35);
  color: #fff;
}

.pr-band {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.pr-band--warm {
  background: var(--page-muted);
}

.pr-split {
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 900px) {
  .pr-split { grid-template-columns: 1fr 1fr; }
  .pr-split--flip > div:first-child { order: 2; }
  .pr-split--flip > div:last-child { order: 1; }
}
