@import url('https://fonts.googleapis.com/css2?family=Bree+Serif&family=Nunito+Sans:wght@500;700;800&display=swap');

:root {
  --bg: #f4f1e9;
  --surface: #fffdf8;
  --surface-2: #fff8ee;
  --surface-glass: rgba(255, 252, 246, 0.72);
  --ink: #1e2b27;
  --muted: #607069;
  --line: #ddd4c4;
  --brand: #1e6f59;
  --brand-2: #234f87;
  --brand-soft: #d9efe8;
  --blue-soft: #ebf2ff;
  --accent: #bf5638;
  --gold: #b59143;
  --chip: #efe9dc;
  --chip-active: #244f86;
  --chip-active-ink: #f2f7ff;
  --hero-shadow: 0 24px 58px rgba(31, 39, 31, 0.15);
  --radius-xl: 24px;
  --radius-lg: 18px;
  --radius-md: 14px;
  --shadow-soft: 0 12px 28px rgba(36, 45, 40, 0.12);
  --shadow-card: 0 16px 34px rgba(28, 40, 34, 0.13);
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(circle at 20% -30%, #fff4d5 0%, transparent 42%),
    radial-gradient(circle at 92% 0%, #d7ece3 0%, transparent 32%),
    linear-gradient(180deg, #f7f4ed 0%, #f1eee5 100%);
  color: var(--ink);
  font-family: 'Nunito Sans', 'Trebuchet MS', 'Gill Sans', sans-serif;
}

.hero {
  position: relative;
  overflow: hidden;
  padding: calc(18px + env(safe-area-inset-top, 0px)) 18px 22px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 18%, rgba(255, 240, 195, 0.85), transparent 28%),
    radial-gradient(circle at 84% 16%, rgba(198, 230, 219, 0.78), transparent 24%),
    linear-gradient(135deg, rgba(255, 250, 241, 0.96), rgba(247, 240, 227, 0.88) 45%, rgba(228, 239, 250, 0.92));
  transform: scale(1.05);
}

.hero-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(10px);
  opacity: 0.7;
  pointer-events: none;
}

.hero-orb-a {
  width: 220px;
  height: 220px;
  top: 18px;
  right: min(8vw, 110px);
  background: radial-gradient(circle, rgba(35, 79, 135, 0.18), rgba(35, 79, 135, 0));
}

.hero-orb-b {
  width: 260px;
  height: 260px;
  left: min(5vw, 60px);
  bottom: -80px;
  background: radial-gradient(circle, rgba(191, 86, 56, 0.18), rgba(191, 86, 56, 0));
}

.hero-shell {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  align-items: center;
  gap: 28px;
  padding: 30px;
  background: linear-gradient(180deg, rgba(255, 253, 248, 0.92), rgba(255, 249, 238, 0.8));
  border: 1px solid rgba(216, 205, 185, 0.8);
  border-radius: 34px;
  box-shadow: var(--hero-shadow);
  backdrop-filter: blur(12px);
}

.hero-copy {
  max-width: 600px;
}

.brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  object-fit: cover;
  background: #fff;
  border: 1px solid rgba(255, 255, 255, 0.75);
  box-shadow: 0 14px 26px rgba(23, 40, 34, 0.14);
}

.eyebrow {
  margin: 0;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 800;
  color: #255d4e;
  font-size: 0.72rem;
}

h1 {
  margin: 4px 0 0;
  font-family: 'Bree Serif', 'Palatino Linotype', serif;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1.02;
}

.hero-subtitle {
  margin: 20px 0 0;
  font-weight: 800;
  font-size: clamp(1.05rem, 2vw, 1.32rem);
  color: #253831;
}

.hero-lead {
  margin: 14px 0 0;
  color: var(--ink);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 56ch;
}

.hero-badges {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-badge {
  padding: 8px 13px;
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.88);
  border: 1px solid rgba(212, 203, 184, 0.92);
  box-shadow: 0 10px 18px rgba(37, 50, 42, 0.08);
  color: #26453b;
  font-size: 0.82rem;
  font-weight: 800;
}

