:root {
  color-scheme: light;
  --ink: #102635;
  --deep: #071c28;
  --navy: #0b2433;
  --paper: #fffdf7;
  --limestone: #f4eee3;
  --porcelain: #fbfaf4;
  --line: #d7ddd8;
  --muted: #66747c;
  --brass: #b78a45;
  --builders: #a97942;
  --exteriors: #2e6f95;
  --commercial: #496e7b;
  --development: #657a57;
  --care: #a85f49;
  --error: #8c3d37;
  --shadow: 0 28px 90px rgba(7, 28, 40, .13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background:
    linear-gradient(rgba(11, 36, 51, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 36, 51, .025) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
  color: var(--ink);
  font-family: "Avenir Next", "Helvetica Neue", Arial, sans-serif;
}

button,
select,
input {
  font: inherit;
}

button,
select {
  color: inherit;
}

button {
  cursor: pointer;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -.025em;
}

.page-shell {
  min-height: 100vh;
}

.review-header {
  position: sticky;
  top: 0;
  z-index: 30;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 78px;
  padding: 14px max(24px, calc((100vw - 1440px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, .14);
  background: rgba(7, 28, 40, .96);
  color: var(--paper);
  backdrop-filter: blur(18px);
}

.brand-signature {
  display: grid;
  gap: 2px;
  color: inherit;
  text-decoration: none;
}

.brand-kicker,
.section-label,
.eyebrow,
.option-code {
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.brand-kicker {
  color: #d4b879;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
}

.review-identity {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #c9d5da;
  font-size: 13px;
}

.blind-badge {
  padding: 7px 10px;
  border: 1px solid rgba(212, 184, 121, .4);
  border-radius: 999px;
  color: #ead7aa;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

main,
.summary-view {
  width: min(1440px, calc(100% - 40px));
  margin: 0 auto;
}

.intro {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(340px, .75fr);
  gap: 60px;
  align-items: end;
  min-height: 560px;
  padding: 86px 0 72px;
}

.eyebrow {
  margin-bottom: 20px;
  color: var(--brass);
}

.intro h1 {
  max-width: 950px;
  margin-bottom: 28px;
  font-size: clamp(54px, 7vw, 108px);
  line-height: .92;
}

.intro h1 em {
  color: var(--exteriors);
  font-weight: inherit;
}

.intro-lead {
  max-width: 780px;
  margin-bottom: 32px;
  color: var(--muted);
  font-size: clamp(17px, 1.7vw, 21px);
  line-height: 1.65;
}

.intro-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.primary-action,
.text-action,
.flip-navigation button,
.summary-header button,
.selection-heading button,
.empty-selection button {
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid var(--navy);
  border-radius: 5px;
  background: transparent;
  font-weight: 800;
}

.primary-action {
  border-color: var(--navy);
  background: var(--navy);
  color: white;
}

.primary-action:hover {
  background: #12364a;
}

.text-action {
  border-color: var(--line);
  background: rgba(255, 255, 255, .72);
}

.judging-standard {
  padding: 30px;
  border: 1px solid rgba(183, 138, 69, .5);
  background: rgba(255, 255, 255, .78);
  box-shadow: 18px 18px 0 var(--limestone);
}

.section-label {
  display: block;
  margin-bottom: 16px;
  color: var(--brass);
}

.judging-standard ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: standard;
}

.judging-standard li {
  position: relative;
  display: grid;
  grid-template-columns: 116px 1fr;
  gap: 14px;
  padding: 17px 0 17px 36px;
  border-top: 1px solid var(--line);
  counter-increment: standard;
}

.judging-standard li::before {
  position: absolute;
  left: 0;
  color: var(--brass);
  content: counter(standard, decimal-leading-zero);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
}

.judging-standard li span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
}

.system-strip {
  display: grid;
  grid-template-columns: 1.25fr repeat(5, 1fr);
  border: 1px solid var(--line);
  background: white;
  box-shadow: var(--shadow);
}

.system-intro,
.vertical-chip {
  min-height: 130px;
  padding: 22px;
  border-right: 1px solid var(--line);
}

.system-intro {
  background: var(--navy);
  color: white;
}

.system-intro p {
  margin: 0;
  color: #c8d5da;
  font-size: 14px;
  line-height: 1.5;
}

.vertical-chip {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 7px;
}

.vertical-chip:last-child {
  border-right: 0;
}

.vertical-chip::before {
  position: absolute;
  inset: 0 0 auto;
  height: 8px;
  background: var(--builders);
  content: "";
}

.vertical-chip.exteriors::before { background: var(--exteriors); }
.vertical-chip.commercial::before { background: var(--commercial); }
.vertical-chip.development::before { background: var(--development); }
.vertical-chip.care::before { background: var(--care); }

.vertical-chip b {
  font-size: 14px;
  text-transform: uppercase;
}

.vertical-chip span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.4;
}

.review-workspace {
  padding: 76px 0 84px;
}

.workspace-toolbar {
  display: grid;
  grid-template-columns: 240px minmax(180px, 1fr) auto;
  gap: 24px;
  align-items: end;
  margin-bottom: 18px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, .92);
}

.progress-copy {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 750;
}

.progress-track {
  overflow: hidden;
  height: 7px;
  margin-bottom: 7px;
  border-radius: 999px;
  background: var(--line);
}

.progress-track span {
  display: block;
  width: 0;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brass), var(--exteriors));
  transition: width .25s ease;
}

