/* [project]/src/styles/public-shell.css [app-client] (css) */
.home-page-root * {
  font-family: var(--font-dm-sans-home), "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

.home-page-root .brand {
  font-family: var(--font-dm-serif-home), "DM Serif Display", serif;
}

.home-page-root .brand-italic {
  font-family: var(--font-dm-serif-home), "DM Serif Display", serif;
  font-style: italic;
}

.home-page-root .site-header {
  z-index: 50;
  background: #006241;
  border-bottom: 1px solid #004f34;
  position: sticky;
  top: 0;
}

.home-page-root .nav-dropdown {
  z-index: 100;
  background: #fff;
  border: 1px solid #ede9e4;
  border-radius: 14px;
  min-width: 180px;
  padding: 4px;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  box-shadow: 0 8px 28px -4px #0000001a;
}

.home-page-root .nd-item {
  color: #44403c;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 10px;
  align-items: center;
  gap: 9px;
  padding: 8px 12px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 500;
  text-decoration: none;
  transition: background .12s;
  display: flex;
}

.home-page-root .nd-item:hover {
  background: #f5f5f2;
}

.home-page-root .nd-item svg {
  stroke: currentColor;
  fill: none;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  width: 14px;
  height: 14px;
}

@media (max-width: 640px) {
  .home-page-root .header-cats {
    display: none;
  }
}

.home-page-root .post-card {
  cursor: pointer;
  background: #fff;
  border: 1px solid #ede9e4;
  border-radius: 16px;
  transition: border-color .18s;
  overflow: hidden;
}

.home-page-root .post-card:hover {
  box-shadow: none;
  border-color: #e7e5e4;
  transform: none;
}

.home-page-root .cat-pill {
  cursor: pointer;
  white-space: nowrap;
  background: #fff;
  border: 1px solid #ede9e4;
  border-radius: 14px;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 14px 18px;
  text-decoration: none;
  transition: border-color .15s, background .15s, box-shadow .15s;
  display: flex;
}

.home-page-root .cat-pill:hover {
  box-shadow: none;
  background: #fff;
  border-color: #ede9e4;
}

.home-page-root .cat-pill.active {
  background: #006241;
  border-color: #006241;
}

.home-page-root .cat-pill.active .cat-label {
  color: #fff;
}

.home-page-root .cat-icon {
  stroke: #006241;
  fill: none;
  stroke-width: 1.7px;
  stroke-linecap: round;
  stroke-linejoin: round;
  width: 32px;
  height: 32px;
}

.home-page-root .cat-pill.active .cat-icon {
  stroke: #fff;
  fill: none;
}

.home-page-root .cat-label {
  color: #006241;
  font-size: 12px;
  font-weight: 600;
}

.home-page-root .cat-pill.cat-pill-travel {
  background: #f0faf5;
  border-color: #c9a84c;
  position: relative;
  overflow: visible;
}

.home-page-root .cat-pill.cat-pill-travel .cat-icon {
  stroke: #006241;
}

.home-page-root .cat-pill.cat-pill-travel .cat-label {
  color: #005233;
}

.home-page-root .cat-pill.cat-pill-travel:after {
  content: "";
  background: #c9a84c;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  animation: 2s ease-out infinite cat-pill-pulse;
  position: absolute;
  top: 7px;
  right: 7px;
  box-shadow: 0 0 #c9a84c80;
}

@keyframes cat-pill-pulse {
  0% {
    box-shadow: 0 0 #c9a84c73;
  }

  70% {
    box-shadow: 0 0 0 6px #c9a84c00;
  }

  100% {
    box-shadow: 0 0 #c9a84c00;
  }
}

.home-page-root .city-card {
  aspect-ratio: 4 / 3;
  cursor: pointer;
  border: 1px solid #0000;
  border-radius: 16px;
  text-decoration: none;
  transition: border-color .18s;
  position: relative;
  overflow: hidden;
}

.home-page-root .city-card:hover {
  border-color: #e7e5e4;
}

.home-page-root .city-card img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.home-page-root .city-overlay {
  background: linear-gradient(to top, #1c1917b8 0%, #0000 55%);
  position: absolute;
  inset: 0;
}

.home-page-root .hero-search-wrap {
  z-index: 30;
  isolation: isolate;
  position: relative;
}

.home-page-root .search-box:focus-within {
  border-color: #f5f0e0;
  box-shadow: 0 0 0 3px #f5f0e099;
}

.home-page-root .search-input-wrap {
  min-width: 280px;
}

.home-page-root .search-dropdown {
  z-index: 120;
  isolation: isolate;
  background-color: #fff;
  border: 1px solid #ede9e4;
  border-radius: 14px;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  right: 0;
  overflow: hidden;
  box-shadow: 0 12px 40px -4px #0000001f;
}

.home-page-root .sdrop-item {
  color: #1c1917;
  cursor: pointer;
  background-color: #fff;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  font-size: 13.5px;
  text-decoration: none;
  transition: background .1s;
  display: flex;
}

.home-page-root .sdrop-item:hover {
  background: #fafaf8;
}

.home-page-root .sdrop-section {
  color: #a8a29e;
  text-transform: uppercase;
  letter-spacing: .07em;
  background-color: #fff;
  padding: 8px 16px 4px;
  font-size: 10.5px;
  font-weight: 700;
}

.home-page-root .badge-lost {
  color: #dc2626;
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.home-page-root .badge-found {
  color: #059669;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
}

.home-page-root .badge-sensitive {
  color: #78716c;
  background: #f5f5f4;
  border: 1px solid #e7e5e4;
}

.home-page-root .sensitive-placeholder {
  aspect-ratio: 4 / 3;
  background: #f5f5f2;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 100%;
  display: flex;
}

.home-page-root .fade-up {
  animation: .4s both fadeUp;
}

.home-page-root .fade-up-2 {
  animation: .4s 80ms both fadeUp;
}

.home-page-root .fade-up-3 {
  animation: .4s .16s both fadeUp;
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 640px) {
  .home-page-root .hero-search-bar {
    border-radius: 16px;
  }

  .home-page-root .hero-search-bar > * {
    border-bottom: none !important;
  }

  .home-page-root .search-input-wrap {
    min-width: 0;
    padding-right: 10px;
  }

  .home-page-root .search-input-wrap input {
    font-size: 16px;
  }

  .home-page-root .search-btn-wrap {
    border-left: 1px solid #ede9e4;
    padding: 5px;
  }

  .home-page-root .search-btn-wrap button {
    border-radius: 12px;
    justify-content: center;
    width: 46px;
    min-width: 46px;
    height: 42px;
    padding: 0;
  }

  .home-page-root .cat-pill.cat-pill-all {
    display: none;
  }

  .home-page-root .cat-pill {
    white-space: nowrap;
    text-align: center;
    aspect-ratio: 1;
    border-radius: 12px;
    justify-content: center;
    gap: 6px;
    padding: 10px;
    overflow: hidden;
  }

  .home-page-root .cat-icon {
    width: 26px;
    height: 26px;
  }

  .home-page-root .cat-label {
    word-break: break-word;
    font-size: 11.5px;
    line-height: 1.2;
  }
}

/*# sourceMappingURL=src_styles_public-shell_a0b296e2.css.map*/