/* Hostcierge — root teaser. Design tokens mirror tamarindo/buenosaires landing sites. */

:root {
  --bg: #f7f6f2;
  --surface: #f9f8f5;
  --surface-alt: #fbfbf9;
  --border: #d4d1ca;
  --ink: #28251d;
  --ink-body: #4a4842;
  --ink-muted: #7a7974;
  --accent: #01696f;
  --accent-hover: #0c4e54;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  position: relative;
  background: var(--bg);
  color: var(--ink);
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: 'kern' 1;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: 'Instrument Serif', Georgia, serif;
  font-weight: 400;
  line-height: 1.03;
  letter-spacing: -0.015em;
}

p {
  margin: 0;
}

a {
  color: inherit;
}

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

::selection {
  background: #bce2e7;
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.wrap {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  padding-inline: 22px;
}

@media (min-width: 768px) {
  .wrap {
    padding-inline: 40px;
  }
}

/* ---------- Reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 700ms var(--ease), transform 700ms var(--ease);
}

.reveal.is-in {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  html {
    scroll-behavior: auto;
  }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 88px 0 72px;
}

.mark {
  display: block;
  width: 46px;
  height: 46px;
  color: var(--accent);
  margin-bottom: 46px;
}

.hero h1 {
  font-size: clamp(4.4rem, 13vw, 8.75rem);
  margin-bottom: 0.18em;
}

.hero-sub {
  font-family: 'Instrument Serif', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.45rem, 3.6vw, 2.15rem);
  line-height: 1.22;
  letter-spacing: -0.01em;
  color: var(--ink);
  max-width: 22ch;
}

.hero-body {
  margin-top: 30px;
  max-width: 58ch;
  color: var(--ink-body);
}

.hero-cue {
  margin-top: 52px;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-muted);
}

.hero-cue::after {
  content: '';
  flex: 1;
  max-width: 120px;
  height: 1px;
  background: var(--border);
}

/* ---------- Market cards ---------- */
.markets {
  padding-bottom: 108px;
}

.market-grid {
  display: grid;
  gap: 22px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .market-grid {
    grid-template-columns: 1fr 1fr;
    gap: 26px;
  }
}

.card {
  position: relative;
  display: block;
  overflow: hidden;
  text-decoration: none;
  background: #1b1a17;
  aspect-ratio: 4 / 5;
  min-height: 420px;
}

@media (min-width: 768px) {
  .card {
    aspect-ratio: 3 / 4;
    min-height: 0;
  }
}

.card-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 500ms var(--ease);
}

.card-scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(14, 16, 15, 0.9) 0%,
    rgba(14, 16, 15, 0.7) 38%,
    rgba(14, 16, 15, 0.24) 66%,
    rgba(14, 16, 15, 0.08) 100%
  );
  transition: opacity 500ms var(--ease);
  opacity: 1;
}

.card:hover .card-img,
.card:focus-visible .card-img {
  transform: scale(1.03);
}

.card:hover .card-scrim,
.card:focus-visible .card-scrim {
  opacity: 1;
  background: linear-gradient(
    to top,
    rgba(10, 12, 11, 0.92) 0%,
    rgba(10, 12, 11, 0.68) 34%,
    rgba(10, 12, 11, 0.26) 64%,
    rgba(10, 12, 11, 0.12) 100%
  );
}

.card-body {
  position: relative;
  text-shadow: 0 1px 12px rgba(10, 12, 11, 0.45);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px 26px 30px;
}

@media (min-width: 768px) {
  .card-body {
    padding: 38px 34px 34px;
  }
}

.card-kicker {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: #8fd3d8;
  margin-bottom: 16px;
}

.card h2 {
  font-size: clamp(2rem, 5.2vw, 2.65rem);
  color: #fff;
  margin-bottom: 12px;
}

.card-sub {
  color: rgba(255, 255, 255, 0.82);
  font-size: 16px;
  line-height: 1.5;
  max-width: 34ch;
}

