/* new-showcase.css */
/* 新着ファンクラブ・新着投稿表示用スタイル */

/* 新着ファンクラブ */
.new-talents-wrap {
  padding: 1.5rem 1rem;
}

.new-talents-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.new-talents-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.new-talents-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  text-align: center;
  padding: 1rem 0.5rem;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.new-talents-card:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.new-talents-card img {
  border-radius: 50%;
  width: 64px;
  height: 64px;
  object-fit: cover;
  margin-bottom: 0.5rem;
}

.new-talents-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
}

.new-talents-card:hover .new-talents-name {
  color: #ec4899;
}

/* 新着投稿 */
.new-talent-posts-wrap {
  padding: 1.5rem 1rem;
}

.new-talent-posts-title {
  font-size: 1.4rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.new-talent-posts-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

.new-talent-post-card {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 12px;
  text-align: center;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
  position: relative;
  transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.new-talent-post-card:hover {
  box-shadow: 0 4px 8px rgba(0,0,0,0.12);
  transform: translateY(-2px);
}

.new-talent-post-card img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
  transition: filter 0.3s ease;
}

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

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

.new-talent-post-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
  padding: 0.6rem;
  line-height: 1.4;
}

.new-talent-post-card:hover .new-talent-post-title {
  color: #ec4899;
}

@media screen and (max-width: 768px) {
  .new-talents-grid,
  .new-talent-posts-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

