/* [project]/src/styles/single-post.css [app-client] (css) */
.single-post-page * {
  box-sizing: border-box;
}

.single-post-page .badge {
  white-space: nowrap;
  letter-spacing: .01em;
  border-radius: 7px;
  align-items: center;
  gap: 4px;
  padding: 4px 10px;
  font-size: 11px;
  font-weight: 700;
  display: inline-flex;
}

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

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

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

.single-post-page .gallery-main {
  aspect-ratio: 4 / 3;
  cursor: pointer;
  background: #f5f5f2;
  border-radius: 16px;
  position: relative;
  overflow: hidden;
}

.single-post-page .gallery-main img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.single-post-page .gallery-thumb {
  cursor: pointer;
  background: #f5f5f2;
  border: 2px solid #0000;
  border-radius: 10px;
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  transition: border-color .15s;
  overflow: hidden;
}

.single-post-page .gallery-thumb:hover {
  border-color: #d6d3d1;
}

.single-post-page .gallery-thumb.active {
  border-color: #1c1917;
}

.single-post-page .gallery-thumb img {
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}

.single-post-page .sensitive-img-wrap {
  aspect-ratio: 4 / 3;
  text-align: center;
  background: #f5f5f2;
  border: 1px solid #ede9e4;
  border-radius: 16px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 32px;
  display: flex;
}

.single-post-page .info-row {
  border-bottom: 1px solid #f5f5f0;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 0;
  display: flex;
}

.single-post-page .info-row:last-child {
  border-bottom: none;
}

.single-post-page .info-key {
  color: #a8a29e;
  flex-shrink: 0;
  width: 100px;
  padding-top: 1px;
  font-size: 12.5px;
  font-weight: 500;
}

.single-post-page .info-val {
  color: #1c1917;
  flex: 1;
  font-size: 13.5px;
  font-weight: 500;
  line-height: 1.5;
}

.single-post-page .btn-primary {
  color: #fff;
  cursor: pointer;
  background: #c9a84c;
  border: none;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 13px;
  font-family: inherit;
  font-size: 14px;
  font-weight: 600;
  transition: background .15s;
  display: flex;
}

.single-post-page .btn-primary:hover:not(:disabled) {
  background: #b8963e;
}

.single-post-page .btn-secondary {
  color: #1c1917;
  cursor: pointer;
  background: #fff;
  border: 1px solid #e7e5e4;
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  width: 100%;
  padding: 11px;
  font-family: inherit;
  font-size: 13.5px;
  font-weight: 600;
  display: flex;
}

.single-post-page .btn-icon {
  stroke: currentColor;
  fill: none;
  stroke-width: 2px;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
}

.single-post-page .panel {
  background: #fff;
  border: 1px solid #ede9e4;
  border-radius: 16px;
  padding: 20px;
}

.single-post-page .trust-notice {
  background: #fafaf8;
  border: 1px solid #f0ede8;
  border-radius: 12px;
  align-items: flex-start;
  gap: 10px;
  padding: 12px 14px;
  display: flex;
}

.single-post-page .poster-avatar {
  color: #fff;
  border-radius: 99px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 42px;
  height: 42px;
  font-size: 14px;
  font-weight: 700;
  display: flex;
}

.single-post-page .report-link {
  color: #a8a29e;
  cursor: pointer;
  background: none;
  border: none;
  align-items: center;
  gap: 5px;
  padding: 0;
  font-family: inherit;
  font-size: 12.5px;
  display: inline-flex;
}

.single-post-page .post-layout {
  grid-template-columns: 1fr 380px;
  align-items: start;
  gap: 24px;
  display: grid;
}

.single-post-page .lightbox {
  z-index: 90;
  background: #000000e0;
  justify-content: center;
  align-items: center;
  display: none;
  position: fixed;
  inset: 0;
}

.single-post-page .lightbox.open {
  display: flex;
}

.single-post-page .lightbox img {
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 12px;
  max-width: 90vw;
  max-height: 90vh;
}

.single-post-page .mobile-action-bar {
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  padding: 12px 16px;
  padding-bottom: max(12px, env(safe-area-inset-bottom));
  z-index: 40;
  background: #fffffff5;
  border-top: 1px solid #f0ede8;
  gap: 8px;
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
}

@media (max-width: 1024px) {
  .single-post-page .post-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .single-post-page .mobile-action-bar {
    display: flex !important;
  }

  .single-post-page .desktop-actions {
    display: none !important;
  }

  .single-post-page .gallery-thumb {
    width: 60px;
    height: 60px;
  }

  .single-post-page {
    padding-bottom: 88px !important;
  }
}

@media (min-width: 681px) {
  .single-post-page {
    padding-bottom: 1.5rem;
  }
}

/*# sourceMappingURL=src_styles_single-post_07509206.css.map*/