.product-reviews-section {
margin-top: 30px;
}
.product-reviews-section h2 {
font-size: 24px;
margin-bottom: 15px;
}
.product-reviews-section .product-reviews-content {
display: flex;
flex-wrap: wrap;
gap: 15px;
}
.product-reviews-section .text-reviews {
width: 100%;
margin-bottom: 15px;
}
.product-reviews-section .container {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
gap: 15px;
}
.product-reviews-section .column {
flex: 1;
min-width: 200px;
max-width: 30%;
box-sizing: border-box;
padding: 10px;
margin: 10px;
background-color: #f4f4f4;
border: 1px solid #ccc;
text-align: center;
}
.product-reviews-section .image-reviews img,
.product-reviews-section .video-reviews iframe {
max-width: 100%;
height: auto;
} @media (max-width: 992px) {
.product-reviews-section .column {
max-width: 45%;
}
}
@media (max-width: 768px) {
.product-reviews-section .column {
max-width: 100%;
}
}