.reviews-content {
    margin: 2rem 3rem 0 3rem;
    padding-top: 4rem;
}

.reviews-content h1 {
    text-align: center;
}

.reviews {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem 2rem;
    max-width: 1300px;
    margin: 0 auto;
}

.review-item {
    background-color: #0F121F;
    border-radius: 20px;
    border: 3px solid #aa9cd9;
    padding: 10px 20px;
    width: 22rem;
    display: flex;
    flex-direction: column;
}

.header-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-right {
    text-align: right;
    line-height: 0;
    color: #ccc;
}

.footer-item {
    display: flex;
    justify-content: space-between;
    margin-top: auto;
    align-items: center;
}

.review-item p {
    word-break: break-word;
}

.review-item .product-name {
    word-break: break-word;
}

.review-item .verified-purchase {
    white-space: nowrap;
    margin-left: 0.5rem;
}

.rating {
    font-size: 1.2rem;
    cursor: pointer;
    color: #ffcd3c;
}

@media screen and (max-width: 600px) {
    .footer-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-item p {
        margin: 0.5rem;
    }
}

@media screen and (max-width: 450px) {
    .header-item {
        flex-direction: column;
    }

    .header-right {
        text-align: center;
    }

    .review-item p {
        text-align: center;
    }

}