.cta {
  display: inline-block;
  text-shadow: none;
  align-self: flex-start;
  margin-top: 26px;
  padding: 13px 22px;
  background: var(--accent);
  color: #fff;
  font-size: 14.5px;
  font-weight: 500;
  letter-spacing: 0.005em;
  text-decoration: none;
  transition: transform 320ms var(--ease), background-color 320ms var(--ease),
    box-shadow 320ms var(--ease);
}

.card:hover .cta,
.card:focus-visible .cta {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(6, 30, 32, 0.36);
}

.cta-arrow {
  display: inline-block;
  transition: transform 320ms var(--ease);
}

.card:hover .cta-arrow {
  transform: translateX(3px);
}

/* ---------- Language toggle ---------- */
.lang {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--surface-alt);
}

@media (min-width: 768px) {
  .lang {
    top: 26px;
    right: 40px;
  }
}

.lang-btn {
  appearance: none;
  border: 0;
  cursor: pointer;
  padding: 5px 11px;
  border-radius: 999px;
  background: transparent;
  font-family: inherit;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.09em;
  color: var(--ink-muted);
  transition: color 200ms var(--ease), background-color 200ms var(--ease);
}

.lang-btn:hover {
  color: var(--ink);
}

.lang-btn.is-on {
  background: var(--accent);
  color: #f7f6f2;
}

/* ---------- "See how it works" showcase ---------- */
.show {
  border-top: 1px solid var(--border);
  padding: 82px 0 92px;
  overflow: hidden;
}

@media (min-width: 900px) {
  .show {
    padding: 108px 0 120px;
  }
}

.wrap--wide {
  max-width: 1280px;
}

.show-kicker {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 18px;
}

.show-title {
  font-size: clamp(2.4rem, 6vw, 3.9rem);
}

.show-lead {
  margin-top: 22px;
  max-width: 46ch;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink-body);
}

.show-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  margin-top: 66px;
}

@media (min-width: 900px) {
  .show-row {
    grid-template-columns: minmax(0, 1.82fr) minmax(0, 1fr);
    align-items: center;
    gap: 56px;
    margin-top: 118px;
  }
  .show-row--flip {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.82fr);
  }
  .show-row--flip .show-mock {
    grid-column: 2;
    grid-row: 1;
  }
  .show-row--flip .show-copy {
    grid-column: 1;
    grid-row: 1;
  }
}

.show-mock {
  min-width: 0;
}

.show-num {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 14px;
}

.show-copy h3 {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: clamp(1.7rem, 3.4vw, 2.3rem);
  line-height: 1.08;
  color: var(--ink);
}

.show-copy p:last-child {
  margin-top: 16px;
  color: var(--ink-body);
  font-size: 16.5px;
  line-height: 1.55;
  max-width: 40ch;
}

.show-note {
  margin-top: 46px;
  font-size: 12px;
  color: var(--ink-muted);
}

/* ---------- How it works ---------- */
.how {
  border-top: 1px solid var(--border);
  padding: 76px 0 84px;
}

.how-head {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink-muted);
  margin-bottom: 46px;
}

.how-grid {
  display: grid;
  gap: 44px;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .how-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 56px;
  }
}

.how-num {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 1.5rem;
  color: var(--accent);
  font-variant-numeric: tabular-nums;
  display: block;
  margin-bottom: 14px;
}

.how-col h3 {
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.005em;
  line-height: 1.4;
  color: var(--ink);
  margin-bottom: 8px;
}

.how-col p {
  color: var(--ink-body);
  font-size: 16.5px;
  max-width: 32ch;
}

/* ---------- Footer ---------- */
footer {
  border-top: 1px solid var(--border);
  padding: 30px 0 44px;
  font-size: 14px;
  color: var(--ink-muted);
}

