.sidebar-latest-news-widget {
    margin-bottom: 20px;
}

.sidebar-news-item {
    display: flex;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #eee;
}

.sidebar-news-image {
    flex: 0 0 80px;
    margin-right: 15px;
}

.sidebar-news-image img {
    width: 100%;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
}

.sidebar-news-content {
    flex: 1;
}

.sidebar-news-title {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.sidebar-news-title a {
    color: rgb(44, 47, 49);
    text-decoration: none;
    transition: color 0.3s ease;
}

.sidebar-news-title a:hover {
    color: #ed2024;
}

@media (max-width: 768px) {
    .sidebar-news-item {
        flex-direction: column;
    }
    
    .sidebar-news-image {
        flex: none;
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .sidebar-news-image img {
        height: 120px;
    }
}