.toolbar-actions {
  display: flex;
  align-items: end;
  gap: 10px;
}

.toolbar-actions label {
  display: grid;
  gap: 5px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.toolbar-actions select {
  width: 194px;
  min-height: 40px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
}

.toolbar-actions .check-filter {
  display: flex;
  align-items: center;
  min-height: 40px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--paper);
  text-transform: none;
}

.flip-card {
  display: grid;
  grid-template-columns: minmax(230px, .7fr) minmax(420px, 1.75fr) minmax(250px, .8fr);
  min-height: 660px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: white;
  box-shadow: var(--shadow);
}

.card-context,
.vote-panel {
  padding: clamp(28px, 3.4vw, 48px);
}

.card-context {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  background: var(--porcelain);
}

.status-badge {
  display: inline-block;
  margin-bottom: 32px;
  padding: 7px 10px;
  border-radius: 999px;
  background: var(--limestone);
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.status-badge[data-status="candidate"],
.status-badge[data-status="finalist"] {
  background: #e2eee8;
  color: #315b49;
}

.status-badge[data-status="rejected"] {
  background: #f2dfdc;
  color: var(--error);
}

.option-code {
  margin-bottom: 12px;
  color: var(--brass);
}

.card-context h2 {
  margin-bottom: 12px;
  font-size: clamp(34px, 4vw, 59px);
  line-height: .98;
}

.option-subtitle {
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
}

.context-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 30px;
}

