.recensioni-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
    justify-content: center;
}

.recensione {
    padding: 5px;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1 1 300px;
    overflow: hidden;
}
.recensione-img-container {
    width: 100%;
    overflow: hidden;
    border-radius: 10px;
}
.recensione-img {
    min-height: 174px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.recensione-img-container:hover .recensione-img {
    transform: scale(2.05);
}

.recensione-content {
    padding: 5px;
    text-align: left;
}

.recensione-date {
    font-size: 0.9em;
    color: #666;
    margin-bottom: 10px;
}

.recensione h2 {
    margin: 0 0 10px;
    font-size: 1.2em;
}

.recensione a {
    text-decoration: none;
    color: var(--pulpcorn);
}

.recensione a:hover {
    text-decoration: underline;
}

.recensione-author {
    display: flex;
    align-items: center;
    justify-content: right;
    margin-top: 10px;
}

.author-img {
    border-radius: 50%;
    width: 40px;
    height: 40px;
    margin-right: 10px;
}

.author-name {
    font-size: 0.9em;
    color: #333;
}

.author-name span {
    font-weight: bold;
}
