:root {
  color-scheme: light dark;
  --rbve-blue: #022169;
  --rbve-red: #ce161a;
  --rbve-grey: #cccaca;
  --rbve-white: #f9f7f4;
  --ink: #06183f;
  --muted: #5c6780;
  --line: rgba(2, 33, 105, 0.14);
  --soft-blue: #e8edf8;
  --soft-red: #fae8e8;
  --surface: rgba(255, 255, 255, 0.86);
  --shadow: 0 18px 45px rgba(2, 33, 105, 0.1);
}

@media (prefers-color-scheme: dark) {
  :root {
    --rbve-blue: #f1f3f5;
    --rbve-red: #ff8589;
    --rbve-grey: #33363b;
    --rbve-white: #111315;
    --ink: #f4f4f5;
    --muted: #b8bcc4;
    --line: rgba(255, 255, 255, 0.16);
    --soft-blue: #1b1d21;
    --soft-red: #2a181a;
    --surface: rgba(28, 30, 34, 0.94);
    --shadow: 0 18px 45px rgba(0, 0, 0, 0.38);
  }
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  min-height: 100%;
  background: var(--rbve-white);
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--ink);
  font-family: Univers, Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--rbve-white);
  font-weight: 430;
}

a {
  color: inherit;
}

button,
input {
  font: inherit;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 16px;
  z-index: 20;
  transform: translateY(-140%);
  border: 2px solid var(--rbve-blue);
  background: #fff;
  color: var(--rbve-blue);
  padding: 10px 12px;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.shell {
  min-height: 100vh;
}

.apps-toolbar {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 30px 0 22px;
  min-width: 0;
}

.category-nav {
  display: flex;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  gap: 8px;
  min-width: 0;
  overflow-x: auto;
  padding: 3px 30px 9px 2px;
  scrollbar-color: var(--rbve-blue) rgba(2, 33, 105, 0.08);
  scrollbar-width: thin;
}

.category-nav.has-right-fade {
  -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 46px), transparent);
  mask-image: linear-gradient(to right, #000 calc(100% - 46px), transparent);
}

