/* Kitchen Table venue selector. Warm paper, generous spacing, one ink colour
   for the page and one for links. The three variants share this sheet: the
   chrome, the honesty blocks and the photo placeholders are common, and only
   the layout of the results changes. */

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

:root {
  --paper: #f7f2e9;
  --card: #fffdf8;
  --ink: #24201b;
  --muted: #6f6355;
  --faint: #8a7c68;
  --rule: #e2d7c2;
  --rule-soft: #ede4d4;
  --accent: #8a4120;
  --accent-ink: #6a3418;
  --good: #1e6b45;
  --good-bg: #f0f6f1;
  --warn: #7a4a10;
  --warn-bg: #f8eddc;
  --stop: #7d2a16;
  --stop-bg: #f9e7e2;
  --shadow: 0 6px 20px rgba(92, 72, 40, 0.09);
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  line-height: 1.55;
  overflow-wrap: break-word;
}
body.dv-locked { overflow: hidden; }

h1, h2, h3, h4 {
  font-family: "Iowan Old Style", Georgia, "Times New Roman", serif;
  font-weight: 600; margin: 0;
}

a { color: var(--accent); }
:focus-visible { outline: 3px solid #1d4ed8; outline-offset: 2px; border-radius: 3px; }

.dv-sr, .dv-skip {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0;
}
.dv-skip:focus {
  position: fixed; left: 10px; top: 10px; z-index: 60; width: auto; height: auto;
  clip: auto; margin: 0; padding: 10px 14px; background: var(--card);
  border: 2px solid var(--ink); border-radius: 8px; font-weight: 600;
}

/* ---------- top toolbar: the only place the switcher lives ---------- */

.dv-bar {
  position: sticky; top: 0; z-index: 30;
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px 14px;
  padding: 10px 14px; background: #15181d; color: #e7eaee; font-size: 12.5px;
}
.dv-tagline {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase;
  color: #b4bcc6; border: 1px solid #3a414a; border-radius: 999px; padding: 3px 9px;
}
.dv-switcher { display: flex; align-items: center; gap: 8px; }
.dv-switcher-label {
  font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: #b4bcc6;
}
.dv-switcher-set {
  display: flex; gap: 2px; padding: 2px;
  background: #23272e; border: 1px solid #3a414a; border-radius: 999px;
}
.dv-switch {
  display: inline-flex; align-items: baseline; gap: 6px;
  font: inherit; color: #e7eaee; background: transparent;
  border: 0; border-radius: 999px; padding: 6px 12px; cursor: pointer;
  min-height: 34px;
}
.dv-switch:hover { background: #313841; }
.dv-switch.is-on { background: var(--paper); color: #15181d; font-weight: 700; }
.dv-switch-key { font-weight: 700; letter-spacing: 0.04em; }
.dv-switch-name { font-size: 12px; }
.dv-back { margin-left: auto; color: #e7eaee; font-weight: 600; }

/* ---------- page frame ---------- */

.dv-wrap { max-width: 74rem; margin: 0 auto; padding: 12px 16px 56px; }
.dv-intro { max-width: 46em; }
.dv-eyebrow {
  margin: 0; font-size: 11.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--faint);
}
h1 { font-size: 26px; line-height: 1.12; margin: 6px 0 0; }
.dv-lead { margin: 6px 0 0; font-size: 15px; color: var(--muted); line-height: 1.45; }
.dv-intro-more { margin: 8px 0 0; }
.dv-intro-more summary {
  cursor: pointer; font-size: 13px; font-weight: 600; color: var(--accent-ink);
  padding: 5px 0; list-style-position: inside;
}
.dv-intro-more p {
  margin: 5px 0 0; font-size: 13.5px; color: var(--muted); line-height: 1.5;
}
.dv-variant-note {
  margin: 8px 0 0; padding: 7px 12px; background: var(--card);
  border: 1px solid var(--rule); border-left: 4px solid var(--accent);
  border-radius: 0 10px 10px 0; font-size: 13px; color: var(--muted); line-height: 1.4;
}

/* ---------- filters ---------- */

.dv-filters {
  margin: 12px 0 0; padding: 12px; background: var(--card);
  border: 1px solid var(--rule); border-radius: 14px; box-shadow: var(--shadow);
  display: grid; gap: 9px;
}
.dv-field { display: grid; gap: 5px; min-width: 0; }
.dv-field label {
  font-size: 11.5px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint);
}
.dv-field input, .dv-field select {
  font: inherit; font-size: 15px; color: var(--ink); background: #fff;
  border: 1px solid var(--rule); border-radius: 9px; padding: 10px 12px;
  min-height: 44px; width: 100%;
}
.dv-filters-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 9px;
}
.dv-reset {
  font: inherit; font-weight: 600; font-size: 14px; color: var(--accent-ink);
  background: #f4ecdd; border: 1px solid var(--rule); border-radius: 9px;
  padding: 10px 16px; min-height: 44px; cursor: pointer;
}
.dv-reset:hover:not([disabled]) { background: #ecdfc9; }
.dv-reset[disabled] { opacity: 0.5; cursor: default; }
.dv-count {
  margin: 0; font-size: 13px; font-weight: 600; color: var(--ink);
  align-self: center;
}
.dv-filter-fine { margin: 0; font-size: 12px; color: var(--faint); grid-column: 1 / -1; }

/* ---------- shared blocks ---------- */

.dv-results { margin-top: 12px; }
.dv-results:focus { outline: none; }

.dv-photo {
  position: relative; display: block; overflow: hidden;
  border-radius: 10px; border: 1px solid var(--rule);
  background:
    repeating-linear-gradient(135deg, rgba(255,255,255,0.22) 0 10px, rgba(255,255,255,0) 10px 20px),
    linear-gradient(150deg, hsl(var(--dv-hue, 30) 48% 76%), hsl(var(--dv-hue, 30) 36% 60%));
  color: #2b2318;
}
.dv-photo.is-tile { height: 104px; }
.dv-photo.is-wide { height: 128px; }
.dv-photo.is-chip { width: 44px; height: 44px; flex: 0 0 44px; }
.dv-photo-initials {
  position: absolute; inset: 0; display: flex; align-items: center; justify-content: center;
  font-family: "Iowan Old Style", Georgia, serif; font-size: 30px; font-weight: 700;
  letter-spacing: 0.04em; color: rgba(38, 30, 20, 0.62);
}
.dv-photo.is-chip .dv-photo-initials { font-size: 15px; }
.dv-photo-tag {
  position: absolute; left: 8px; bottom: 8px;
  font-size: 9.5px; letter-spacing: 0.12em; text-transform: uppercase; font-weight: 700;
  background: rgba(255, 253, 248, 0.92); color: #4a4034;
  border-radius: 999px; padding: 2px 8px;
}
.dv-photo.is-chip .dv-photo-tag { display: none; }
.dv-photo-note { margin-top: 8px; }

.dv-tags { display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0 0; }
.dv-tag {
  font-size: 11px; font-weight: 600; border-radius: 999px; padding: 3px 9px;
  background: #f1e9db; color: #6b6152;
}
.dv-tag.is-district { background: #e4ecf3; color: #2c4a63; }
.dv-tag.is-halal { background: #e6efe6; color: #2d5537; }

.dv-closing {
  margin: 12px 0 0; padding: 10px 12px;
  background: var(--good-bg); border-left: 4px solid var(--good); border-radius: 0 9px 9px 0;
}
.dv-closing.is-unsettled { background: var(--warn-bg); border-left-color: #a35c12; }
.dv-closing-label {
  display: block; font-size: 10.5px; text-transform: uppercase;
  letter-spacing: 0.12em; color: var(--faint);
}
.dv-closing-time { display: block; font-size: 17px; font-weight: 700; margin-top: 2px; }
.dv-closing.is-unsettled .dv-closing-time { font-size: 14px; font-weight: 600; line-height: 1.4; }

.dv-chips { display: flex; flex-wrap: wrap; gap: 6px; margin: 10px 0 0; }
.dv-chip {
  font-size: 11.5px; font-weight: 600; border-radius: 7px; padding: 4px 9px;
  background: var(--warn-bg); color: var(--warn);
}
.dv-chip.is-stop { background: var(--stop-bg); color: var(--stop); }
.dv-chip.is-clear { background: #eef1ea; color: #4d5a48; font-weight: 500; }
.dv-chip.is-more { background: #ece2d0; color: #5b5142; font-weight: 500; }

.dv-status-list { list-style: none; margin: 8px 0 0; padding: 0; display: grid; gap: 8px; }
.dv-status-list li {
  font-size: 13.5px; padding: 10px 12px; border-radius: 9px;
  background: var(--warn-bg); color: var(--warn);
}
.dv-status-list li.is-stop { background: var(--stop-bg); color: var(--stop); }
.dv-status-list strong { display: block; }
.dv-status-clear { margin: 8px 0 0; font-size: 13.5px; color: var(--muted); }

.dv-rating { display: block; margin-top: 10px; font-size: 13.5px; color: var(--muted); }
.dv-rating strong { font-size: 16px; color: var(--ink); }
.dv-rating.is-unknown { font-style: italic; color: #8a5a2a; }
.dv-rating-note {
  margin-left: 6px; font-size: 10.5px; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--faint);
}
.dv-rating-score { font-size: 17px; font-weight: 700; }

.dv-unknown { color: #8a5a2a; font-style: italic; }
.dv-fine { display: block; margin: 6px 0 0; font-size: 12px; color: var(--faint); line-height: 1.45; }

.dv-btn {
  display: inline-flex; align-items: center; justify-content: center;
  font: inherit; font-size: 14px; font-weight: 600; text-decoration: none;
  color: var(--accent-ink); background: #f4ecdd;
  border: 1px solid var(--rule); border-radius: 9px;
  padding: 10px 14px; min-height: 44px; cursor: pointer;
}
.dv-btn:hover { background: #ecdfc9; }
.dv-btn.is-primary { background: var(--ink); color: #f7f2e9; border-color: var(--ink); }
.dv-btn.is-primary:hover { background: #38312a; }
.dv-btn.is-on { background: var(--good); border-color: var(--good); color: #f2f8f3; }
.dv-btn.is-dead {
  background: transparent; border-style: dashed; color: var(--faint);
  cursor: default; font-weight: 500;
}
.dv-btn[disabled] { opacity: 0.45; cursor: not-allowed; }
.dv-btn.is-maps { min-height: 44px; }
.dv-link { color: var(--accent); }

.dv-section { margin: 20px 0 0; }
.dv-section h3 { font-size: 16px; }
.dv-schedule {
  margin: 8px 0 0; padding: 12px 14px; background: #f4ecdd; border-radius: 9px;
  font-size: 14px;
}
.dv-evidence { margin: 10px 0 0; font-size: 12.5px; color: var(--muted); }

.dv-facts { margin: 14px 0 0; display: grid; gap: 10px; }
.dv-facts > div {
  display: grid; gap: 2px; border-bottom: 1px solid var(--rule-soft); padding-bottom: 9px;
}
.dv-facts dt {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--faint);
}
.dv-facts dd { margin: 0; font-size: 14px; overflow-wrap: anywhere; }

.dv-links { display: grid; gap: 14px; margin-top: 10px; }
.dv-link-cell h4 {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--faint); font-family: system-ui, sans-serif; margin-bottom: 6px;
}
.dv-more { margin-top: 16px; }
.dv-more summary {
  cursor: pointer; font-size: 14px; font-weight: 600; color: var(--accent-ink);
  padding: 11px 0; min-height: 44px;
}
.dv-notes { margin: 8px 0 0; font-size: 13.5px; color: var(--muted); }
.dv-provenance {
  margin: 20px 0 0; padding-top: 12px; border-top: 1px solid var(--rule-soft);
  font-size: 11.5px; color: var(--faint); overflow-wrap: anywhere;
}

.dv-detail-food { margin: 0; font-size: 16px; line-height: 1.5; }

.dv-detail-rating {
  margin: 12px 0 0; font-size: 16px; color: var(--ink);
}
.dv-detail-rating strong { font-size: 20px; }
.dv-rating-saved {
  font-size: 14px; color: var(--muted); font-weight: 400;
}

.dv-detail-actions {
  display: flex; gap: 10px; margin: 16px 0 0; flex-wrap: wrap;
}
.dv-detail-actions .dv-btn { flex: 1 1 auto; min-width: 140px; }

.dv-menu-sample {
  display: inline-block; margin-left: 8px; padding: 1px 8px;
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.02em;
  border-radius: 999px; border: 1px solid currentColor;
  background: transparent; color: inherit; vertical-align: 1px;
}

.dv-menu-unavailable {
  margin: 0; font-size: 15px; color: var(--muted);
  padding: 11px 14px; background: var(--paper);
  border: 1px solid var(--rule-soft); border-radius: 9px;
  flex: 1 1 auto; min-width: 140px; text-align: center;
}

.dv-hours-section { margin: 20px 0 0; }
.dv-simple-heading {
  font-size: 18px; margin: 0 0 10px; font-weight: 600;
}
.dv-hours-note {
  margin: 0 0 8px; font-size: 14px; color: var(--warn);
  padding: 8px 12px; background: var(--warn-bg); border-radius: 8px;
}
.dv-hours-text {
  margin: 0; font-size: 16px; line-height: 1.5;
  padding: 12px 14px; background: #f4ecdd; border-radius: 9px;
}

.dv-hours-table {
  width: 100%; border-collapse: collapse; font-size: 16px; line-height: 1.5;
}
.dv-hours-table td {
  padding: 6px 0; vertical-align: baseline;
}
.dv-hours-day {
  width: 40%; padding-right: 16px; color: var(--ink);
}
.dv-hours-times {
  width: 60%; color: var(--ink);
}
.dv-current-day .dv-hours-day,
.dv-current-day .dv-hours-times {
  font-weight: 700;
}
.dv-hours-next {
  font-size: 14px; color: var(--muted);
}

.dv-more-info { margin: 20px 0 0; }
.dv-more-info summary {
  cursor: pointer; font-size: 15px; font-weight: 600;
  color: var(--accent-ink); padding: 11px 0; min-height: 44px;
}
.dv-more-content {
  margin: 8px 0 0; padding: 14px; background: var(--paper);
  border-radius: 9px;
}
.dv-more-content p {
  margin: 0 0 10px; font-size: 14px; line-height: 1.5;
}
.dv-more-content p:last-child { margin-bottom: 0; }
.dv-more-content strong { font-weight: 600; }

.dv-empty {
  padding: 30px 22px; background: var(--card);
  border: 1px dashed #c9b391; border-radius: 14px; text-align: center;
}
.dv-empty h2 { font-size: 21px; }
.dv-empty p { margin: 10px auto 0; max-width: 40em; color: var(--muted); }
.dv-empty-actions { margin-top: 18px; }

.dv-note {
  margin-top: 40px; padding-top: 20px; border-top: 2px solid var(--ink); max-width: 48em;
}
.dv-note h2 { font-size: 18px; }
.dv-note ul { margin: 12px 0 0; padding-left: 20px; }
.dv-note li { font-size: 14px; color: var(--muted); margin-bottom: 8px; }

/* ---------- A: tile grid ---------- */

.va-grid { display: grid; gap: 16px; }
.va-tile {
  display: flex; flex-direction: column;
  background: var(--card); border: 1px solid var(--rule); border-radius: 14px;
  padding: 14px; box-shadow: var(--shadow);
}
.va-body { flex: 1 1 auto; }
.va-name { font-size: 19px; margin-top: 12px; }
.va-food { margin: 8px 0 0; font-size: 13.5px; color: var(--muted); }
.va-actions {
  display: flex; gap: 8px; margin-top: 16px; padding-top: 14px;
  border-top: 1px solid var(--rule-soft);
}
.va-actions .dv-btn { flex: 1 1 auto; }

/* ---------- A: drawer ---------- */

.dv-overlay[hidden] { display: none; }
.dv-overlay { position: fixed; inset: 0; z-index: 40; }
.dv-scrim { position: absolute; inset: 0; background: rgba(28, 22, 14, 0.5); }
.dv-drawer {
  position: absolute; right: 0; bottom: 0; left: 0; max-height: 92vh;
  display: flex; flex-direction: column;
  background: var(--card); border-top: 3px solid var(--ink);
  border-radius: 16px 16px 0 0; box-shadow: 0 -10px 34px rgba(30, 22, 10, 0.28);
}
.dv-drawer-head {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px 18px 12px; border-bottom: 1px solid var(--rule);
}
.dv-drawer-head h2 { font-size: 21px; flex: 1 1 auto; }
.dv-drawer-close {
  font: inherit; font-size: 14px; font-weight: 600; color: var(--accent-ink);
  background: #f4ecdd; border: 1px solid var(--rule); border-radius: 9px;
  padding: 10px 14px; min-height: 44px; cursor: pointer;
}
.dv-drawer-body { overflow-y: auto; padding: 4px 18px 26px; -webkit-overflow-scrolling: touch; }

/* ---------- B: list + panel ---------- */

.vb-layout { display: grid; gap: 18px; }
.vb-rows { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; }
.vb-row {
  display: flex; gap: 12px; align-items: flex-start; width: 100%; text-align: left;
  font: inherit; color: inherit; cursor: pointer;
  background: var(--card); border: 1px solid var(--rule); border-radius: 11px;
  padding: 12px 14px; min-height: 58px;
}
.vb-row:hover { background: #fff8ea; }
.vb-row.is-open { border-color: var(--ink); box-shadow: inset 3px 0 0 var(--ink); }
.vb-row-main { flex: 1 1 auto; min-width: 0; }
.vb-row-name { display: block; font-size: 15.5px; font-weight: 600; }
.vb-row-meta { display: block; margin-top: 2px; font-size: 12.5px; color: var(--muted); }
.vb-row-side { flex: 0 0 auto; text-align: right; max-width: 42%; }
.vb-row-close { display: block; font-size: 13px; font-weight: 600; color: var(--good); }
.vb-row-close.is-unsettled { color: var(--warn); font-weight: 500; font-size: 12px; }
.vb-row-flags {
  display: block; margin-top: 3px; font-size: 10.5px; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--faint);
}
.vb-panel {
  background: var(--card); border: 1px solid var(--rule); border-radius: 14px;
  padding: 18px; box-shadow: var(--shadow);
}
.vb-panel-title { font-size: 21px; margin-top: 10px; }
.vb-panel-empty h2 { font-size: 18px; }
.vb-panel-empty p { margin: 10px 0 0; color: var(--muted); font-size: 14px; }
.vb-back {
  font: inherit; font-size: 13.5px; font-weight: 600; color: var(--accent-ink);
  background: #f4ecdd; border: 1px solid var(--rule); border-radius: 9px;
  padding: 10px 12px; min-height: 44px; cursor: pointer;
}
/* on a phone the panel takes over the screen and the list steps aside */
@media (max-width: 899px) {
  .vb-layout.is-detail .vb-list { display: none; }
  .vb-layout:not(.is-detail) .vb-panel { display: none; }
}

/* ---------- C: compare ---------- */

.vc-compare {
  background: var(--card); border: 1px solid var(--rule); border-radius: 14px;
  padding: 16px; box-shadow: var(--shadow);
}
.vc-compare.is-empty { border-style: dashed; }
.vc-compare.is-empty h2 { font-size: 18px; }
.vc-compare.is-empty p { margin: 10px 0 0; color: var(--muted); font-size: 14px; }
.vc-compare-head {
  display: flex; flex-wrap: wrap; align-items: center; gap: 10px;
  justify-content: space-between;
}
.vc-compare-head h2 { font-size: 19px; }
.vc-matrix { margin-top: 14px; display: grid; gap: 10px; }
.vc-row { display: grid; gap: 8px; padding-bottom: 10px; border-bottom: 1px solid var(--rule-soft); }
.vc-row:last-child { border-bottom: 0; }
.vc-label {
  font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--faint); font-weight: 700;
}
.vc-cell { font-size: 13.5px; min-width: 0; overflow-wrap: anywhere; }
.vc-cell-value { display: block; }
.vc-cell-name {
  display: block; font-size: 12px; font-weight: 700; color: var(--ink);
  margin-bottom: 2px;
}
.vc-head-cell { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.vc-head-name { font-weight: 700; font-size: 14.5px; }
.vc-remove {
  font: inherit; font-size: 12.5px; color: var(--stop); background: var(--stop-bg);
  border: 0; border-radius: 8px; padding: 6px 10px; min-height: 34px; cursor: pointer;
}
.vc-good { color: var(--good); font-weight: 700; }
.vc-unsettled { color: var(--warn); font-weight: 600; }
.vc-schedule { display: block; font-size: 12.5px; }
.vc-flags { list-style: none; margin: 0; padding: 0; display: grid; gap: 5px; }
.vc-flags li { font-size: 12px; padding: 6px 8px; border-radius: 7px; background: var(--warn-bg); color: var(--warn); }
.vc-flags li.is-stop { background: var(--stop-bg); color: var(--stop); }

.vc-cap {
  margin: 16px 0 0; font-size: 13.5px; font-weight: 600; color: var(--muted);
  padding: 10px 12px; background: #f4ecdd; border-radius: 9px;
}
.vc-list { list-style: none; margin: 14px 0 0; padding: 0; display: grid; gap: 14px; }
.vc-item {
  background: var(--card); border: 1px solid var(--rule); border-radius: 14px;
  padding: 16px; box-shadow: var(--shadow);
}
.vc-item.is-picked { border-color: var(--good); box-shadow: inset 0 0 0 1px var(--good), var(--shadow); }
.vc-item-head { display: flex; gap: 12px; align-items: center; }
.vc-item-head h3 { font-size: 17px; }
.vc-item-meta { margin: 3px 0 0; font-size: 13px; color: var(--muted); }
.vc-item-actions { display: flex; gap: 8px; margin-top: 14px; }
.vc-item-actions .dv-btn { flex: 1 1 auto; }

/* ---------- wide ---------- */

@media (min-width: 720px) {
  .dv-filters {
    grid-template-columns: minmax(0, 2fr) minmax(0, 1fr) minmax(0, 1fr) auto;
    align-items: end;
  }
  .dv-filters-row { display: contents; }
  .dv-count { grid-column: 1 / -1; }
  .dv-links { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .va-grid { grid-template-columns: repeat(auto-fill, minmax(17rem, 1fr)); gap: 18px; }
}

@media (min-width: 900px) {
  .dv-wrap { padding: 36px 26px 72px; }
  h1 { font-size: 40px; }
  .dv-lead { font-size: 16.5px; }
  .dv-variant-note { font-size: 14px; padding: 10px 14px; }

  .dv-drawer {
    left: auto; top: 0; width: min(30rem, 92vw); max-height: none; height: 100%;
    border-radius: 0; border-top: 0; border-left: 3px solid var(--ink);
    box-shadow: -12px 0 36px rgba(30, 22, 10, 0.26);
  }

  .vb-layout { grid-template-columns: minmax(0, 22rem) minmax(0, 1fr); gap: 22px; align-items: start; }
  .vb-panel { position: sticky; top: 74px; max-height: calc(100vh - 100px); overflow-y: auto; }
  .vb-back { display: none; }

  /* label column, then one auto column per compared place. The count is not
     in the stylesheet on purpose: repeat() cannot take a custom property. */
  .vc-row {
    grid-auto-flow: column;
    grid-template-columns: 12rem;
    grid-auto-columns: minmax(0, 1fr);
    gap: 16px; align-items: start;
  }
  .vc-cell-name { display: none; }
  .vc-head .vc-label { align-self: center; }
  .vc-list { grid-template-columns: repeat(auto-fill, minmax(20rem, 1fr)); }
}
