/* HotRank 小工具轮播样式 */
.hot-rank-widget {
    position: relative;
    overflow: hidden;
}

.hrw-slider {
    display: flex;
    transition: transform 0.4s ease;
}

.hrw-slide {
    min-width: 100%;
    box-sizing: border-box;
    padding: 0 4px;
}

.hrw-slide-header {
    display: flex;
    align-items: center;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid #e5e7eb;
    color: #111827;
}

.hrw-slide-icon {
    width: 22px;
    height: 22px;
    border-radius: 4px;
    margin-right: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #fff;
}

.hrw-item {
    display: flex;
    align-items: center;
    padding: 5px 0;
    text-decoration: none;
    color: #374151;
    font-size: 12px;
}
.hrw-item:hover {
    color: #2563eb;
}

.hrw-rank {
    width: 18px;
    text-align: center;
    font-weight: 700;
    font-size: 11px;
    margin-right: 8px;
    color: #9ca3af;
    flex-shrink: 0;
}
.hrw-rank.top3 {
    color: #ef4444;
}

.hrw-title {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hrw-heat {
    margin-left: 6px;
    font-size: 10px;
    color: #9ca3af;
    flex-shrink: 0;
}

/* Navigation */
.hrw-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
}

.hrw-arrow {
    background: #f3f4f6;
    border: none;
    border-radius: 50%;
    width: 28px;
    height: 28px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1;
    color: #4b5563;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
.hrw-arrow:hover {
    background: #e5e7eb;
}

.hrw-dots {
    display: flex;
    gap: 6px;
}

.hrw-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #d1d5db;
    border: none;
    padding: 0;
    cursor: pointer;
}
.hrw-dot.active {
    background: #2563eb;
}

/* Loading */
.hrw-loading {
    text-align: center;
    padding: 20px;
    color: #9ca3af;
    font-size: 13px;
}
