/* [project]/src/styles/archive.css [app-client] (css) */
.post-card {
  cursor: pointer;
  color: inherit;
  background: #fff;
  border: 1px solid #ede9e4;
  border-radius: 16px;
  text-decoration: none;
  display: block;
  overflow: hidden;
}

.post-card .card-img {
  aspect-ratio: 4 / 3;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  display: block;
}

.post-card-body {
  background: #fff;
  padding: 10px 12px 12px;
}

.post-card-title {
  color: #1c1917;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0 0 4px;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.4;
  overflow: hidden;
}

.post-card-category {
  color: #a8a29e;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin: 0 0 4px;
  font-size: 11.5px;
  overflow: hidden;
}

.post-card-meta {
  justify-content: space-between;
  align-items: center;
  gap: 6px;
  display: flex;
}

.post-card-location {
  color: #a8a29e;
  text-overflow: ellipsis;
  white-space: nowrap;
  align-items: center;
  gap: 4px;
  min-width: 0;
  font-size: 11.5px;
  display: flex;
  overflow: hidden;
}

.post-card-time {
  color: #a8a29e;
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 11px;
}

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

.badge {
  white-space: nowrap;
  border-radius: 6px;
  align-items: center;
  gap: 3px;
  padding: 2px 7px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.4;
  display: inline-flex;
}

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

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

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

.badge-reward {
  color: #d97706;
  background: #fffbeb;
  border: 1px solid #fde68a;
}

.filter-sidebar {
  flex-direction: column;
  flex-shrink: 0;
  gap: 0;
  width: 240px;
  display: flex;
}

.filter-section {
  border-bottom: 1px solid #f0ede8;
  padding: 16px 0;
}

.filter-section:last-child {
  border-bottom: none;
}

.filter-label {
  text-transform: uppercase;
  letter-spacing: .07em;
  color: #a8a29e;
  margin-bottom: 10px;
  font-size: 10.5px;
  font-weight: 700;
}

.f-radio, .f-check {
  cursor: pointer;
  color: #44403c;
  -webkit-user-select: none;
  user-select: none;
  text-align: left;
  background: none;
  border: none;
  border-radius: 10px;
  align-items: center;
  gap: 9px;
  width: 100%;
  padding: 7px 8px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 500;
  transition: background .12s;
  display: flex;
}

.f-radio.f-child, .f-check.f-child {
  padding: 4px 8px;
  font-size: 13px;
}

.f-radio:hover, .f-check:hover {
  background: #f5f5f2;
}

.f-radio.active, .f-check.active {
  color: #1c1917;
  background: #f5f5f2;
  font-weight: 600;
}

.f-dot {
  background: #fff;
  border: 1.5px solid #d6d3d1;
  border-radius: 99px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  transition: border-color .15s, background .15s;
  display: flex;
}

.f-radio.active .f-dot {
  background: #1c1917;
  border-color: #1c1917;
}

.f-dot-inner {
  background: #fff;
  border-radius: 99px;
  width: 6px;
  height: 6px;
}

.f-box {
  background: #fff;
  border: 1.5px solid #d6d3d1;
  border-radius: 5px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 16px;
  height: 16px;
  transition: border-color .15s, background .15s;
  display: flex;
}

.f-check.active .f-box {
  background: #1c1917;
  border-color: #1c1917;
}

.f-check-icon {
  display: none;
}

.f-check.active .f-check-icon {
  display: block;
}

.active-chip {
  color: #fff;
  cursor: pointer;
  background: #1c1917;
  border: none;
  border-radius: 99px;
  align-items: center;
  gap: 5px;
  padding: 4px 10px;
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.4;
  transition: background .12s;
  display: inline-flex;
}

.active-chip:hover {
  background: #292524;
}

.sort-select {
  appearance: none;
  color: #44403c;
  cursor: pointer;
  background-color: #fff;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2378716c' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-position: right 10px center;
  background-repeat: no-repeat;
  border: 1px solid #e7e5e4;
  border-radius: .625rem;
  outline: none;
  flex-shrink: 0;
  padding: 8px 32px 8px 12px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 500;
  transition: border-color .14s;
}

.sort-select:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px #f59e0b1a;
}

.archive-search {
  color: #1c1917;
  box-sizing: border-box;
  background: #fff;
  border: 1px solid #e7e5e4;
  border-radius: 11px;
  outline: none;
  width: 100%;
  padding: 8px 14px 8px 38px;
  font-family: inherit;
  font-size: 13.5px;
  transition: border-color .14s, box-shadow .14s;
}

.archive-search:focus {
  border-color: #f59e0b;
  box-shadow: 0 0 0 3px #f59e0b1a;
}

.archive-search::placeholder {
  color: #a8a29e;
}

.archive-filter-overlay {
  -webkit-backdrop-filter: blur(3px);
  z-index: 60;
  background: #00000047;
  position: fixed;
  inset: 0;
}

.archive-filter-drawer {
  z-index: 61;
  background: #fff;
  flex-direction: column;
  width: min(320px, 88vw);
  transition: transform .28s cubic-bezier(.4, 0, .2, 1);
  display: flex;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
  transform: translateX(-100%);
}

.archive-filter-drawer.open {
  transform: translateX(0);
}

.pg-btn {
  cursor: pointer;
  color: #44403c;
  background: #fff;
  border: 1px solid #e7e5e4;
  border-radius: .625rem;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-family: inherit;
  font-size: 13px;
  font-weight: 600;
  transition: background .12s, border-color .12s;
  display: flex;
}

.pg-btn:hover:not(:disabled):not(.active) {
  background: #f5f5f2;
}

.pg-btn.active {
  color: #fff;
  background: #1c1917;
  border-color: #1c1917;
}

.pg-btn:disabled {
  opacity: .4;
  cursor: not-allowed;
}

@media (max-width: 1023px) {
  .filter-sidebar {
    display: none !important;
  }
}

@media (min-width: 1024px) {
  .archive-lg-hidden {
    display: none !important;
  }
}

@media (max-width: 640px) {
  .archive-search {
    font-size: 14px;
  }
}

.archive-grid {
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 14px;
  display: grid;
}

@media (max-width: 640px) {
  .archive-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
}

.skeleton-card {
  pointer-events: none;
}

.skeleton-img {
  aspect-ratio: 4 / 3;
  background: linear-gradient(90deg, #f0ede8 25%, #e7e5e0 37%, #f0ede8 63%) 0 0 / 400% 100%;
  width: 100%;
  animation: 1.4s infinite shimmer;
}

.skeleton-line {
  background: linear-gradient(90deg, #f0ede8 25%, #e7e5e0 37%, #f0ede8 63%) 0 0 / 400% 100%;
  border-radius: 6px;
  animation: 1.4s infinite shimmer;
}

@keyframes shimmer {
  0% {
    background-position: 100%;
  }

  100% {
    background-position: 0;
  }
}

/*# sourceMappingURL=src_styles_archive_2f004efb.css.map*/