.pms-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 10px 12px;
    margin-bottom: 8px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    background: #fff;
    transition: box-shadow 0.15s ease;
}

.pms-item:hover {
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.pms-item-thumb {
    flex: 0 0 96px;
    width: 96px;
    height: 96px;
    overflow: hidden;
    border-radius: 4px;
    align-self: center;
}

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

.pms-item-info {
    flex: 1;
    min-width: 0;
}

.pms-item-title {
    font-size: 1.05em;
    font-weight: bold;
    margin-bottom: 4px;
}

.pms-item-rate {
    font-size: 0.85em;
    color: #888;
    margin-bottom: 4px;
}

.pms-item-meta {
    font-size: 0.9em;
    color: #555;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.pms-item-date {
    font-size: 0.8em;
    color: #aaa;
    margin-top: 4px;
}
