/* Styles for Most Read News section */
.sidebar-container {
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
}

.sidebar-section {
    padding: 15px;
}

.sidebar-title {
    font-size: 20px;
    font-weight: 700;
    color: #086924;
    border-bottom: 2px solid #43b26c;
    padding-bottom: 10px;
    margin-bottom: 20px;
    position: relative;
}

.sidebar-title:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, #a7fb6c 0%, #43b26c 100%);
}

.most-read-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.most-read-item {
    display: flex;
    gap: 10px;
    text-decoration: none;
    color: inherit;
    padding: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.most-read-item:hover {
    background-color: rgba(67, 178, 108, 0.1);
    transform: translateY(-2px);
}

.most-read-image {
    flex: 0 0 80px;
    height: 60px;
    overflow: hidden;
    border-radius: 6px;
}

.most-read-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.most-read-item:hover .most-read-image img {
    transform: scale(1.05);
}

.placeholder-image {
    width: 100%;
    height: 100%;
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.most-read-content {
    flex: 1;
}

.most-read-content h4 {
    font-size: 14px;
    margin: 0 0 8px 0;
    line-height: 1.3;
    font-weight: 600;
    color: #333;
    transition: color 0.3s ease;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.most-read-item:hover .most-read-content h4 {
    color: #086924;
}

.most-read-meta {
    display: flex;
    gap: 15px;
    font-size: 12px;
    color: #777;
}

.most-read-meta .date,
.most-read-meta .views {
    display: flex;
    align-items: center;
    gap: 5px;
}

.most-read-meta i {
    font-size: 12px;
    color: #43b26c;
}

@media (max-width: 768px) {
    .sidebar-container {
        width: 100% !important;
        margin-top: 30px;
    }
    
    .most-read-image {
        flex: 0 0 70px;
        height: 50px;
    }
    
    .most-read-content h4 {
        font-size: 13px;
    }
    
    .most-read-meta {
        font-size: 11px;
    }
} 