/* Trending Sidebar Görsel İyileştirmeleri */
.trending-item {
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
}

.trending-item:hover {
    background: linear-gradient(135deg, rgba(23, 162, 184, 0.1), rgba(32, 201, 151, 0.1));
    transform: translateX(5px);
    box-shadow: 0 2px 10px rgba(23, 162, 184, 0.2);
}

.trending-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.trending-content h4 {
    font-size: 13px;
    line-height: 1.3;
    margin: 0;
    color: #2c3e50;
}

.read-count-big {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 50px;
    text-align: center;
}

.count-number-big {
    background: linear-gradient(135deg, #17a2b8, #20c997);
    color: white;
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 16px;
    font-weight: bold;
    min-width: 40px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(23, 162, 184, 0.4);
    margin-bottom: 2px;
}

.count-text-small {
    color: #7f8c8d;
    font-size: 9px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.trending-number {
    background: linear-gradient(135deg, #17a2b8, #20c997) !important;
    color: white !important;
    font-weight: bold !important;
    box-shadow: 0 2px 5px rgba(23, 162, 184, 0.3);
    min-width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.trending-thumb {
    border: 2px solid transparent;
    transition: all 0.3s ease;
    width: 50px;
    height: 40px;
    object-fit: cover;
}

.trending-item:hover .trending-thumb {
    border-color: #17a2b8;
    transform: scale(1.05);
}

.trending-item:hover .count-number-big {
    animation: pulse 1.5s infinite;
    transform: scale(1.1);
}

@keyframes pulse {
    0% { box-shadow: 0 3px 10px rgba(23, 162, 184, 0.4); }
    50% { box-shadow: 0 5px 20px rgba(23, 162, 184, 0.7); }
    100% { box-shadow: 0 3px 10px rgba(23, 162, 184, 0.4); }
}