/* top-subscribed-posts.css */
/* 参加中のファンクラブ新着投稿用スタイル */

.top-section {
  padding: 2rem 1rem;
}

.top-section-title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #ec4899;
}

.top-posts-grid {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.top-post-card {
  width: 30%;
  min-width: 200px;
  position: relative;
}

.top-post-card a {
  text-decoration: none;
  color: inherit;
}

.thumb-wrapper {
  position: relative;
}

.top-post-card.locked img {
  filter: blur(8px) brightness(0.6);
}

.top-post-card img {
  width: 100%;
  border-radius: 8px;
  display: block;
  transition: filter 0.3s ease;
}

.top-post-card:hover img {
  opacity: 0.9;
}

.lock-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 2rem;
  color: #fff;
  pointer-events: none;
  z-index: 1;
}

.top-post-title {
  margin-top: 0.5rem;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.4;
}

.top-post-title:hover {
  color: #ec4899;
}

@media (max-width: 768px) {
  .top-post-card {
    width: 100%;
  }
}

