.trending-lead {
    color: #444;
    margin-bottom: 0.4rem;
}


/* データなし */
.trending-empty {
    text-align: center;
    padding: 4rem 1rem;
    color: #aaa;
}
.trending-empty i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}
.trending-empty p {
    font-size: 0.95rem;
    line-height: 1.8;
}

/* ランキングリスト */
.trending-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.trending-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

/* 順位バッジ */
.trending-rank {
    flex-shrink: 0;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 0.9rem;
    background: #e0e0e0;
    color: #fff;
}
.trending-rank.rank-1 {
    background: #c9a227;
    font-size: 1rem;
}
.trending-rank.rank-2 {
    background: #9e9e9e;
}
.trending-rank.rank-3 {
    background: #a0522d;
}

/* カード */
.trending-card {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex: 1;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    padding: 0.6rem 0.9rem 0.6rem 0.6rem;
    transition: box-shadow 0.2s, border-color 0.2s;
}
.trending-card:hover {
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-color: #0097a7;
}

.trending-thumb {
    width: 96px;
    height: 64px;
    object-fit: cover;
    border-radius: 5px;
    flex-shrink: 0;
    background: #f0f0f0;
}

.trending-info {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    min-width: 0;
    flex: 1;
    overflow: hidden;
}

.trending-name {
    font-weight: bold;
    font-size: 0.95rem;
    color: #222;
    word-break: break-word;
}

.trending-name-en {
    font-size: 0.75rem;
    color: #888;
    word-break: break-word;
}

.trending-meta {
    font-size: 0.78rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    flex-wrap: wrap;
}

.trending-users {
    color: #0097a7;
    font-weight: bold;
    margin-left: 0.3rem;
}

@media (max-width: 600px) {
    .trending-thumb {
        width: 72px;
        height: 48px;
    }
    .trending-name {
        font-size: 0.88rem;
    }
    .trending-rank {
        width: 1.9rem;
        height: 1.9rem;
        font-size: 0.85rem;
    }
}
