/* ========================================
   Ranking Article List（ラッパー）
   ======================================== */

.ranking-article-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ========================================
   Ranking Article Item
   ======================================== */

.ranking-article-item {
    display: flex;
    align-items: center;
    gap: 16px;
    text-decoration: none;
    color: #333;
    transition: opacity 0.2s;
    max-width: 400px;
}

.ranking-article-item:hover {
    opacity: 0.8;
    text-decoration: none;
}

/* ========================================
   サムネイル
   ======================================== */

.ranking-article-item--thumb {
    position: relative;
    flex-shrink: 0;
    width: 120px;
    aspect-ratio: 16 / 9;
    background: #e0e0e0;
    overflow: visible;
}

.ranking-article-item--thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ranking-article-item--thumb-placeholder {
    width: 100%;
    height: 100%;
    background: #e0e0e0;
}

/* ========================================
   ランクバッジ
   ======================================== */

.ranking-article-item--rank {
    position: absolute;
    top: -6px;
    left: -6px;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #404040;
    color: #fff;
    font-size: 12px;
    font-weight: bold;
    line-height: 1;
    letter-spacing: 0.02em;
}

/* 1〜3位: 青バッジ */
.ranking-article-item--rank--top {
    background: #316EA9;
}

/* ========================================
   タイトル
   ======================================== */

.ranking-article-item--title {
    flex: 1;
    margin: 0;
    font-size: 14px;
    font-weight: bold;
    line-height: 1.6;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
