/* [project]/web/src/components/posts/post-card-layout.module.css [app-client] (css) */
.post-card-layout-module__ZqPNPG__card {
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: 16px;
  flex-direction: column;
  transition: transform .18s, box-shadow .18s, border-color .18s;
  display: flex;
  overflow: hidden;
  box-shadow: 0 8px 22px -16px #1a161480;
}

@media (prefers-reduced-motion: no-preference) {
  .post-card-layout-module__ZqPNPG__card:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
    box-shadow: 0 18px 34px -18px #1a161499;
  }
}

.post-card-layout-module__ZqPNPG__cover {
  aspect-ratio: 3 / 2;
  background: var(--bg-subtle);
  display: block;
  overflow: hidden;
}

.post-card-layout-module__ZqPNPG__coverImage {
  object-fit: cover;
  width: 100%;
  height: 100%;
  transition: transform .3s;
  display: block;
}

@media (prefers-reduced-motion: no-preference) {
  .post-card-layout-module__ZqPNPG__card:hover .post-card-layout-module__ZqPNPG__coverImage {
    transform: scale(1.03);
  }
}

.post-card-layout-module__ZqPNPG__coverPlaceholder {
  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: 8px;
  padding: 16px 18px 18px;
  display: flex;
}

.post-card-layout-module__ZqPNPG__category {
  letter-spacing: .03em;
  text-transform: uppercase;
  color: var(--accent);
  background: color-mix(in srgb, var(--accent) 12%, transparent);
  border: 1px solid color-mix(in srgb, var(--accent) 26%, transparent);
  border-radius: 999px;
  align-self: flex-start;
  padding: 3px 10px;
  font-size: 11px;
  font-weight: 600;
}

.post-card-layout-module__ZqPNPG__title {
  font-family: var(--font-display);
  letter-spacing: -.01em;
  color: var(--text);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.18;
  text-decoration: none;
  transition: color .15s;
}

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

.post-card-layout-module__ZqPNPG__tagline {
  font-family: var(--font-prose);
  color: var(--text-muted);
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 15px;
  line-height: 1.45;
  display: -webkit-box;
  overflow: hidden;
}

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

.post-card-layout-module__ZqPNPG__author {
  color: var(--text);
  font-weight: 600;
}

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

.post-card-layout-module__ZqPNPG__tags {
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 4px;
  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;
}

@media (prefers-reduced-motion: no-preference) {
  .post-card-layout-module__ZqPNPG__card {
    animation: .45s cubic-bezier(.22, 1, .36, 1) both post-card-layout-module__ZqPNPG__card-rise;
  }

  .post-card-layout-module__ZqPNPG__card:first-child {
    animation-delay: 20ms;
  }

  .post-card-layout-module__ZqPNPG__card:nth-child(2) {
    animation-delay: 60ms;
  }

  .post-card-layout-module__ZqPNPG__card:nth-child(3) {
    animation-delay: .1s;
  }

  .post-card-layout-module__ZqPNPG__card:nth-child(4) {
    animation-delay: .14s;
  }

  .post-card-layout-module__ZqPNPG__card:nth-child(5) {
    animation-delay: .18s;
  }

  .post-card-layout-module__ZqPNPG__card:nth-child(6) {
    animation-delay: .22s;
  }

  .post-card-layout-module__ZqPNPG__card:nth-child(n+7) {
    animation-delay: .26s;
  }

  @keyframes post-card-layout-module__ZqPNPG__card-rise {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}

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

.profile-module__Boob2q__profile {
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 48px;
  display: flex;
}

.profile-module__Boob2q__avatar {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  width: 96px;
  height: 96px;
  color: var(--text-dim);
  border-radius: 50%;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
  overflow: hidden;
}

.profile-module__Boob2q__avatarImage {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.profile-module__Boob2q__info {
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  display: flex;
}

.profile-module__Boob2q__displayName {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
}

.profile-module__Boob2q__username {
  color: var(--text-muted);
  font-size: 15px;
}

.profile-module__Boob2q__bio {
  white-space: pre-line;
  margin-top: 8px;
  font-size: 15px;
  line-height: 1.5;
}

.profile-module__Boob2q__joined {
  color: var(--text-dim);
  margin-top: 4px;
  font-size: 13px;
}

.profile-module__Boob2q__sectionTitle {
  margin-bottom: 20px;
  font-size: 18px;
  font-weight: 600;
}

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

.profile-module__Boob2q__loadMore {
  justify-content: center;
  padding: 32px 0;
  display: flex;
}

.profile-module__Boob2q__empty {
  color: var(--text-muted);
  padding: 40px 0;
  font-size: 15px;
}

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

  .profile-module__Boob2q__profile {
    text-align: center;
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .profile-module__Boob2q__displayName {
    font-size: 20px;
  }
}

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