/*
 * image_left_meta_listitem_widget — visual layer.
 *
 * Same chrome as `card_listitem_widget` (white surface, soft border,
 * hover lift, rounded thumb tile) but with a third text line
 * (`.image-left-meta-meta`) for tertiary metadata. Three-line clamp
 * on title/subtitle is dropped to two so the meta line has room
 * without the card growing.
 */

.image-left-meta-listitem-widget {
    display: block;
    background: #ffffff;
    border: 1px solid #e3e8ef;
    border-radius: 10px;
    padding: 12px;
    box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04), 0 1px 1px rgba(15, 23, 42, 0.06);
    transition: box-shadow 160ms ease, transform 160ms ease, border-color 160ms ease;
    box-sizing: border-box;
}

.image-left-meta-listitem-widget:hover {
    border-color: #cfd8e3;
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.08), 0 2px 4px rgba(15, 23, 42, 0.06);
    transform: translateY(-1px);
}

.image-left-meta-row {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 14px;
    min-height: 72px;
}

.image-left-meta-image {
    flex: 0 0 64px;
    width: 64px;
    height: 64px;
    border-radius: 8px;
    overflow: hidden;
    background: #f1f5f9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.image-left-meta-image > img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.image-left-meta-body {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3px;
}

.image-left-meta-title {
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    color: #0f172a;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.image-left-meta-subtitle {
    font-size: 13px;
    line-height: 1.4;
    color: #475569;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.image-left-meta-meta {
    font-size: 11px;
    line-height: 1.3;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
