/* ============================================================
 * 官網.台灣 — Design System Stylesheet
 * 和紙 (washi) × 台灣官方文書 (official document) aesthetic
 * Source of truth: design/project/官網台灣.html + design/project/src/primitives.jsx
 * ============================================================ */

/* ── Design Tokens ─────────────────────────────────────────── */
:root {
  /* Paper / ink / line */
  --paper: #F5F1E8;
  --paper-2: #EFEADE;
  --paper-3: #E6DFCE;
  --ink: #1A1613;
  --ink-2: #3A322B;
  --ink-3: #6B6157;
  --ink-4: #9C9286;
  --line: #D8CFBC;
  --line-2: #C5B9A0;

  /* Accent — seal red, gold, jade, verified green */
  --seal: #B4352C;
  --seal-dark: #8E2A21;
  --gold: #9A7B3F;
  --gold-2: #C9A96A;
  --jade: #4A6B5C;
  --verified: #2F5B3A;

  /* Type stacks */
  --serif: 'Noto Serif TC', 'Songti TC', serif;
  --sans: 'Noto Sans TC', -apple-system, system-ui, sans-serif;
  --mono: 'JetBrains Mono', 'SF Mono', ui-monospace, monospace;
}

/* ── Base reset ────────────────────────────────────────────── */
* { box-sizing: border-box; -webkit-font-smoothing: antialiased; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  font-family: var(--sans);
  color: var(--ink);
  line-height: 1.6;
}

body {
  min-height: 100vh;
}

a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 3px; }
button { font: inherit; }

/* ── Washi paper texture ───────────────────────────────────── */
.washi {
  background-color: var(--paper);
  background-image:
    radial-gradient(circle at 20% 30%, rgba(154,123,63,0.04) 0%, transparent 40%),
    radial-gradient(circle at 80% 70%, rgba(180,53,44,0.03) 0%, transparent 40%),
    repeating-linear-gradient(95deg, transparent 0, transparent 2px, rgba(107,97,87,0.015) 2px, rgba(107,97,87,0.015) 3px),
    repeating-linear-gradient(5deg, transparent 0, transparent 4px, rgba(107,97,87,0.01) 4px, rgba(107,97,87,0.01) 5px);
}

/* ── Grain overlay ─────────────────────────────────────────── */
.grain { position: relative; }
.grain::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  mix-blend-mode: multiply;
  z-index: 1;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.4 0 0 0 0 0.35 0 0 0 0 0.28 0 0 0 0.08 0'/></filter><rect width='200' height='200' filter='url(%23n)'/></svg>");
}

/* Make content sit above grain */
body.grain > * { position: relative; z-index: 2; }

/* ── Seal (round red stamp) ────────────────────────────────── */
.seal {
  font-family: var(--serif);
  font-weight: 700;
  color: var(--seal);
  border: 2.5px solid var(--seal);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  letter-spacing: 0.05em;
  background: rgba(180,53,44,0.03);
  box-shadow: 0 0 0 1px rgba(180,53,44,0.12), inset 0 0 0 2px var(--paper);
  border-radius: 50%;
}
.seal::after {
  content: '';
  position: absolute;
  inset: -6px;
  border: 1px dashed rgba(180,53,44,0.25);
  border-radius: inherit;
}
.seal__text {
  line-height: 1.05;
  letter-spacing: 0.05em;
  text-align: center;
}
.seal__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

/* ── Square stamp (print-style label) ──────────────────────── */
.stamp-square {
  font-family: var(--serif);
  color: var(--seal);
  border: 2px solid var(--seal);
  padding: 4px 8px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  background: rgba(180,53,44,0.03);
  display: inline-block;
}
.square-stamp { /* alias used by primitives */
  font-family: var(--serif);
  font-weight: 600;
  color: var(--seal);
  background: rgba(180,53,44,0.03);
  display: inline-block;
  letter-spacing: 0.2em;
  border: 2px solid var(--seal);
  padding: 4px 8px;
  font-size: 11px;
}
.square-stamp.sm { font-size: 10px; padding: 3px 6px; border-width: 1.5px; }
.square-stamp.md { font-size: 11px; padding: 4px 8px; border-width: 2px; }
.square-stamp.lg { font-size: 13px; padding: 6px 12px; border-width: 2.5px; }