.context-tags span {
  padding: 6px 8px;
  border: 1px solid var(--line);
  border-radius: 3px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.option-note {
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.logo-stage {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
  place-items: center;
  min-width: 0;
  margin: 0;
  padding: 36px;
  background:
    radial-gradient(circle at 50% 48%, rgba(255, 255, 255, .96), rgba(244, 238, 227, .7)),
    var(--limestone);
}

.logo-stage img {
  width: min(100%, 720px);
  max-height: 520px;
  object-fit: contain;
  opacity: 1;
  transform: translateY(0);
  transition: opacity .18s ease, transform .18s ease;
}

.logo-stage img.is-changing {
  opacity: 0;
  transform: translateY(5px);
}

.logo-stage figcaption {
  color: var(--muted);
  font-size: 10px;
  line-height: 1.4;
  text-align: center;
}

.vote-panel {
  border-left: 1px solid var(--line);
}

.favorite-button {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: center;
  width: 100%;
  min-height: 82px;
  margin-bottom: 30px;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  text-align: left;
}

.favorite-button[aria-pressed="true"] {
  border-color: var(--commercial);
  background: #eaf3ef;
  box-shadow: inset 0 0 0 2px rgba(40, 124, 121, .12);
}

.favorite-symbol {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: transparent;
  font-size: 20px;
}

.favorite-button[aria-pressed="true"] .favorite-symbol {
  border-color: var(--commercial);
  background: var(--commercial);
  color: white;
}

.favorite-button b,
.favorite-button small {
  display: block;
}

.favorite-button b {
  margin-bottom: 4px;
  font-size: 16px;
}

.favorite-button small {
  color: var(--muted);
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  margin-bottom: 12px;
  font-size: 12px;
  font-weight: 850;
}

legend span {
  color: var(--muted);
  font-weight: 500;
}

.reaction-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.reaction-grid label {
  cursor: pointer;
}

.reaction-grid input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.reaction-grid span {
  display: block;
  padding: 10px 8px;
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  text-align: center;
}

.reaction-grid input:checked + span {
  border-color: var(--brass);
  background: #f5ead3;
  color: var(--ink);
}

.keyboard-note {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 32px;
  color: var(--muted);
  font-size: 10px;
}

kbd {
  display: inline-grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  margin-right: 3px;
  border: 1px solid var(--line);
  border-bottom-width: 2px;
  border-radius: 4px;
  background: white;
  color: var(--ink);
  font-family: inherit;
  font-weight: 800;
}

.flip-navigation {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 12px;
  margin-top: 16px;
}

.flip-navigation button {
  background: white;
}

.flip-navigation button:last-child {
  justify-self: stretch;
}

.flip-navigation .summary-action {
  border-color: var(--navy);
  background: var(--navy);
  color: white;
}

.summary-action span {
  display: inline-grid;
  place-items: center;
  min-width: 24px;
  height: 24px;
  margin-left: 8px;
  border-radius: 50%;
  background: var(--brass);
  color: var(--deep);
  font-size: 11px;
}

.brand-guidance {
  padding: 72px 0 90px;
  border-top: 1px solid var(--line);
}

.brand-guidance > div:first-child {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 30px;
  align-items: start;
}

.brand-guidance h2 {
  max-width: 900px;
  margin-bottom: 34px;
  font-size: clamp(38px, 5vw, 70px);
  line-height: 1;
}

.guidance-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.guidance-card {
  min-height: 220px;
  padding: 26px;
  border-top: 8px solid var(--brass);
  background: white;
  box-shadow: 0 14px 44px rgba(7, 28, 40, .08);
}

.guidance-card.g { border-color: var(--exteriors); }
.guidance-card.h { border-color: var(--commercial); }
.guidance-card.i { border-color: var(--development); }

.guidance-card b,
.guidance-card span {
  display: block;
}

.guidance-card b {
  margin-bottom: 22px;
  font-size: 17px;
}

.guidance-card span {
  margin-bottom: 10px;
  color: var(--muted);
  font-style: italic;
}

.guidance-card p {
  margin-bottom: 0;
  line-height: 1.6;
}

.guardrail {
  max-width: 1050px;
  margin: 32px 0 0;
  padding-left: 18px;
  border-left: 4px solid var(--brass);
  color: var(--muted);
  line-height: 1.65;
}

.summary-view {
  padding: 72px 0 100px;
}

.summary-header {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  align-items: start;
  margin-bottom: 46px;
}

.summary-header h1 {
  margin-bottom: 14px;
  font-size: clamp(52px, 7vw, 96px);
  line-height: .94;
}

.summary-header p:last-child {
  max-width: 760px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.6;
}

.summary-header button,
.selection-heading button,
.empty-selection button {
  background: white;
}

.summary-layout {
  display: grid;
  grid-template-columns: minmax(300px, .72fr) minmax(0, 1.28fr);
  gap: 26px;
  align-items: start;
}

.rank-panel,
.selection-panel,
.submit-panel,
.results-panel {
  border: 1px solid var(--line);
  border-radius: 7px;
  background: white;
  box-shadow: 0 18px 52px rgba(7, 28, 40, .08);
}

.rank-panel,
.selection-panel {
  padding: 28px;
}

.rank-panel {
  position: sticky;
  top: 98px;
}

.rank-panel h2,
.selection-panel h2,
.submit-panel h2,
.results-panel h2 {
  margin-bottom: 20px;
  font-size: 36px;
  line-height: 1.05;
}

.ranked-list {
  display: grid;
  gap: 8px;
}

.rank-item {
  display: grid;
  grid-template-columns: 38px 62px 1fr auto;
  gap: 10px;
  align-items: center;
  min-height: 78px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--paper);
}

.rank-number {
  color: var(--brass);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  text-align: center;
}

.rank-item img {
  width: 62px;
  height: 58px;
  object-fit: contain;
  background: var(--limestone);
}

.rank-item b,
.rank-item span {
  display: block;
}

.rank-item b {
  font-size: 12px;
  line-height: 1.3;
}

.rank-item span {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}

.rank-controls {
  display: grid;
  grid-template-columns: repeat(3, 28px);
  gap: 4px;
}

.rank-controls button {
  width: 28px;
  height: 28px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: white;
}

.rank-placeholder {
  min-height: 60px;
  padding: 18px;
  border: 1px dashed var(--line);
  color: var(--muted);
  font-size: 12px;
  text-align: center;
}

.rank-help {
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

.selection-heading {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.selected-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.selected-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--paper);
}

.selected-card img {
  width: 100%;
  aspect-ratio: 1.2;
  object-fit: contain;
  background: var(--limestone);
}

.selected-card-copy {
  padding: 12px;
}

.selected-card b,
.selected-card small {
  display: block;
}

.selected-card b {
  min-height: 34px;
  font-size: 12px;
  line-height: 1.35;
}

.selected-card small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
}

.selected-card-actions {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px;
  margin-top: 11px;
}

.selected-card-actions button {
  min-height: 34px;
  padding: 0 8px;
  border: 1px solid var(--line);
  border-radius: 3px;
  background: white;
  font-size: 10px;
  font-weight: 800;
}

.selected-card-actions .remove-choice {
  color: var(--error);
}

.empty-selection {
  display: grid;
  place-items: center;
  min-height: 280px;
  border: 1px dashed var(--line);
  text-align: center;
}

