/* [project]/web/src/components/posts/post-card-layout.module.css [app-client] (css) */
.post-card-layout-module__ZqPNPG__card {
  border: 1px solid var(--border);
  border-radius: 10px;
  flex-direction: column;
  transition: border-color .15s;
  display: flex;
  overflow: hidden;
}

.post-card-layout-module__ZqPNPG__card:hover {
  border-color: var(--accent);
}

.post-card-layout-module__ZqPNPG__thumbnail {
  aspect-ratio: 16 / 9;
  background: var(--bg-subtle);
  display: block;
  position: relative;
  overflow: hidden;
}

.post-card-layout-module__ZqPNPG__thumbnailImage {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.post-card-layout-module__ZqPNPG__thumbnailPlaceholder {
  width: 100%;
  height: 100%;
  color: var(--text-dim);
  justify-content: center;
  align-items: center;
  display: flex;
}

.post-card-layout-module__ZqPNPG__body {
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  display: flex;
}

.post-card-layout-module__ZqPNPG__title {
  text-overflow: ellipsis;
  white-space: nowrap;
  color: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  text-decoration: none;
  overflow: hidden;
}

.post-card-layout-module__ZqPNPG__title:hover {
  color: var(--accent);
}

.post-card-layout-module__ZqPNPG__meta {
  color: var(--text-muted);
  align-items: center;
  gap: 8px;
  font-size: 13px;
  display: flex;
}

.post-card-layout-module__ZqPNPG__dot {
  color: var(--text-dim);
}

.post-card-layout-module__ZqPNPG__tags {
  flex-wrap: wrap;
  gap: 6px;
  display: flex;
}

.post-card-layout-module__ZqPNPG__tag {
  background: var(--bg-subtle);
  color: var(--text-muted);
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 2px 10px;
  font-size: 12px;
  display: inline-block;
}

/* [project]/web/src/app/explore/explore.module.css [app-client] (css) */
.explore-module___B_3zW__page {
  width: 100%;
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 24px;
}

.explore-module___B_3zW__header {
  margin-bottom: 32px;
}

.explore-module___B_3zW__title {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.2;
}

.explore-module___B_3zW__grid {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  display: grid;
}

.explore-module___B_3zW__empty {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  padding: 80px 24px;
  display: flex;
}

.explore-module___B_3zW__emptyText {
  color: var(--text-muted);
  font-size: 16px;
}

.explore-module___B_3zW__emptySubtext {
  color: var(--text-dim);
  font-size: 14px;
}

.explore-module___B_3zW__loadMore {
  justify-content: center;
  padding: 32px 0;
  display: flex;
}

@media (max-width: 768px) {
  .explore-module___B_3zW__page {
    padding: 32px 16px;
  }

  .explore-module___B_3zW__title {
    font-size: 22px;
  }
}

/*# sourceMappingURL=web_src_619a9070._.css.map*/