/* Trending Posts Shortcode Stílusok */

.trending-posts-container {
    display: flex;
    flex-direction: column;
    gap: 16px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    border: 1px solid #e5e7eb;
    padding: 20px;
    border-radius: 10px;
    background: #fff;
}

.trending-post-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 5px 0;
    border-bottom: 1px solid #f3f4f6;
}

.trending-post-item:last-child {
    border-bottom: none;
}

.trending-post-icon svg {
    width: 50px;
    height: 50px;
}

.trending-post-icon {
    display: flex;
        flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 80px;
    flex-shrink: 0;
}

.trending-post-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trending-post-content {
    flex-grow: 1;
}

.trending-post-title {
    margin: 0;
    font-size: 15px;
    font-weight: 500;
    line-height: 1.4;
}

.trending-post-title a {
    color: #111827;
    text-decoration: none;
}

.trending-post-title a:hover {
    color: #374151;
    text-decoration: underline;
}

/* Responsive design */
@media (max-width: 768px) {
    .trending-posts-container {
        padding: 16px;
        gap: 12px;
    }
    
    .trending-post-item {
        gap: 12px;
        padding: 10px 0;
    }
    
    .trending-post-icon {
        min-width: 70px;
        gap: 6px;
    }
    
    .trending-post-label {
        font-size: 11px;
    }
    
    .trending-post-title {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .trending-posts-container {
        padding: 12px;
        gap: 10px;
    }
    
    .trending-post-item {
        gap: 10px;
        padding: 8px 0;
    }
    
    .trending-post-icon {
        min-width: 60px;
        gap: 4px;
    }
    
    .trending-post-icon svg {
        width: 16px;
        height: 16px;
    }
    
    .trending-post-label {
        font-size: 10px;
    }
    
    .trending-post-title {
        font-size: 13px;
    }
}