.category-nav.has-left-fade {
  -webkit-mask-image: linear-gradient(to right, transparent, #000 46px);
  mask-image: linear-gradient(to right, transparent, #000 46px);
}

.category-nav.has-left-fade.has-right-fade {
  -webkit-mask-image: linear-gradient(to right, transparent, #000 46px, #000 calc(100% - 46px), transparent);
  mask-image: linear-gradient(to right, transparent, #000 46px, #000 calc(100% - 46px), transparent);
}

.category-nav::-webkit-scrollbar {
  height: 4px;
}

.category-nav::-webkit-scrollbar-track {
  background: rgba(2, 33, 105, 0.08);
  border-radius: 999px;
}

.category-nav::-webkit-scrollbar-thumb {
  background: var(--rbve-blue);
  border-radius: 999px;
}

.category-nav::-webkit-scrollbar-thumb:hover {
  background: #00184d;
}

.nav-item {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  border: 1px solid rgba(2, 33, 105, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  color: var(--rbve-blue);
  padding: 0 16px;
  font-weight: 450;
  text-align: center;
  cursor: pointer;
}

.nav-item:hover {
  background: rgba(2, 33, 105, 0.06);
}

.nav-item.active {
  border-color: var(--rbve-blue);
  background: var(--rbve-blue);
  color: var(--rbve-blue);
  color: #fff;
  font-weight: 560;
}

.main {
  width: min(1160px, 100%);
  min-width: 0;
  margin: 0 auto;
  padding: clamp(30px, 4.4vw, 58px);
}

.intro {
  max-width: none;
  min-width: 0;
}

.eyebrow {
  margin: 0 0 8px;
  color: var(--rbve-red);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 8px;
  color: var(--rbve-blue);
  font-family: inherit;
  font-size: clamp(42px, 5.4vw, 64px);
  font-weight: 560;
  line-height: 1.02;
}

.intro-copy {
  margin-bottom: 24px;
  color: var(--rbve-blue);
  font-size: 18px;
  font-weight: 500;
}

.intro-copy time {
  color: inherit;
  font-weight: inherit;
}

.google-search {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  align-items: center;
  gap: 14px;
  width: 100%;
  min-height: 62px;
  border: 2px solid rgba(2, 33, 105, 0.22);
  border-radius: 8px;
  background: #fff;
  padding: 8px 10px 8px 22px;
  box-shadow: 0 12px 34px rgba(2, 33, 105, 0.09);
  min-width: 0;
}

.google-search:focus-within {
  border-color: var(--rbve-blue);
  box-shadow: 0 0 0 4px rgba(2, 33, 105, 0.12), 0 18px 46px rgba(2, 33, 105, 0.12);
}

.google-g {
  width: 28px;
  height: 28px;
}

.google-search input {
  min-width: 0;
  border: 0;
  outline: 0;
  color: var(--ink);
  font-size: 19px;
  background: transparent;
}

.google-search input::placeholder {
  color: #7a8499;
}

.google-search button,
.primary-action {
  border: 0;
  border-radius: 8px;
  background: var(--rbve-blue);
  color: #fff;
  padding: 12px 20px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.google-search button:hover,
.primary-action:hover {
  background: #00184d;
}

.accessibility-panel {
  width: fit-content;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
}

.accessibility-panel summary {
  cursor: pointer;
  color: var(--rbve-blue);
  font-weight: 560;
}

.accessibility-options {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-top: 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 10px;
  box-shadow: 0 10px 24px rgba(2, 33, 105, 0.05);
}

.accessibility-options label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.accessibility-options input {
  width: 16px;
  height: 16px;
  accent-color: var(--rbve-blue);
}

body.a11y-large-text {
  font-size: 112.5%;
}

body.a11y-large-text .google-search input,
body.a11y-large-text .filter-control input {
  font-size: 21px;
}

body.a11y-large-text .nav-item,
body.a11y-large-text .google-search button,
body.a11y-large-text .primary-action,
body.a11y-large-text .text-action,
body.a11y-large-text .show-all-button {
  font-size: 17px;
}

body.a11y-large-text .feature-copy h2,
body.a11y-large-text .section-head h2,
body.a11y-large-text .app-section > h3,
body.a11y-large-text .website-section > h3 {
  font-size: 27px;
}

body.a11y-large-text .feature-copy p:not(.eyebrow) {
  font-size: 18px;
}

body.a11y-large-text .app-main-link h3 {
  font-size: 20px;
}

body.a11y-large-text .app-main-link p {
  font-size: 16px;
}

body.a11y-large-text .website-name {
  font-size: 18px;
}

body.a11y-large-text .website-description,
body.a11y-large-text .accessibility-panel {
  font-size: 15px;
}

body.a11y-dyslexia-font {
  font-family: Verdana, Tahoma, Arial, sans-serif;
  letter-spacing: 0.01em;
}

body.a11y-high-contrast {
  --line: rgba(2, 33, 105, 0.42);
  --muted: #35425e;
  --surface: #fff;
}

body.a11y-high-contrast .app-card,
body.a11y-high-contrast .website-card a,
body.a11y-high-contrast .google-search,
body.a11y-high-contrast .feature,
body.a11y-high-contrast .show-all-button {
  border-width: 2px;
}

body.a11y-high-contrast .app-card-link:focus-visible,
body.a11y-high-contrast .primary-action:focus-visible,
body.a11y-high-contrast .text-action:focus-visible,
body.a11y-high-contrast .nav-item:focus-visible,
body.a11y-high-contrast .google-search button:focus-visible,
body.a11y-high-contrast .show-all-button:focus-visible {
  outline-width: 4px;
}

body.a11y-reduce-motion *,
body.a11y-reduce-motion *::before,
body.a11y-reduce-motion *::after {
  scroll-behavior: auto !important;
  transition-duration: 0.01ms !important;
  animation-duration: 0.01ms !important;
  animation-iteration-count: 1 !important;
}

.feature {
  display: grid;
  grid-template-columns: 132px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  margin: 36px 0 24px;
  border: 1px solid rgba(2, 33, 105, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(120deg, rgba(2, 33, 105, 0.08), rgba(249, 247, 244, 0.94) 50%, rgba(206, 22, 26, 0.08)),
    #fff;
  padding: 22px;
  box-shadow: var(--shadow);
  overflow: hidden;
  min-width: 0;
  touch-action: pan-y;
}

.feature-mark {
  display: grid;
  place-items: center;
  width: 116px;
  height: 116px;
  border-radius: 8px;
  background: var(--app-theme, var(--rbve-blue));
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.04em;
  box-sizing: border-box;
  overflow: hidden;
}

.feature-copy,
.feature-actions,
.section-head,
.app-grid,
.recent-panel,
.app-card {
  min-width: 0;
}

.feature-mark span {
  color: var(--rbve-red);
}

.feature-mark--image {
  background: transparent;
}

.feature-mark img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.feature-mark--contain {
  padding: 0;
}

.feature-mark--contain img {
  object-fit: contain;
}

.feature-copy h2,
.section-head h2,
.app-section > h3 {
  margin-bottom: 8px;
  color: var(--rbve-blue);
  font-size: 24px;
  font-weight: 600;
  line-height: 1.1;
  overflow-wrap: anywhere;
}

.feature-copy p:not(.eyebrow) {
  max-width: 56ch;
  color: var(--muted);
  font-size: 16px;
}

.feature-actions {
  display: grid;
  gap: 10px;
  justify-items: end;
}

.primary-action[aria-disabled="true"] {
  background: rgba(2, 33, 105, 0.12);
  color: var(--rbve-blue);
  cursor: default;
}

.feature-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: -10px 0 24px;
}

.feature-dot {
  width: 9px;
  height: 9px;
  border: 0;
  border-radius: 50%;
  background: rgba(2, 33, 105, 0.24);
  padding: 0;
  cursor: pointer;
}

.feature-dot[aria-current="true"] {
  background: var(--rbve-blue);
}

.feature-dot:focus-visible {
  outline: 3px solid rgba(206, 22, 26, 0.55);
  outline-offset: 3px;
}

.text-action {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--rbve-blue);
  font-weight: 620;
  text-decoration: none;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin: 0 0 14px;
}

.filter-control {
  flex: 0 0 min(320px, 34vw);
}

.filter-control input {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  padding: 12px 14px;
  outline: 0;
}

.filter-control input:focus {
  border-color: var(--rbve-blue);
  box-shadow: 0 0 0 4px rgba(2, 33, 105, 0.1);
}

.app-sections {
  display: grid;
  gap: 28px;
}

.app-section,
.website-section {
  min-width: 0;
}

.app-section > h3,
.website-section > h3 {
  margin-top: 0;
  margin-bottom: 14px;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.app-card {
  position: relative;
  min-height: 174px;
  border: 1px solid rgba(2, 33, 105, 0.14);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  padding: 16px;
  box-shadow: 0 10px 24px rgba(2, 33, 105, 0.05);
  transition: transform 160ms ease, border-color 160ms ease, box-shadow 160ms ease;
}

.app-card:hover {
  transform: translateY(-2px);
  border-color: rgba(2, 33, 105, 0.32);
  box-shadow: 0 18px 38px rgba(2, 33, 105, 0.12);
}

.app-card-link {
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
}

.app-card-link:focus-visible {
  outline: 3px solid rgba(206, 22, 26, 0.55);
  outline-offset: 3px;
}

.app-main-link:focus-visible,
.primary-action:focus-visible,
.text-action:focus-visible,
.nav-item:focus-visible,
.google-search button:focus-visible {
  outline: 3px solid rgba(206, 22, 26, 0.55);
  outline-offset: 3px;
}

.app-top {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 10px;
}

.app-icon {
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  border-radius: 8px;
  background: var(--app-theme, var(--rbve-blue));
  color: #fff;
  overflow: hidden;
  box-shadow: inset 0 -14px 22px rgba(0, 0, 0, 0.12);
}

.app-icon img {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  object-fit: cover;
}

.app-icon svg {
  width: 32px;
  height: 32px;
}

.favourite-toggle {
  display: grid;
  place-items: center;
  position: relative;
  z-index: 2;
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--rbve-blue);
  cursor: pointer;
}

.favourite-toggle:hover {
  background: rgba(2, 33, 105, 0.08);
}

.favourite-toggle[aria-pressed="true"] {
  color: var(--rbve-red);
}

.app-main-link {
  display: block;
  position: relative;
  z-index: 0;
  color: inherit;
  text-decoration: none;
}

.app-main-link h3 {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 18px 0 7px;
  color: var(--rbve-blue);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.15;
  vertical-align: top;
}

.app-title-text {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.new-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  min-height: 16px;
  margin-left: 0;
  border-radius: 999px;
  background: rgba(206, 22, 26, 0.12);
  color: #9f1115;
  padding: 1px 7px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1;
  transform: translateY(-0.04em);
}

.app-main-link p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.app-arrow {
  position: absolute;
  right: 18px;
  bottom: 16px;
  z-index: 0;
  color: var(--rbve-blue);
  font-weight: 700;
}

.empty-state {
  grid-column: 1 / -1;
  border: 1px dashed rgba(2, 33, 105, 0.28);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.6);
  color: var(--muted);
  padding: 22px;
}

.show-all-button {
  width: 100%;
  margin-top: 14px;
  border: 1px solid rgba(2, 33, 105, 0.16);
  border-radius: 8px;
  background: #fff;
  color: var(--rbve-blue);
  padding: 13px 16px;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(2, 33, 105, 0.05);
}

.show-all-button:hover {
  border-color: rgba(2, 33, 105, 0.32);
  background: rgba(2, 33, 105, 0.04);
}

.show-all-button:focus-visible {
  outline: 3px solid rgba(206, 22, 26, 0.55);
  outline-offset: 3px;
}

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

.website-card {
  display: flex;
  min-width: 0;
}

.website-card a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) 18px;
  align-items: center;
  gap: 12px;
  width: 100%;
  height: 100%;
  min-height: 72px;
  border: 1px solid rgba(2, 33, 105, 0.14);
  border-radius: 8px;
  background: #fff;
  color: inherit;
  padding: 14px 16px;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(2, 33, 105, 0.04);
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.app-grid .website-card a {
  align-content: start;
  min-height: 174px;
}

.website-card a:hover {
  transform: translateY(-1px);
  border-color: rgba(2, 33, 105, 0.3);
  box-shadow: 0 16px 34px rgba(2, 33, 105, 0.1);
}

.website-card a:focus-visible {
  outline: 3px solid rgba(206, 22, 26, 0.55);
  outline-offset: 3px;
}

.website-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--rbve-blue);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
}

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

.website-text {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.website-name {
  color: var(--rbve-blue);
  font-size: 16px;
  font-weight: 600;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.website-description {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.website-arrow {
  color: var(--rbve-blue);
  font-weight: 700;
}

@media (prefers-color-scheme: dark) {
  .skip-link,
  .google-search,
  .show-all-button,
  .website-card a,
  .accessibility-options {
    background: #1c1e22;
  }

  .nav-item {
    background: rgba(28, 30, 34, 0.86);
    border-color: var(--line);
  }

  .nav-item:hover,
  .show-all-button:hover {
    background: rgba(255, 255, 255, 0.08);
  }

  .nav-item.active,
  .google-search button,
  .primary-action {
    background: #f1f3f5;
    color: #111315;
  }

  .google-search button:hover,
  .primary-action:hover {
    background: #d8dce2;
  }

  .google-search {
    border-color: var(--line);
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  }

  .google-search:focus-within,
  .filter-control input:focus {
    box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.16), 0 18px 46px rgba(0, 0, 0, 0.32);
  }

  .filter-control input {
    background: rgba(28, 30, 34, 0.88);
  }

  .accessibility-options input {
    accent-color: #6b7280;
  }

  .feature {
    background:
      linear-gradient(120deg, rgba(255, 255, 255, 0.08), rgba(28, 30, 34, 0.98) 50%, rgba(255, 255, 255, 0.04)),
      #1c1e22;
    border-color: var(--line);
  }

  .feature-dot {
    background: rgba(255, 255, 255, 0.28);
  }

  .feature-dot[aria-current="true"],
  .category-nav::-webkit-scrollbar-thumb {
    background: var(--rbve-blue);
  }

  .category-nav {
    scrollbar-color: var(--rbve-blue) rgba(255, 255, 255, 0.14);
  }

  .category-nav::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.14);
  }

  .app-card,
  .website-card a,
  .show-all-button {
    border-color: var(--line);
  }

  .show-all-button {
    color: var(--rbve-blue);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.24);
  }

  .app-card:hover,
  .website-card a:hover {
    border-color: rgba(255, 255, 255, 0.42);
    box-shadow: 0 16px 34px rgba(0, 0, 0, 0.42);
  }

  .empty-state {
    background: rgba(28, 30, 34, 0.7);
    border-color: rgba(255, 255, 255, 0.24);
  }

  .favourite-toggle:hover {
    background: rgba(255, 255, 255, 0.1);
  }

  .new-chip {
    background: rgba(255, 133, 137, 0.18);
    color: #ffb7ba;
  }

  .primary-action[aria-disabled="true"] {
    background: rgba(255, 255, 255, 0.12);
    color: var(--rbve-blue);
  }

  body.a11y-high-contrast {
    --line: rgba(255, 255, 255, 0.42);
    --muted: #e0e3e8;
    --surface: #1c1e22;
  }
}