.foot-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 26px;
  align-items: baseline;
  justify-content: space-between;
}

.foot-links {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.foot-links a {
  text-decoration: none;
  color: var(--ink-body);
  transition: color 200ms var(--ease);
}

.foot-links a:hover {
  color: var(--accent);
}

.foot-legal {
  margin-top: 26px;
  text-align: center;
  font-size: 13px;
  color: var(--ink-muted);
}

/* ============================================================
   Hostcierge — product dashboard mockup
   Shared verbatim across hostcierge.app (static) and the two
   Vite/React market sites. Plain CSS, brand tokens only.
   ============================================================ */

.dashfr {
  display: grid;
  grid-template-columns: 198px minmax(0, 1fr);
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(40, 37, 29, 0.05), 0 22px 48px -20px rgba(40, 37, 29, 0.24);
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  text-align: left;
  line-height: 1.45;
  user-select: none;
}

/* ---------- Sidebar ---------- */
.dashfr-side {
  display: flex;
  flex-direction: column;
  gap: 22px;
  padding: 16px 12px 14px;
  background: var(--surface-alt, #fbfbf9);
  border-right: 1px solid var(--border);
  min-height: 460px;
}

.dashfr-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 4px 8px 0;
  color: var(--ink);
}

.dashfr-brand svg {
  width: 17px;
  height: 17px;
  color: var(--accent);
  flex: none;
}

.dashfr-brand span {
  font-family: 'Instrument Serif', Georgia, serif;
  font-size: 16px;
  letter-spacing: -0.01em;
  line-height: 1;
}

.dashfr-nav {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.dashfr-navitem {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 8px 10px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--ink-body);
  white-space: nowrap;
}

.dashfr-navitem svg {
  width: 15px;
  height: 15px;
  flex: none;
  color: var(--ink-muted);
}

.dashfr-navitem.is-active {
  background: rgba(1, 105, 111, 0.08);
  color: var(--accent);
  font-weight: 500;
}

.dashfr-navitem.is-active svg {
  color: var(--accent);
}

.dashfr-side-foot {
  margin-top: auto;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 8px 2px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--ink-body);
}

/* ---------- Avatars ---------- */
.dashfr-av {
  display: grid;
  place-items: center;
  flex: none;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: var(--accent);
  color: #f7f6f2;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.dashfr-av--sm {
  width: 24px;
  height: 24px;
  font-size: 11px;
  font-weight: 600;
}

.dashfr-av--tile {
  width: 30px;
  height: 30px;
  font-size: 12px;
  border-radius: 8px;
  background: rgba(1, 105, 111, 0.1);
  color: var(--accent);
}

/* ---------- Top strip ---------- */
.dashfr-main {
  min-width: 0;
}

.dashfr-strip {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 104px;
  padding: 18px 22px;
  background: linear-gradient(105deg, #e8e5dd 0%, #efece3 62%, #f4f2eb 100%);
  border-bottom: 1px solid var(--border);
}

.dashfr-hey {
  margin: 0;
  font-size: 12.5px;
  font-weight: 500;
  color: var(--accent);
  letter-spacing: 0.01em;
}

.dashfr-headline {
  margin: 2px 0 0;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.32;
  color: var(--ink);
  max-width: 34ch;
}

.dashfr-search {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  flex: none;
  width: 188px;
  padding: 8px 11px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.82);
  font-size: 12.5px;
  color: var(--ink-muted);
}

.dashfr-search svg {
  width: 13px;
  height: 13px;
  flex: none;
}

/* ---------- Tabs ---------- */
.dashfr-tabs {
  display: flex;
  gap: 22px;
  padding: 0 22px;
  border-bottom: 1px solid var(--border);
}

.dashfr-tab {
  position: relative;
  padding: 13px 0 11px;
  font-size: 13.5px;
  color: var(--ink-muted);
  white-space: nowrap;
}

.dashfr-tab.is-active {
  color: var(--accent);
  font-weight: 500;
}

