/* talent-ranking.css */
/* クリエイターランキング用スタイル */

.talent-ranking-list {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 1rem;
}

.talent-card {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  align-items: flex-start;
}

.talent-card .avatar {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  flex-shrink: 0;
}

.talent-card-content {
  flex: 1;
}

.talent-card .nickname {
  font-size: 1.1rem;
  font-weight: bold;
  margin: 0 0 0.3rem;
}

.talent-card .nickname a {
  color: #2563eb;
  text-decoration: none;
}

.talent-card .nickname a:hover {
  text-decoration: underline;
}

.talent-card .intro {
  font-size: 0.9rem;
  color: #555;
  margin-bottom: 0.3rem;
}

.talent-card .fan-count {
  font-size: 0.85rem;
  color: #777;
  margin-bottom: 0.7rem;
}

.talent-card .post-scroll {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  align-items: flex-start;
}

.talent-card .post-item {
  flex: 0 0 auto;
  width: 100px;
  text-align: center;
  position: relative;
}

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

.talent-card .post-item img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 0.3rem;
}

.talent-card .post-item.locked img {
  filter: blur(5px);
}

.talent-card .post-item.locked::after {
  content: "🔒";
  position: absolute;
  top: 35px;
  left: 35px;
  font-size: 1.5rem;
  color: #ec4899;
}

.talent-card .post-item-title {
  font-size: 0.75rem;
  line-height: 1.1em;
  color: #333;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.talent-card .view-more {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  font-size: 0.75rem;
  color: #999;
  padding-left: 1rem;
}

.talent-card .view-more a {
  color: #999;
  text-decoration: none;
}

.talent-card .view-more a:hover {
  color: #2563eb;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .talent-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  
  .talent-card .avatar {
    width: 60px;
    height: 60px;
  }
  
  .talent-card .nickname {
    font-size: 1rem;
  }
  
  .talent-card .intro {
    font-size: 0.8rem;
  }
  
  .talent-card .post-scroll {
    justify-content: center;
  }
}