.hero-cta-row {
  margin-top: 22px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-cta {
  text-decoration: none;
  padding: 13px 18px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 0.95rem;
  box-shadow: 0 14px 22px rgba(28, 40, 34, 0.1);
  transition: transform 0.16s ease, box-shadow 0.16s ease;
}

.hero-cta:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 28px rgba(28, 40, 34, 0.14);
}

.hero-cta-main {
  color: #f3fff8;
  background: linear-gradient(135deg, #1a6a55, #1f7d62 60%, #2a926d);
}

.hero-cta-soft {
  color: #214f87;
  background: rgba(237, 243, 255, 0.96);
  border: 1px solid #cfdbef;
}

.hero-note {
  margin: 18px 0 0;
  color: #5d645f;
  font-weight: 700;
  line-height: 1.55;
  max-width: 60ch;
}

.hero-signup-bonus {
  margin-top: 14px;
  display: grid;
  gap: 7px;
}

.hero-signup-bonus-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  padding: 9px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff4d7, #ffe8ba);
  border: 1px solid #e7c97a;
  color: #8a5720;
  font-size: 0.84rem;
  font-weight: 900;
  box-shadow: 0 10px 18px rgba(145, 96, 24, 0.12);
}

.hero-signup-bonus p {
  margin: 0;
  color: #6c6459;
  font-size: 0.92rem;
  line-height: 1.5;
}

.hero-visual {
  position: relative;
  min-height: 420px;
}

.hero-illustration {
  position: absolute;
  inset: 28px 24px 10px 18px;
  border-radius: 34px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.45), rgba(255, 248, 235, 0.14));
  border: 1px solid rgba(255, 255, 255, 0.42);
  overflow: hidden;
}

.hero-illustration::before {
  content: '';
  position: absolute;
  inset: 18px 22px auto auto;
  width: 110px;
  height: 110px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 235, 188, 0.42), rgba(255, 235, 188, 0));
}

.hero-illustration svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero-visual-card {
  position: absolute;
  top: 0;
  right: 18px;
  width: min(100%, 320px);
  padding: 22px;
  border-radius: 26px;
  background: linear-gradient(160deg, rgba(35, 79, 135, 0.94), rgba(25, 102, 83, 0.92));
  color: #f6fbff;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: 0 26px 44px rgba(26, 44, 62, 0.26);
}

.hero-visual-kicker {
  margin: 0;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(245, 249, 255, 0.76);
}

.hero-visual-card h2 {
  margin: 12px 0 10px;
  font-family: 'Bree Serif', 'Palatino Linotype', serif;
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.1;
}

.hero-visual-card p {
  margin: 0;
  line-height: 1.55;
  color: rgba(246, 251, 255, 0.9);
}

.hero-mini-grid {
  position: absolute;
  inset: 110px 0 0 0;
}

.hero-mini-card {
  position: absolute;
  width: 200px;
  background: var(--surface-glass);
  border: 1px solid rgba(219, 208, 190, 0.88);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 36px rgba(34, 45, 37, 0.16);
  backdrop-filter: blur(10px);
}

.hero-mini-card-a {
  left: 8px;
  top: 76px;
  transform: rotate(-9deg);
}

.hero-mini-card-b {
  left: 154px;
  top: 184px;
  z-index: 2;
  transform: rotate(6deg);
}

.hero-mini-card-c {
  right: 12px;
  top: 116px;
  transform: rotate(-4deg);
}

.hero-mini-card-d {
  left: 92px;
  top: 14px;
  z-index: 1;
  transform: rotate(8deg);
}

