.posts-page {
  width: 100%;
  min-height: 100vh;
  background: #000000;
  display: flex;
  justify-content: center;
  padding: 40px 20px;
  box-sizing: border-box;
}

.posts-container {
  width: 100%;
  max-width: 800px;
}

.posts-title {
  font-size: clamp(28px, 5vw, 36px);
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  margin: 0 0 40px;
  position: relative;
}
.posts-title::after {
  content: "";
  display: block;
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, #ffb336, #4ec9b0);
  margin: 12px auto 0;
  border-radius: 2px;
}

.posts-empty {
  text-align: center;
  padding: 60px 20px;
  background: rgba(20, 20, 20, 0.7);
  border: 1px solid rgba(78, 201, 176, 0.1);
  border-radius: 20px;
}
.posts-empty p {
  color: rgba(255, 255, 255, 0.5);
  font-size: 18px;
  margin: 0 0 20px;
}

.posts-create-link {
  display: inline-block;
  padding: 12px 30px;
  background: linear-gradient(135deg, #4ec9b0, rgb(53.2987012987, 174.7012987013, 150.025974026));
  color: #000;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.posts-create-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(78, 201, 176, 0.3);
}

.posts-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.post-card {
  display: flex;
  align-items: stretch;
  gap: 20px;
  padding: 25px;
  background: rgba(20, 20, 20, 0.8);
  border: 1px solid rgba(78, 201, 176, 0.1);
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}
.post-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(78, 201, 176, 0.03), transparent);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.post-card:hover {
  border-color: rgba(78, 201, 176, 0.3);
  transform: translateX(5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.post-card:hover::before {
  opacity: 1;
}

.post-card-rank {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-width: 50px;
  padding-top: 5px;
}

.rank-medal {
  font-size: 32px;
  animation: medalBounce 0.6s ease-out;
}

@keyframes medalBounce {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1.3);
  }
  100% {
    transform: scale(1);
  }
}
.rank-number {
  font-size: 18px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.3);
}

.post-card-content {
  flex: 1;
  min-width: 0;
}

.post-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.post-card-author {
  display: flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
}

.post-card-avatar {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid rgba(78, 201, 176, 0.2);
}

.post-card-date {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
}

.post-card-excerpt {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 12px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.post-card-stats {
  display: flex;
  gap: 15px;
}
.post-card-stats span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

@media (max-width: 600px) {
  .post-card {
    padding: 20px;
    gap: 15px;
  }
  .post-card-rank {
    min-width: 35px;
  }
  .rank-medal {
    font-size: 24px;
  }
}/*# sourceMappingURL=posts.css.map */