/* ===================================
   MOST READ - ARTICLE PAGE (Compact)
   =================================== */

.most-read-article {
    margin: 4rem 0;
    padding: 2rem 0;
    background: var(--bg-secondary, #0f1419);
}

.most-read-article .section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.most-read-article .section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary, #ffffff);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.most-read-article .section-title i {
    color: var(--accent-primary, #00e5ff);
}

.most-read-article .section-subtitle {
    color: var(--text-muted, #8b9dc3);
    font-size: 1rem;
}

.most-read-grid-article-compact {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.most-read-grid-article-compact .most-read-card {
    position: relative;
    background: var(--card-bg, rgba(255, 255, 255, 0.03));
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.most-read-grid-article-compact .most-read-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 229, 255, 0.3);
    border-color: var(--accent-primary, #00e5ff);
}

.most-read-grid-article-compact .most-read-card-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.most-read-grid-article-compact .most-read-rank {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.most-read-grid-article-compact .rank-number {
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 0.4rem 0.6rem;
    border-radius: 8px;
    font-weight: 800;
    font-size: 0.85rem;
    backdrop-filter: blur(10px);
}

.most-read-grid-article-compact .hot-badge {
    font-size: 1rem;
    animation: flicker 2s infinite;
}

@keyframes flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.most-read-grid-article-compact .most-read-card-image {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
}

.most-read-grid-article-compact .most-read-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.most-read-grid-article-compact .most-read-card:hover .most-read-card-image img {
    transform: scale(1.1);
}

.most-read-grid-article-compact .most-read-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.most-read-grid-article-compact .most-read-card:hover .most-read-overlay {
    opacity: 0.4;
}

.most-read-grid-article-compact .most-read-views-badge {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: rgba(0, 229, 255, 0.9);
    color: #000;
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    z-index: 2;
}

.most-read-grid-article-compact .most-read-card-content {
    padding: 1rem;
}

.most-read-grid-article-compact .most-read-meta {
    margin-bottom: 0.5rem;
}

.most-read-grid-article-compact .most-read-category {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-muted, #8b9dc3);
    font-weight: 600;
}

.most-read-grid-article-compact .most-read-category i {
    color: var(--accent-primary, #00e5ff);
}

.most-read-grid-article-compact .most-read-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary, #ffffff);
    margin-bottom: 0.5rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

.most-read-grid-article-compact .most-read-card:hover .most-read-title {
    color: var(--accent-primary, #00e5ff);
}

.most-read-grid-article-compact .most-read-excerpt {
    color: var(--text-muted, #8b9dc3);
    font-size: 0.8rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.most-read-grid-article-compact .most-read-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.most-read-grid-article-compact .most-read-reading-time {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--text-muted, #8b9dc3);
}

.most-read-grid-article-compact .most-read-read-more {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--accent-primary, #00e5ff);
    font-weight: 600;
    transition: transform 0.3s ease;
}

.most-read-grid-article-compact .most-read-card:hover .most-read-read-more {
    transform: translateX(4px);
}

/* Responsive */
@media (max-width: 1024px) {
    .most-read-grid-article-compact {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .most-read-article {
        margin: 3rem 0;
        padding: 1.5rem 0;
    }
    
    .most-read-article .section-title {
        font-size: 1.75rem;
    }
    
    .most-read-grid-article-compact {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
}