.hero-mini-media {
  aspect-ratio: 4 / 5;
  background: linear-gradient(145deg, #ede1cf, #faf4ea);
}

.hero-mini-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-mini-body {
  padding: 12px 13px 14px;
}

.hero-mini-title,
.hero-mini-meta {
  margin: 0;
}

.hero-mini-title {
  font-weight: 900;
  font-size: 0.9rem;
  color: #203128;
}

.hero-mini-meta {
  margin-top: 4px;
  color: #597068;
  font-size: 0.76rem;
  font-weight: 700;
}

.layout {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 16px 32px;
}

.discover-panel {
  margin-top: -18px;
  position: relative;
  z-index: 2;
  padding: 18px;
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 253, 249, 0.92), rgba(255, 250, 243, 0.86));
  border: 1px solid rgba(216, 205, 185, 0.78);
  box-shadow: var(--hero-shadow);
  backdrop-filter: blur(12px);
}

.discover-heading {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}

.discover-kicker {
  margin: 0;
  color: #8a5a29;
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.discover-heading h2 {
  margin: 0;
  font-family: 'Bree Serif', 'Palatino Linotype', serif;
  font-size: clamp(1.35rem, 2.2vw, 1.9rem);
  line-height: 1.15;
}

.discover-text {
  margin: 0;
  color: #59675e;
  line-height: 1.55;
  max-width: 72ch;
}

.toolbar {
  display: grid;
  gap: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.72), rgba(255, 248, 238, 0.82));
  border: 1px solid rgba(219, 208, 190, 0.88);
  border-radius: 24px;
  padding: 16px;
  box-shadow: 0 16px 28px rgba(36, 45, 40, 0.08);
}

.search-wrap label {
  display: block;
  margin: 0 0 8px;
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--muted);
}

.search-input-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(217, 207, 191, 0.9);
  border-radius: 18px;
  padding: 0 15px;
  min-height: 58px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.search-icon {
  color: #5b7fa6;
  font-weight: 900;
  font-size: 1rem;
  transform: rotate(45deg);
}

.search-wrap input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  padding: 16px 0;
  font: inherit;
  font-size: 1rem;
}

.filter-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.chip {
  border: 1px solid #dbd2c2;
  border-radius: 999px;
  padding: 10px 14px;
  background: rgba(245, 239, 226, 0.92);
  color: #30362f;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.chip:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(41, 54, 46, 0.12);
}

.chip.is-active {
  background: linear-gradient(135deg, var(--chip-active), #2f68a7);
  color: var(--chip-active-ink);
  border-color: #244f86;
  box-shadow: 0 12px 20px rgba(36, 79, 134, 0.2);
}

.chip-reset {
  background: rgba(255, 255, 255, 0.86);
  color: #33567d;
  border-color: #d4ddef;
}

.status-row {
  margin: 14px 2px 0;
  padding: 0 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--muted);
  font-weight: 700;
}

.status-row p {
  margin: 0;
}

#resultsMeta {
  font-size: 0.98rem;
  font-weight: 900;
  color: #26453a;
}

.filter-hint {
  color: #8a4e2d;
  font-weight: 800;
  font-size: 0.9rem;
}

.pagination-wrap {
  margin: 14px 0 0;
  padding: 12px 14px;
  border: 1px solid rgba(221, 210, 192, 0.92);
  border-radius: 18px;
  background: rgba(255, 253, 248, 0.92);
  box-shadow: 0 12px 22px rgba(31, 44, 35, 0.08);
}

.pagination-wrap-bottom {
  margin-top: 12px;
}

.pagination-summary {
  margin: 0;
  color: #566861;
  font-size: 0.88rem;
  font-weight: 800;
}

