/* Widget de Menciones Destacadas - Diseño Compacto y Elegante */
.featured-widget {
    border-radius: 12px;
    overflow: hidden;
}

.widget-icon-box {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.widget-icon-box i {
    width: 20px;
    height: 20px;
    color: #ffc107;
}

.mentions-showcase {
    display: grid;
    gap: 12px;
}

.showcase-card {
    background: white;
    border-radius: 8px;
    padding: 14px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    transition: all 0.2s;
    border-left: 3px solid #667eea;
}

.showcase-card:hover {
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.15);
    transform: translateX(3px);
    border-left-color: #764ba2;
}

.showcase-title {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a202c;
    text-decoration: none;
    line-height: 1.4;
    display: block;
    transition: color 0.2s;
    margin-bottom: 10px;
}

.showcase-title:hover {
    color: #667eea;
}

.showcase-excerpt {
    font-size: 0.85rem;
    line-height: 1.65;
    color: #4a5568;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.showcase-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    margin-bottom: 10px;
    padding: 8px 0;
    border-top: 1px solid #f1f5f9;
}

.meta-item {
    color: #64748b;
}

.meta-divider {
    color: #cbd5e0;
}

.meta-badge {
    padding: 2px 8px;
    background: #e0e7ff;
    color: #4338ca;
    border-radius: 4px;
    font-weight: 600;
    font-size: 0.7rem;
}

.meta-badge.tier-1 { background: #fef3c7; color: #92400e; }
.meta-badge.tier-2 { background: #e5e7eb; color: #475569; }
.meta-badge.tier-3 { background: #fed7aa; color: #7c2d12; }

.meta-stat {
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-weight: 600;
}

.meta-stat i {
    width: 12px;
    height: 12px;
}

.meta-stat.money { color: #059669; }
.meta-stat.reach { color: #3b82f6; }

.btn-showcase-compact {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 6px 14px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.8rem;
    transition: all 0.2s;
}

.btn-showcase-compact:hover {
    background: linear-gradient(135deg, #5568d3 0%, #6a3f8f 100%);
    color: white;
    box-shadow: 0 3px 8px rgba(102, 126, 234, 0.3);
}

.btn-showcase-compact i {
    width: 12px;
    height: 12px;
}

.premium-source {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 0;
    border-bottom: 1px solid #f1f5f9;
    margin-bottom: 10px;
    font-size: 0.8rem;
}

.source-logo {
    width: 16px;
    height: 16px;
    object-fit: contain;
    border-radius: 3px;
}

.source-name {
    font-weight: 600;
    color: #4a5568;
}

.source-divider {
    color: #cbd5e0;
}

.source-time {
    color: #a0aec0;
}

.info-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.metric-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.75rem;
    font-weight: 600;
}

.tier-badge-1 { 
    background: #fef3c7; 
    color: #92400e;
}

.tier-badge-2 { 
    background: #e5e7eb; 
    color: #475569;
}

.tier-badge-3 { 
    background: #fed7aa; 
    color: #7c2d12;
}

.type-badge { 
    background: #e0e7ff; 
    color: #4338ca;
}

.badge-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.7;
}

.badge-value {
    font-size: 0.9rem;
    font-weight: 700;
}

.badge-value-sm {
    font-size: 0.75rem;
    font-weight: 600;
}

.stat-box {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.8rem;
}

.stat-box i {
    width: 14px;
    height: 14px;
}

.stat-money {
    background: #ecfdf5;
    color: #059669;
}

.stat-reach {
    background: #eff6ff;
    color: #3b82f6;
}

.stat-value {
    font-size: 0.85rem;
    font-weight: 700;
}

.btn-showcase {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 8px 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.25s;
    border: none;
    width: 100%;
}

.btn-showcase:hover {
    background: linear-gradient(135deg, #5568d3 0%, #6a3f8f 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.btn-showcase i {
    width: 14px;
    height: 14px;
    transition: transform 0.2s;
}

.btn-showcase:hover i {
    transform: translateX(3px);
}

/* Responsive */
@media (min-width: 1200px) {
    .mentions-showcase {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 768px) and (max-width: 1199px) {
    .mentions-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
}

