.arvostelu-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0px;
}

.review-item {
    min-height: 300px;
    padding: 20px;
    border-radius: 0px;
    color: #fff;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
	border-right: 0.5px solid rgba(0,0,0,0.1);
}

.review-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.2);
    border-radius: 0px;
}

.review-content {
    position: relative;
    z-index: 2;
	font-size: 1em;
}

.stars {
    text-align: center;
    font-size: 3em;
    margin-top: 10px;
    color: gold;
}


