/* ===== HOT SECTION ===== */
.ce-v6-hot-section {
    margin: var(--ce-space-lg) 0;
    padding: 1.5rem;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 24px 40px rgba(15, 23, 42, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.ce-v6-hot-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.ce-v6-hot-title {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.ce-v6-hot-icon {
    font-size: 1.8rem;
    filter: drop-shadow(0 4px 12px rgba(249, 115, 22, 0.35));
}

.ce-v6-hot-copy {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.ce-v6-hot-heading {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--ce-text-primary);
}

.ce-v6-hot-subheading {
    font-size: 0.85rem;
    color: var(--ce-text-secondary);
}

.ce-v6-hot-refresh {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.55rem 1.15rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    border: 1px solid rgba(37, 99, 235, 0.22);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.16), rgba(14, 165, 233, 0.08));
    color: rgba(15, 23, 42, 0.8);
    box-shadow: 0 12px 24px rgba(37, 99, 235, 0.08);
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.ce-v6-hot-refresh:hover {
    transform: translateY(-1px);
    box-shadow: 0 16px 30px rgba(37, 99, 235, 0.12);
}

.ce-v6-hot-refresh.is-busy {
    pointer-events: none;
    opacity: 0.75;
}

.ce-v6-hot-refresh.is-busy .ce-v6-hot-refresh-icon i {
    animation: ceHotSpin 0.9s linear infinite;
}

.ce-v6-hot-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.ce-v6-hot-card {
    display: grid;
    grid-template-columns: auto 76px 1fr;
    gap: 1rem;
    align-items: center;
    padding: 0.85rem 1rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 16px 28px rgba(15, 23, 42, 0.08);
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.ce-v6-hot-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 22px 36px rgba(15, 23, 42, 0.12);
}

.ce-v6-hot-rank {
    font-weight: 700;
    font-size: 1.05rem;
    color: rgba(15, 23, 42, 0.5);
}

.ce-v6-hot-media {
    width: 72px;
    height: 72px;
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(241, 245, 249, 0.9);
    border: 1px solid rgba(148, 163, 184, 0.35);
}

.ce-v6-hot-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.ce-v6-hot-audio,
.ce-v6-hot-media-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    color: rgba(37, 99, 235, 0.75);
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.12), rgba(59, 130, 246, 0.08));
}

.ce-v6-hot-body {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.ce-v6-hot-author {
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.ce-v6-hot-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid rgba(59, 130, 246, 0.18);
    box-shadow: 0 8px 16px rgba(15, 23, 42, 0.08);
}

.ce-v6-hot-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ce-v6-hot-avatar a {
    display: block;
    width: 100%;
    height: 100%;
}

.ce-v6-hot-author-meta {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.ce-v6-hot-username {
    font-weight: 600;
    color: var(--ce-text-primary);
}

.ce-v6-hot-age {
    font-size: 0.82rem;
    color: var(--ce-text-secondary);
}

.ce-v6-hot-excerpt {
    font-size: 0.92rem;
    color: rgba(71, 85, 105, 0.95);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.ce-v6-hot-empty-text {
    color: rgba(100, 116, 139, 0.6);
    font-style: italic;
}

.ce-v6-hot-stats {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    color: rgba(15, 23, 42, 0.65);
}

.ce-v6-hot-score {
    font-weight: 600;
    color: rgba(249, 115, 22, 0.95);
}

.ce-v6-hot-replies {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: rgba(37, 99, 235, 0.85);
}

.ce-v6-hot-placeholder,
.ce-v6-hot-empty,
.ce-v6-hot-error {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem;
    border-radius: 16px;
    background: rgba(241, 245, 249, 0.75);
    color: rgba(71, 85, 105, 0.9);
}

.ce-v6-hot-error {
    background: rgba(254, 226, 226, 0.85);
    color: rgba(220, 38, 38, 0.85);
}

@keyframes ceHotSpin {
    to { transform: rotate(360deg); }
}

@keyframes ceHotFocusPulse {
    0% { box-shadow: 0 34px 60px rgba(249, 115, 22, 0.18), 0 0 0 0 rgba(249, 115, 22, 0.4); }
    60% { box-shadow: 0 34px 60px rgba(249, 115, 22, 0.18), 0 0 0 20px rgba(249, 115, 22, 0); }
    100% { box-shadow: 0 34px 60px rgba(249, 115, 22, 0.18), 0 0 0 0 rgba(249, 115, 22, 0); }
}

