.mobile-bottom-nav {
  position: fixed !important;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.6rem 1rem calc(0.6rem + env(safe-area-inset-bottom));
  background-color: var(--color-white);
}

.mobile-bottom-nav__link {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  color: var(--color-slate-900);
  text-decoration: none;
}

.mobile-bottom-nav__link[aria-current="page"] {
  color: var(--color-emerald-600);
  font-weight: 600;
}

.mobile-bottom-nav__link span {
  line-height: 1;
}

.mobile-bottom-nav__icon {
  width: 26px;
  height: 26px;
}

@media (width >= 48rem) {
  .mobile-bottom-nav {
    display: none;
  }
}
