/**
 * Post List Widget Styles
 */
.post-list-widget {
    width: 100%;
}

.post-list-item {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.post-list-widget.has-border .post-list-item {
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.post-list-item .post-list-image {
    display: block;
    overflow: hidden;
    flex-shrink: 0;
}

.post-list-item .post-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

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

.post-list-item .post-list-image .no-image {
    width: 100%;
    height: 100%;
    background: #f0f0f0;
}

.post-list-item .post-list-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    min-width: 0;
}

.post-list-item .post-list-title {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.4;
}

.post-list-item .post-list-title a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-list-item .post-list-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
}

.post-list-item .post-list-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.post-list-item .post-list-arrow img,
.post-list-item .post-list-arrow svg {
    display: block;
    object-fit: contain;
}

.post-list-item:hover .post-list-arrow {
    transform: none;
}

@media (max-width: 767px) {
    .post-list-item {
        flex-direction: row;
        align-items: flex-start;
    }
}