/* ── Verified badge (checkmark) ────────────────────────────── */
.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  background: rgba(47,91,58,0.08);
  border: 1px solid rgba(47,91,58,0.25);
  border-radius: 3px;
  font-size: 12px;
  color: var(--verified);
  font-weight: 500;
  font-family: var(--sans);
  letter-spacing: 0.05em;
}
.verified-badge.compact { padding: 3px 8px; font-size: 11px; }
.verified-badge svg { flex-shrink: 0; }

/* ── Section mark (章節標題 01 — TITLE — EN) ─────────────── */
.section-mark {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--ink);
  margin-bottom: 24px;
}
.section-mark__number {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.15em;
}
.section-mark__label {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.05em;
}
.section-mark__label-en {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-4);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-left: auto;
}

/* ── Info row (公司登記表) ─────────────────────────────────── */
.info-row {
  display: flex;
  padding: 10px 0;
  border-bottom: 1px dotted var(--line-2);
  font-size: 13px;
  align-items: baseline;
}
.info-row__label {
  width: 110px;
  flex-shrink: 0;
  font-size: 11px;
  color: var(--ink-3);
  letter-spacing: 0.1em;
}
.info-row__value {
  flex: 1;
  font-family: var(--sans);
  font-weight: 500;
  color: var(--ink);
}
.info-row__value.mono { font-family: var(--mono); }

/* ── Stat block (數據牆) ───────────────────────────────────── */
.stat-block {
  padding: 18px 16px;
  border-right: 1px solid var(--line);
  flex: 1;
  text-align: left;
}
.stat-block:last-child { border-right: 0; }
.stat-block__value {
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 600;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.02em;
}
.stat-block.emph .stat-block__value { font-size: 36px; }
.stat-block__label {
  font-size: 11px;
  color: var(--ink-3);
  margin-top: 8px;
  letter-spacing: 0.1em;
}
.stat-block__sub {
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-4);
  margin-top: 4px;
}

/* ── Stars (金色星等) ──────────────────────────────────────── */
.stars {
  display: inline-flex;
  gap: 1px;
  color: var(--gold);
  line-height: 1;
}
.stars span { display: inline-block; }
.stars .dim { opacity: 0.25; }

/* ── Certificate corner ornament ───────────────────────────── */
.cert-ornament { display: inline-block; line-height: 0; }

/* ── Ink button (墨色 CTA) ─────────────────────────────────── */
.btn-ink {
  display: inline-block;
  padding: 12px 28px;
  background: var(--ink);
  color: var(--paper);
  border: 0;
  border-radius: 2px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.15em;
  cursor: pointer;
  transition: all .2s;
  box-shadow: 0 2px 0 var(--ink-2);
  text-decoration: none;
  text-align: center;
}
.btn-ink:hover {
  background: var(--ink-2);
  text-decoration: none;
  color: var(--paper);
}
.btn-ink:active {
  transform: translateY(1px);
  box-shadow: 0 1px 0 var(--ink-2);
}
.btn-ink.big {
  padding: 18px 36px;
  font-size: 17px;
}
.btn-ink:disabled,
.btn-ink[disabled] {
  background: var(--ink-4);
  color: var(--paper-2);
  box-shadow: none;
  cursor: not-allowed;
}

/* ── Utility ───────────────────────────────────────────────── */
.mono { font-family: var(--mono); letter-spacing: 0; }
.serif { font-family: var(--serif); }
.sans { font-family: var(--sans); }
.kerning-tight { letter-spacing: -0.02em; }

.rule { background: var(--ink); height: 1px; border: 0; }
.rule-thin { background: var(--line-2); height: 1px; border: 0; }
.rule-double {
  height: 3px;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: transparent;
}

.text-ink { color: var(--ink); }
.text-ink-2 { color: var(--ink-2); }
.text-ink-3 { color: var(--ink-3); }
.text-ink-4 { color: var(--ink-4); }
.text-seal { color: var(--seal); }
.text-gold { color: var(--gold); }
.text-jade { color: var(--jade); }
.text-verified { color: var(--verified); }

.paper-surface { background: var(--paper); }
.paper-2-surface { background: var(--paper-2); }
.paper-3-surface { background: var(--paper-3); }

