/* Oscar Addons - Post List Styles */
.oscar-post-list-container {
    display: flex;
    flex-direction: column;
}

.oscar-post-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.oscar-post-thumb {
    flex-shrink: 0;
    overflow: hidden;
}

.oscar-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.oscar-post-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex-grow: 1;
}

.oscar-post-title {
    margin: 0 0 4px 0;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.3;
}

.oscar-post-title a {
    text-decoration: none;
    transition: color 0.2s ease;
}

.oscar-post-meta {
    font-size: 12px;
    color: #777777;
}

.oscar-post-more {
    margin-top: 10px;
    font-size: 13px;
    font-weight: bold;
}

.oscar-post-more a {
    text-decoration: none;
    color: #0073aa;
    transition: opacity 0.2s;
}

.oscar-post-more a:hover {
    opacity: 0.8;
}