.dashfr-tab.is-active::after {
  content: '';
  position: absolute;
  inset: auto 0 -1px 0;
  height: 2px;
  background: var(--accent);
}

/* ---------- Body ---------- */
.dashfr-body {
  padding: 22px 22px 26px;
}

.dashfr-h {
  margin: 0;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 21px;
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.2;
  color: var(--ink);
}

.dashfr-sub {
  margin: 4px 0 0;
  font-size: 13px;
  color: var(--ink-muted);
}

.dashfr-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.dashfr-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 11px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--surface-alt, #fbfbf9);
  font-size: 12.5px;
  color: var(--ink-body);
  white-space: nowrap;
}

.dashfr-chip svg {
  width: 11px;
  height: 11px;
  color: var(--ink-muted);
  flex: none;
}

.dashfr-chip--cat {
  border-radius: 999px;
  padding: 5px 12px;
  background: #ffffff;
  font-size: 12px;
}

.dashfr-chip--cat.is-on {
  background: var(--accent);
  border-color: var(--accent);
  color: #f7f6f2;
  font-weight: 500;
}

.dashfr-chips--cat {
  margin-top: 10px;
  flex-wrap: nowrap;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(to right, #000 86%, transparent 100%);
  mask-image: linear-gradient(to right, #000 86%, transparent 100%);
}

.dashfr-chip--cat {
  flex: 0 0 auto;
}

.dashfr-chip--src {
  align-self: flex-start;
  max-width: 100%;
  white-space: normal;
  overflow-wrap: anywhere;
  line-height: 1.35;
  border-radius: 999px;
  background: rgba(1, 105, 111, 0.07);
  border-color: rgba(1, 105, 111, 0.16);
  color: var(--accent);
  font-weight: 500;
  font-size: 11.5px;
  padding: 4px 10px;
}

/* ---------- Card grid ---------- */
.dashfr-cards {
  display: grid;
  gap: 14px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 18px;
}

.dashfr-card {
  display: flex;
  flex-direction: column;
  border: 1px solid #eae7df;
  border-radius: 14px;
  background: #ffffff;
  overflow: hidden;
}

.dashfr-thumb {
  position: relative;
  aspect-ratio: 16 / 9;
  background: var(--surface);
}

/* Draft listing with no photo uploaded yet — soft on-brand panel + glyph. */
.dashfr-thumb--empty {
  display: grid;
  place-items: center;
  background: linear-gradient(150deg, #eef1ef 0%, #e4ebea 55%, #dfe9e8 100%);
}

.dashfr-thumb--empty svg {
  width: 30px;
  height: 30px;
  color: rgba(1, 105, 111, 0.42);
}

/* Carousel dots inside the photo, as in the product. */
.dashfr-dots {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 5px;
}

.dashfr-dots i {
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
}

.dashfr-dots i:first-child {
  width: 18px;
  background: rgba(255, 255, 255, 0.94);
}

.dashfr-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.dashfr-tag {
  position: absolute;
  top: 9px;
  left: 9px;
  padding: 3px 10px;
  border-radius: 999px;
  background: #ffffff;
  border: 1px solid #e5e1d7;
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.002em;
  color: var(--ink);
}

.dashfr-card-body {
  display: flex;
  flex-direction: column;
  gap: 13px;
  padding: 16px 16px 18px;
  flex: 1;
}

.dashfr-card-title {
  margin: 0;
  font-family: 'DM Sans', system-ui, sans-serif;
  font-size: 16.5px;
  font-weight: 600;
  line-height: 1.28;
  letter-spacing: -0.006em;
  color: var(--ink);
}

.dashfr-meta {
  margin: 0;
  display: grid;
  gap: 9px;
}

.dashfr-meta > div > dt,
.dashfr-meta-label {
  margin: 0;
  font-size: 12px;
  color: #8a8883;
}

.dashfr-meta > div > dd,
.dashfr-meta-value {
  margin: 2px 0 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

/* ---------- Status pills ---------- */
/* Filled status pills, white text — matches the product UI. */
.dashfr-pill {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  margin-top: auto;
  padding: 4px 11px;
  border-radius: 7px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.004em;
  color: #ffffff;
}

.dashfr-pill--ok {
  background: #437a22;
}

.dashfr-pill--wait {
  background: #b8860b;
}

.dashfr-pill--draft {
  background: #9c9a94;
}

.dashfr-amt {
  align-self: flex-start;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(1, 105, 111, 0.09);
  color: var(--accent);
  font-size: 13px;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* ---------- Referral / conversion rows (no photo) ---------- */
.dashfr-card--flat .dashfr-card-body {
  gap: 11px;
  padding: 16px;
}

.dashfr-who {
  display: flex;
  align-items: center;
  gap: 9px;
}

.dashfr-who-name {
  margin: 0;
  font-size: 14.5px;
  font-weight: 600;
  color: var(--ink);
}

.dashfr-rule {
  height: 1px;
  background: var(--border);
  margin: 1px 0 0;
}

.dashfr-statsrow {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 10px;
  align-items: baseline;
  margin-top: 16px;
  padding-top: 13px;
  border-top: 1px solid var(--border);
  font-size: 12.5px;
  color: var(--ink-muted);
}

.dashfr-statsrow b {
  font-weight: 600;
  color: var(--ink-body);
  font-variant-numeric: tabular-nums;
}

/* ---------- RTL ---------- */
[dir='rtl'] .dashfr-side {
  border-right: 0;
  border-left: 1px solid var(--border);
}

[dir='rtl'] .dashfr-search {
  margin-left: 0;
  margin-right: auto;
}

[dir='rtl'] .dashfr-tag {
  left: auto;
  right: 9px;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .dashfr {
    grid-template-columns: minmax(0, 1fr);
    border-radius: 12px;
  }
  .dashfr-side {
    display: none;
  }
  .dashfr-strip {
    min-height: 0;
    padding: 15px 16px;
    gap: 11px;
  }
  .dashfr-search {
    display: none;
  }
  .dashfr-headline {
    font-size: 15.5px;
    max-width: 30ch;
  }
  .dashfr-av {
    width: 36px;
    height: 36px;
    font-size: 14px;
  }
  .dashfr-tabs,
  .dashfr-body {
    padding-inline: 16px;
  }
  .dashfr-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .dashfr-thumb {
    aspect-ratio: 16 / 9;
  }
  .dashfr-h {
    font-size: 19px;
  }
}

/* ---------- Container-based compaction (narrow columns) ---------- */
.dashfr-shell {
  container-type: inline-size;
  width: 100%;
}

/* Narrow container (root editorial column): compact the card type one step. */
@container (max-width: 860px) {
  .dashfr-card-title {
    font-size: 14.5px;
  }

  .dashfr-card-body {
    padding: 13px 13px 15px;
    gap: 11px;
  }

  .dashfr-meta > div > dt,
  .dashfr-meta-label {
    font-size: 11px;
  }

  .dashfr-meta > div > dd,
  .dashfr-meta-value {
    font-size: 13px;
  }

  .dashfr-tag {
    font-size: 11px;
    padding: 3px 9px;
  }

  .dashfr-pill {
    font-size: 11.5px;
    padding: 3px 9px;
  }
}

@container (max-width: 700px) {
  .dashfr {
    grid-template-columns: 1fr;
  }
  .dashfr-side {
    display: none;
  }
  .dashfr-search {
    display: none;
  }
  .dashfr-strip {
    min-height: 0;
    padding: 15px 16px;
  }
  .dashfr-cards {
    grid-template-columns: 1fr;
  }
  .dashfr-thumb {
    aspect-ratio: 16 / 9;
  }
}
