.sidebar-latest-posts-7a23b339 {
    width: 100%;
}

.slp-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.slp-item {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
}

.slp-item-image {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    overflow: hidden;
    border-radius: 4px;
}

.slp-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.slp-item:hover .slp-item-image img {
    transform: scale(1.05);
}

.slp-item-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.slp-item-title {
    margin: 0;
    font-size: 16px;
    line-height: 1.3;
}

.slp-item-title a {
    color: #333;
    text-decoration: none;
    transition: color 0.3s ease;
}

.slp-item-date {
    font-size: 13px;
    color: #888;
}

.slp-item-excerpt {
    font-size: 14px;
    color: #666;
    margin-top: 5px;
}

/* Layout Variations */
.slp-layout-card .slp-item {
    flex-direction: column;
    align-items: stretch;
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 8px;
}

.slp-layout-card .slp-item-image {
    width: 100%;
    height: 180px;
}

.slp-layout-minimal .slp-item {
    border-bottom: 1px solid #eaeaea;
    padding-bottom: 15px;
}
.slp-layout-minimal .slp-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}