/* ── Layout helpers ────────────────────────────────────────── */
.container-page {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
.container-narrow {
  max-width: 960px;
  margin: 0 auto;
  padding: 0 48px;
}

@media (max-width: 768px) {
  .container-page,
  .container-narrow {
    padding: 0 20px;
  }
}

/* ── Top / bottom rule bar ─────────────────────────────────── */
.top-rule {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 48px;
  border-bottom: 1px solid var(--ink);
  font-family: var(--mono);
  font-size: 10px;
  color: var(--ink-3);
  letter-spacing: 0.2em;
}
.bottom-rule {
  padding: 12px 48px;
  border-top: 1px solid var(--line-2);
  background: var(--paper-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-family: var(--mono);
  font-size: 9px;
  color: var(--ink-3);
  letter-spacing: 0.15em;
}

/* ── Site nav (dark header) ────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(26,22,19,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: #F5F1E8;
  border-bottom: 1px solid rgba(216,207,188,0.12);
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  font-family: var(--sans);
}
.site-header__logo {
  font-family: var(--serif);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #F5F1E8;
  text-decoration: none;
}
.site-header__logo:hover { text-decoration: none; color: #F5F1E8; }
.site-header__tag {
  font-family: var(--mono);
  font-size: 10px;
  color: rgba(245,241,232,0.5);
  letter-spacing: 0.2em;
}
.site-header__divider {
  width: 1px;
  height: 18px;
  background: rgba(216,207,188,0.15);
  margin: 0 4px;
}
.site-header__tabs {
  display: flex;
  gap: 4px;
}
.site-header__tab {
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 12px;
  font-weight: 500;
  cursor: pointer;
  color: rgba(245,241,232,0.6);
  border: 1px solid transparent;
  background: transparent;
  transition: all .15s;
  text-decoration: none;
  font-family: var(--sans);
}
.site-header__tab:hover {
  color: rgba(245,241,232,0.9);
  text-decoration: none;
}
.site-header__tab.active {
  background: rgba(245,241,232,0.08);
  color: #F5F1E8;
  border-color: rgba(216,207,188,0.2);
}
.site-header__right {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-header__addr {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border: 1px solid rgba(216,207,188,0.2);
  border-radius: 999px;
  background: rgba(0,0,0,0.3);
  font-family: var(--mono);
  font-size: 12px;
}
.site-header__lock { color: #7BC194; }
.site-header__burger {
  display: none;
  background: transparent;
  border: 1px solid rgba(216,207,188,0.2);
  border-radius: 6px;
  padding: 6px 10px;
  color: #F5F1E8;
  cursor: pointer;
}

@media (max-width: 900px) {
  .site-header__tabs { display: none; }
  .site-header__burger { display: inline-flex; }
  .site-header__tabs.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: rgba(26,22,19,0.98);
    padding: 12px 20px;
    gap: 2px;
    border-bottom: 1px solid rgba(216,207,188,0.12);
  }
  .site-header__divider { display: none; }
  .site-header__addr { display: none; }
}

/* ── Site footer ───────────────────────────────────────────── */
.site-footer {
  padding: 28px 48px;
  border-top: 1px solid var(--line-2);
  background: var(--paper-2);
  color: var(--ink-3);
  font-size: 12px;
  margin-top: 64px;
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 24px;
}
.site-footer__title {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: 0.08em;
}
.site-footer__bottom {
  padding-top: 16px;
  border-top: 1px dotted var(--line-2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
}
@media (max-width: 768px) {
  .site-footer__grid { grid-template-columns: 1fr; gap: 20px; }
  .site-footer__bottom { flex-direction: column; gap: 6px; align-items: flex-start; }
  .site-footer { padding: 24px 20px; }
}

/* ── Brand logotype block ──────────────────────────────────── */
.brand-logo {
  border: 1px solid var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--paper);
  position: relative;
  font-family: var(--serif);
  font-weight: 700;
  color: var(--ink);
}
.brand-logo__est {
  position: absolute;
  bottom: 3px;
  right: 4px;
  font-family: var(--mono);
  font-size: 7px;
  color: var(--ink-4);
  letter-spacing: 0.1em;
}

/* ── Step bar (步驟條) ─────────────────────────────────────── */
.step-bar {
  display: flex;
  align-items: center;
  gap: 0;
  width: 100%;
}
.step-bar__item {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}
.step-bar__circle {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  border: 1px solid var(--line-2);
  background: var(--paper);
  color: var(--ink-3);
  flex-shrink: 0;
}
.step-bar__item.current .step-bar__circle {
  border-color: var(--ink);
  color: var(--ink);
  background: var(--paper);
}
.step-bar__item.done .step-bar__circle {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.step-bar__label {
  font-family: var(--serif);
  font-size: 13px;
  color: var(--ink-3);
  letter-spacing: 0.08em;
  white-space: nowrap;
}
.step-bar__item.current .step-bar__label,
.step-bar__item.done .step-bar__label { color: var(--ink); }
.step-bar__line {
  flex: 1 1 auto;
  height: 1px;
  background: var(--line-2);
  margin: 0 12px;
  min-width: 20px;
}
.step-bar__item.done + .step-bar__line { background: var(--ink); }

/* ── Animations ────────────────────────────────────────────── */
@keyframes sealPulse {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.85; }
}
@keyframes inkDraw {
  from { stroke-dashoffset: 200; }
  to { stroke-dashoffset: 0; }
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .4s ease-out both; }
.seal-pulse { animation: sealPulse 2.2s ease-in-out infinite; }

/* ── Print ─────────────────────────────────────────────────── */
@media print {
  .grain::before { display: none; }
  body { background: #fff; color: #000; }
  .site-header, .site-footer, .btn-ink { display: none; }
  .seal, .stamp-square, .square-stamp {
    color: var(--seal) !important;
    border-color: var(--seal) !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
  .verified-badge {
    color: var(--verified) !important;
    border-color: var(--verified) !important;
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}

/* ── Font display ──────────────────────────────────────────── */
/* Google Fonts are loaded with display=swap in the layout link tag. */

/* ── Legacy compatibility shim ─────────────────────────────── */
/* Minimal support for existing /front/* pages until they are refactored
   by the other agent. Safe to delete once all pages adopt the new
   primitives. */
.container { max-width: 1080px; margin: 0 auto; padding: 0 20px; }
.btn {
    display: inline-block; padding: 10px 20px; border-radius: 2px;
    background: var(--ink); color: var(--paper); font-family: var(--serif);
    font-weight: 600; letter-spacing: 0.1em; cursor: pointer; border: 0;
    text-align: center; text-decoration: none;
}
.btn:hover { background: var(--ink-2); color: var(--paper); text-decoration: none; }
.btn.secondary {
    background: var(--paper); color: var(--ink);
    border: 1px solid var(--line-2);
}
.btn.accent { background: var(--seal); color: var(--paper); }
.btn.accent:hover { background: var(--seal-dark); }
.card { background: var(--paper); border: 1px solid var(--line-2); border-radius: 2px; padding: 20px; }
.grid { display: grid; gap: 16px; }
.grid.cols-3 { grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); }
.grid.cols-4 { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }
.badge {
    display: inline-block; padding: 2px 8px; border-radius: 2px;
    font-size: 0.75rem; font-weight: 600;
    background: rgba(47,91,58,0.08); color: var(--verified);
    border: 1px solid rgba(47,91,58,0.2);
}
.badge.verified { background: rgba(74,107,92,0.08); color: var(--jade); border-color: rgba(74,107,92,0.2); }
.badge.featured { background: rgba(154,123,63,0.1); color: var(--gold); border-color: rgba(154,123,63,0.25); }
.chip {
    display: inline-block; padding: 3px 10px; border-radius: 2px;
    background: var(--paper-2); color: var(--ink-2);
    font-family: var(--mono); font-size: 0.75rem; margin-right: 4px;
    border: 1px solid var(--line);
}
.chip a { color: inherit; }
.muted { color: var(--ink-3); }
.search-box {
    display: flex; width: 100%; background: var(--paper);
    border: 2px solid var(--line-2); border-radius: 2px;
    padding: 4px 4px 4px 20px; align-items: center;
}
.search-box input {
    flex: 1; padding: 12px 8px; border: 0; background: transparent;
    outline: none; font-size: 1rem; font-family: var(--serif); color: var(--ink);
}
.search-box button {
    border: 0; background: var(--ink); color: var(--paper);
    padding: 10px 24px; border-radius: 2px; cursor: pointer;
    font-family: var(--serif); font-weight: 600; letter-spacing: 0.1em;
}
.brand-card {
    background: var(--paper); border: 1px solid var(--line-2); border-radius: 2px;
    padding: 20px; display: flex; flex-direction: column; gap: 10px;
    transition: border-color .15s, background .15s;
}
.brand-card:hover { border-color: var(--ink); background: var(--paper-2); }
.brand-card .name { font-family: var(--serif); font-weight: 700; font-size: 1.1rem; }
.brand-card .tagline { color: var(--ink-3); font-size: 0.9rem; }
.brand-card.featured { border: 2px solid var(--gold); }
.alert { padding: 12px 16px; border-radius: 2px; margin-bottom: 16px; }
.alert.success { background: rgba(47,91,58,0.08); color: var(--verified); border: 1px solid rgba(47,91,58,0.2); }

/* ============================================================
 * Brand Trust Page — Mobile Responsive Overrides
 * 對應 design/project/src/trust-page.jsx TrustPageMobile (351-479)
 *
 * Strategy: desktop inline styles already set 1.15fr/1fr grid, 82px
 * headline, 220px countdown, side CTA pane. When viewport < 768px we
 * override using attribute selectors anchored on .brand-trust-page
 * so we don't have to touch every inline style in the Blade view.
 * ============================================================ */
@media (max-width: 768px) {
  /* outer grid: 2-col → 1-col */
  .brand-trust-page .brand-trust-grid {
    grid-template-columns: 1fr !important;
  }

  /* left identity pane: smaller padding, thinner border on bottom not right */
  .brand-trust-page .brand-trust-left {
    padding: 20px 20px 18px !important;
    border-right: 0 !important;
    border-bottom: 1px solid var(--line-2) !important;
  }

  /* brand headline 82 → 52 */
  .brand-trust-page .brand-trust-headline {
    font-size: 52px !important;
  }

  /* 3 fact pills — tighter padding & smaller font to fit 3 columns on narrow screens */
  .brand-trust-page .brand-trust-pills {
    grid-template-columns: 1fr 1fr 1fr !important;
    gap: 6px !important;
  }
  .brand-trust-page .brand-trust-pills button {
    padding: 8px 8px !important;
    gap: 4px !important;
  }
  .brand-trust-page .brand-trust-pills .pill-icon {
    font-size: 13px !important;
  }
  .brand-trust-page .brand-trust-pills .pill-label {
    font-size: 8px !important;
  }
  .brand-trust-page .brand-trust-pills .pill-value {
    font-size: 11px !important;
  }
  .brand-trust-page .brand-trust-pills .pill-toggle {
    display: none !important;
  }

  /* right CTA pane becomes bottom sheet: no min-height, stacked buttons */
  .brand-trust-page .brand-trust-right {
    padding: 22px 20px 26px !important;
    min-height: 0 !important;
    text-align: center !important;
  }
  .brand-trust-page .brand-trust-right-head {
    justify-content: center !important;
    font-size: 9px !important;
    margin-bottom: 10px !important;
  }
  .brand-trust-page .brand-trust-countdown {
    font-size: 92px !important;
  }
  .brand-trust-page .brand-trust-ready-headline {
    font-size: 16px !important;
    margin-bottom: 16px !important;
  }
  .brand-trust-page .brand-trust-enter-btn {
    display: block !important;
    width: 100% !important;
    padding: 14px 0 !important;
    font-size: 16px !important;
    letter-spacing: 0.25em !important;
  }
  .brand-trust-page .brand-trust-right-foot {
    font-size: 9px !important;
    flex-direction: column !important;
    gap: 4px !important;
    align-items: center !important;
    padding-top: 12px !important;
  }

  /* drawer: cover entire viewport on mobile */
  .brand-trust-page .brand-trust-drawer {
    position: fixed !important;
    inset: 0 !important;
    right: 0 !important;
    padding: 16px 18px 22px !important;
    border-right: 0 !important;
    z-index: 1000 !important;
  }

  /* registration summary inside verify panel: 2-col info → 1-col via wrap */
  .brand-trust-page .brand-trust-reg-grid {
    grid-template-columns: 1fr !important;
  }

  /* trend bars height shrink */
  .brand-trust-page .brand-trust-bars {
    height: 44px !important;
  }
}

