body {
    font-family: Arial, sans-serif;
    background-color: #f5f5f5;
    margin: 0;
    padding: 20px;
    user-select: none;
}

.list {
    max-width: 600px;
    min-width: 500px;
    margin: 0;
}

.item-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.item {
    display: flex;
    gap: 15px;
    background: #fdfdfd;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 10px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
    align-items: flex-start;
    transition: transform 0.2s ease;
}

.item:hover {
    transform: scale(1.01);
}

.thumbnail {
    width: 200px;
    height: 280px;
    object-fit: cover;
    border-radius: 6px;
    border: solid 1px;
    border-color: silver;
    background: #ddd;
}

.content {
    flex: 1;
}

.title {
    font-size: 19px;
    font-weight: bold;
    margin: 0 0 5px;
}

.description {
    font-size: 15px;
    text-align: justify;
    color: #555;
    margin: 0;
}

.star {
    color: gold;
}