.submit-panel {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: center;
  margin-top: 26px;
  padding: 32px;
  background: var(--navy);
  color: white;
}

.submit-panel p {
  max-width: 750px;
  margin-bottom: 0;
  color: #c8d5da;
  line-height: 1.6;
}

.submit-panel .primary-action {
  border-color: var(--brass);
  background: var(--brass);
  color: var(--deep);
}

.submit-panel .submit-status {
  grid-column: 1 / -1;
  color: #ead7aa;
  font-size: 12px;
}

.results-panel {
  margin-top: 26px;
  padding: 32px;
}

.results-heading {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: start;
}

.overlap-score {
  min-width: 180px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--limestone);
  text-align: center;
}

.overlap-score b {
  display: block;
  color: var(--commercial);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 42px;
}

.overlap-score span {
  color: var(--muted);
  font-size: 11px;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 28px;
}

.results-grid > article {
  min-height: 300px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--paper);
}

.result-list {
  display: grid;
  gap: 7px;
}

.result-item {
  display: grid;
  grid-template-columns: 30px 52px 1fr;
  gap: 9px;
  align-items: center;
  min-height: 58px;
}

.result-item > span:first-child {
  color: var(--brass);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  text-align: center;
}

.result-item img {
  width: 52px;
  height: 52px;
  object-fit: contain;
  background: var(--limestone);
}

.result-item b,
.result-item small {
  display: block;
}

.result-item b {
  font-size: 11px;
  line-height: 1.3;
}

.result-item small {
  margin-top: 3px;
  color: var(--muted);
}

.results-note {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.6;
}

footer {
  padding: 28px 20px 40px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 10px;
  line-height: 1.6;
  text-align: center;
}

[hidden] {
  display: none !important;
}

@media (max-width: 1120px) {
  .system-strip {
    grid-template-columns: repeat(3, 1fr);
  }

  .system-intro {
    grid-column: span 3;
  }

  .vertical-chip {
    border-top: 1px solid var(--line);
  }

  .workspace-toolbar {
    grid-template-columns: 1fr;
  }

  .toolbar-actions {
    flex-wrap: wrap;
  }

  .flip-card {
    grid-template-columns: minmax(220px, .7fr) minmax(420px, 1.4fr);
  }

  .vote-panel {
    grid-column: 1 / -1;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .guidance-grid {
    grid-template-columns: 1fr 1fr;
  }

  .summary-layout {
    grid-template-columns: 1fr;
  }

  .rank-panel {
    position: static;
  }
}

@media (max-width: 760px) {
  .review-header {
    min-height: 66px;
    padding: 10px 18px;
  }

  .brand-name {
    font-size: 17px;
  }

  .review-identity {
    font-size: 0;
  }

  main,
  .summary-view {
    width: min(100% - 24px, 1440px);
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 36px;
    min-height: 0;
    padding: 62px 0 54px;
  }

  .intro h1 {
    font-size: clamp(50px, 15vw, 74px);
  }

  .judging-standard {
    box-shadow: 10px 10px 0 var(--limestone);
  }

  .judging-standard li {
    grid-template-columns: 95px 1fr;
  }

  .system-strip {
    grid-template-columns: 1fr 1fr;
  }

  .system-intro {
    grid-column: span 2;
  }

  .vertical-chip {
    min-height: 108px;
  }

  .toolbar-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .toolbar-actions select {
    width: 100%;
  }

  .toolbar-actions .check-filter {
    grid-column: span 2;
  }

  .flip-card {
    display: flex;
    flex-direction: column;
    min-height: 0;
  }

  .card-context {
    min-height: 310px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .card-context h2 {
    font-size: 44px;
  }

  .logo-stage {
    min-height: 430px;
    padding: 22px;
  }

  .vote-panel {
    padding: 28px 22px;
  }

  .flip-navigation {
    grid-template-columns: 1fr 1fr;
  }

  .flip-navigation .summary-action {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .brand-guidance > div:first-child {
    grid-template-columns: 1fr;
  }

  .guidance-grid,
  .results-grid {
    grid-template-columns: 1fr;
  }

  .summary-header {
    display: grid;
  }

  .summary-header button {
    justify-self: start;
  }

  .selected-grid {
    grid-template-columns: 1fr 1fr;
  }

  .submit-panel {
    grid-template-columns: 1fr;
  }

  .results-heading {
    display: grid;
  }

  .overlap-score {
    min-width: 0;
  }
}

@media (max-width: 470px) {
  .system-strip {
    grid-template-columns: 1fr;
  }

  .system-intro {
    grid-column: auto;
  }

  .toolbar-actions {
    grid-template-columns: 1fr;
  }

  .toolbar-actions .check-filter {
    grid-column: auto;
  }

  .selected-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
  }
}