.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;
}

@media (max-width: 1080px) {
  .app-grid,
  .website-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .main {
    padding: 26px 18px 34px;
  }

  h1 {
    font-size: 44px;
  }

  .google-search {
    grid-template-columns: 28px minmax(0, 1fr);
    padding: 8px 12px;
  }

  .google-search button {
    grid-column: 1 / -1;
    width: 100%;
    padding: 9px 16px;
  }

  .feature {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .feature-mark {
    width: 86px;
    height: 86px;
    font-size: 23px;
  }

  .feature-actions {
    justify-items: stretch;
  }

  .primary-action {
    text-align: center;
  }

  .apps-toolbar {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .filter-control {
    width: 100%;
    flex-basis: auto;
  }

  .filter-control input {
    width: 100%;
  }

  .app-grid,
  .website-grid {
    grid-template-columns: 1fr;
  }

  .app-card {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) 34px 18px;
    align-items: center;
    gap: 12px;
    min-height: 78px;
    padding: 14px 16px;
  }

  .app-card:hover {
    transform: translateY(-1px);
  }

  .app-top {
    display: contents;
  }

  .app-icon {
    grid-column: 1;
    grid-row: 1;
    width: 42px;
    height: 42px;
    box-shadow: inset 0 -10px 16px rgba(0, 0, 0, 0.12);
  }

  .app-main-link {
    grid-column: 2;
    grid-row: 1;
    min-width: 0;
  }

  .app-main-link h3 {
    display: flex;
    align-items: center;
    gap: 6px;
    min-width: 0;
    margin: 0 0 3px;
    font-size: 16px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .new-chip {
    min-height: 15px;
    padding: 1px 6px;
    font-size: 9px;
    transform: translateY(-0.03em);
  }

  .app-main-link p {
    font-size: 13px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .favourite-toggle {
    grid-column: 3;
    grid-row: 1;
    width: 34px;
    height: 34px;
  }

  .app-arrow {
    grid-column: 4;
    grid-row: 1;
    position: static;
    align-self: center;
  }

  .website-card a {
    min-height: 78px;
  }

  .recent-list {
    justify-content: flex-start;
  }
}