.pagination-controls {
  margin-top: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.pagination-btn {
  border: 1px solid #d7cdbd;
  border-radius: 999px;
  background: linear-gradient(180deg, #fcf7ed, #f2eadb);
  color: #274338;
  font: inherit;
  font-weight: 800;
  font-size: 0.84rem;
  padding: 8px 13px;
  min-width: 38px;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.pagination-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 12px rgba(37, 54, 44, 0.14);
}

.pagination-btn.is-active {
  background: linear-gradient(135deg, #224f85, #2d67aa);
  border-color: #224f85;
  color: #f4f8ff;
}

.pagination-btn[disabled] {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.pagination-ellipsis {
  color: #7a6c57;
  font-weight: 800;
  padding: 0 5px;
}

.pagination-mobile-indicator {
  font-weight: 900;
  color: #415c7f;
  background: #edf3ff;
  border: 1px solid #d4e0f3;
  border-radius: 999px;
  padding: 8px 14px;
}

.gallery {
  display: grid;
  gap: 14px;
  margin-top: 12px;
  grid-template-columns: repeat(auto-fill, minmax(205px, 1fr));
}

.card {
  border: 1px solid #d8d0c1;
  background: var(--surface);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  animation: cardIn 0.35s ease both;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 38px rgba(25, 39, 30, 0.17);
  border-color: #c7bca9;
}

.card-media {
  width: 100%;
  aspect-ratio: 4 / 5;
  background: linear-gradient(145deg, #ece3d4, #f7f2e6);
  display: grid;
  place-items: center;
  position: relative;
}

.card-media::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 44%;
  background: linear-gradient(180deg, transparent 0%, rgba(32, 36, 35, 0.28) 100%);
  pointer-events: none;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-media .fallback {
  color: #7d7362;
  font-size: 0.9rem;
  font-weight: 800;
}

.card-body {
  padding: 11px;
}

.card-title {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.25;
  font-weight: 800;
}

.card-publisher {
  margin: 6px 0 0;
  font-size: 0.85rem;
  color: var(--muted);
}

.card-meta {
  margin: 8px 0 0;
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.pill {
  background: var(--brand-soft);
  color: #1b5443;
  border-radius: 999px;
  border: 1px solid #c6e5d8;
  padding: 4px 9px;
  font-size: 0.73rem;
  font-weight: 800;
}

.card-footer {
  margin-top: 10px;
  background: linear-gradient(180deg, #fff4dd, #ffeed0);
  border: 1px solid #ecd6aa;
  border-radius: 10px;
  padding: 7px 8px;
  font-size: 0.78rem;
  color: #925022;
  font-weight: 800;
}

.empty-state {
  margin: 16px auto 4px;
  max-width: 820px;
  text-align: center;
  background: var(--surface-2);
  border: 1px solid #d8ccb3;
  border-radius: var(--radius-lg);
  padding: 20px 14px;
  box-shadow: var(--shadow-soft);
}

.empty-state h2 {
  margin: 0;
  font-family: 'Bree Serif', 'Palatino Linotype', serif;
  font-size: 1.26rem;
}

.empty {
  margin: 0;
  padding: 16px 12px;
  border: 1px dashed #d8ccb5;
  border-radius: 12px;
  background: #fff8ec;
  color: #6e5840;
  font-weight: 700;
}

.empty-state p {
  margin: 9px 0 0;
  color: #596960;
  line-height: 1.45;
}

.empty-reset {
  margin-top: 13px;
  border: 0;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--brand), #258468);
  color: #f4fffb;
  font: inherit;
  font-weight: 900;
  padding: 10px 14px;
  cursor: pointer;
}

.modal {
  position: fixed;
  inset: 0;
  background: rgba(11, 17, 14, 0.56);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 14px;
  z-index: 1000;
}

.modal.is-open { display: flex; }

.modal-panel {
  width: min(540px, 100%);
  background: linear-gradient(180deg, #fffdf8, #fff8ee);
  border: 1px solid #d8ccb6;
  border-radius: 28px;
  padding: 22px;
  position: relative;
  box-shadow: 0 18px 40px rgba(20, 31, 26, 0.32);
}

.modal-close {
  position: absolute;
  top: 8px;
  right: 8px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: 8px;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

.modal-kicker {
  margin: 0;
  color: var(--accent);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
}

.modal-panel h2 {
  margin: 8px 0 8px;
  font-family: 'Bree Serif', 'Palatino Linotype', serif;
}

.modal-text {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.modal-bonus {
  margin-top: 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 12px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: linear-gradient(135deg, #fff7df, #ffefc6);
  border: 1px solid #ebd296;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.modal-bonus-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: linear-gradient(135deg, #c89632, #edc96c);
  color: #fff9ea;
  font-size: 1.45rem;
  font-weight: 900;
  box-shadow: 0 10px 18px rgba(159, 115, 34, 0.18);
}

.modal-bonus-copy p {
  margin: 0;
}

.modal-bonus-title {
  color: #7d4f1b;
  font-size: 1rem;
  font-weight: 900;
}

.modal-bonus-subtitle {
  margin-top: 2px;
  color: #8f673b;
  font-size: 0.84rem;
  font-weight: 800;
}

.modal-bonus-note {
  margin: 12px 0 0;
  color: #5c655d;
  line-height: 1.5;
}

.modal-actions {
  margin-top: 14px;
  display: grid;
  gap: 8px;
}

.cta {
  text-decoration: none;
  text-align: center;
  border-radius: 10px;
  padding: 10px 12px;
  font-weight: 900;
}

.cta-primary {
  background: linear-gradient(135deg, var(--brand), #238368);
  color: #f4fffb;
}

.cta-ghost {
  border: 1px solid #d0d7e6;
  color: var(--ink);
  background: #f6f9ff;
}

@keyframes cardIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (min-width: 800px) {
  .discover-panel {
    padding: 22px;
  }

  .toolbar {
    grid-template-columns: minmax(0, 1.3fr) auto;
    align-items: end;
  }

  .modal-actions {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 799px) {
  .hero {
    padding: calc(12px + env(safe-area-inset-top, 0px)) 12px 18px;
  }

  .hero-panel {
    grid-template-columns: 1fr;
    padding: 20px 18px;
    gap: 20px;
    border-radius: 26px;
  }

  .hero-copy {
    max-width: none;
    text-align: center;
  }

  .brand-row {
    justify-content: center;
  }

  .brand-logo {
    width: 52px;
    height: 52px;
  }

  .hero-badges,
  .hero-cta-row {
    justify-content: center;
  }

  .hero-signup-bonus {
    justify-items: center;
  }

  .hero-signup-bonus p {
    text-align: center;
  }

  .hero-visual {
    min-height: 360px;
  }

  .hero-illustration {
    inset: 72px 0 0 0;
    border-radius: 24px;
  }

  .hero-visual-card {
    position: relative;
    top: auto;
    right: auto;
    width: 100%;
    text-align: center;
  }

  .hero-mini-grid {
    position: relative;
    inset: auto;
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .hero-mini-card,
  .hero-mini-card-a,
  .hero-mini-card-b,
  .hero-mini-card-c {
    position: relative;
    width: 100%;
    left: auto;
    right: auto;
    top: auto;
    transform: none;
  }

  .hero-cta {
    width: 100%;
    text-align: center;
  }

  .layout {
    padding: 0 12px 26px;
  }

  .discover-panel {
    margin-top: -8px;
    padding: 16px 14px;
    border-radius: 24px;
  }

  .discover-heading {
    text-align: center;
  }

  .toolbar {
    gap: 14px;
    padding: 14px;
  }

  .modal-panel {
    padding: 20px 16px;
  }

  .modal-bonus {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .modal-bonus-icon {
    margin: 0 auto;
  }

  .filter-wrap {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: thin;
  }

  .status-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .card-body {
    padding: 10px;
  }

  .card-title {
    font-size: 0.94rem;
  }

  .pill {
    font-size: 0.68rem;
  }

  .pagination-wrap {
    padding: 10px 10px;
  }

  .pagination-summary {
    font-size: 0.84rem;
  }

  .pagination-controls {
    justify-content: space-between;
  }

  .pagination-btn {
    padding: 7px 12px;
    min-width: 88px;
  }
}
