/* Best Content Section */
.best-content-section {
    padding: var(--space-2xl) var(--container-padding);
    background-color: var(--bg-light);
}

.best-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
}

.best-content-featured {
    height: 100%;
}

.best-content-card {
    display: block;
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.best-content-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.best-content-card:hover .best-content-image img {
    transform: scale(1.05);
}

.best-content-card.large {
    height: 100%;
    min-height: 420px;
}

.best-content-card.small {
    display: flex;
    gap: var(--space-md);
    background-color: var(--bg-white);
    padding: var(--space-md);
}

.best-content-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-sm);
}

.best-content-card.large .best-content-image {
    position: absolute;
    inset: 0;
    border-radius: var(--radius-md);
}

.best-content-card.small .best-content-image {
    width: 140px;
    height: 100px;
    flex-shrink: 0;
}

.best-content-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.best-content-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-xl);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, transparent 100%);
    color: var(--text-white);
}

.best-content-overlay h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: var(--space-xs);
}

.best-content-author {
    font-size: 14px;
    opacity: 0.9;
}

.best-content-list {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.best-content-card.small .best-content-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.best-content-card.small .best-content-info h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: var(--space-xs);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.best-content-card.small .best-content-info .best-content-author {
    font-size: 14px;
    color: var(--text-secondary);
    opacity: 1;
}

/* Responsive */
@media (max-width: 1024px) {
    .best-content-grid {
        grid-template-columns: 1fr;
    }
    
    .best-content-featured {
        min-height: 320px;
    }
}

@media (max-width: 768px) {
    .best-content-card.small {
        flex-direction: column;
    }
    
    .best-content-card.small .best-content-image {
        width: 100%;
        height: 180px;
    }
}
