.customer-reviews {
 display: flex;
 flex-direction: column;
 gap: 20px;
}

.review-card {
 border: 1px solid #ddd;
 border-radius: 8px;
 padding: 15px;
 box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
 background: #fff;
}

.review-header {
 display: flex;
 margin-bottom: 10px;
}

.review-avatar {
 width: 96px;
 height: 96px;
 border-radius: 50%;
 margin-right: 10px;
}

.review-info {
 display: flex;
 flex-direction: column;
}

.review-title {
    font-weight: 400;
    font-size: 1.875rem;
    line-height: 2.25rem;
    margin: 0;
    padding-top: .5rem;
    padding-bottom: .5rem;
	font-family: "Poppins 500", sans-serif;
}

.review-date {
    font-size: 16px;
    color: #666;
    font-family: "Poppins 500", sans-serif;
	margin-bottom: 0;
}

.review-body {
 font-size: 14px;
 color: #333;
}

.review-excerpt {
    font-weight: 500;
    font-size: 1.25rem;
    line-height: 1.75rem;
    margin: 0;
	font-family: "Poppins 500", sans-serif;
}

.review-content {
 margin-top: 5px;
}

.review-rating .star {
 color: #f5c518;
 font-size: 16px;
 margin-right: 2px;
}

#load-more {
 margin: 20px auto;
 display: block;
 padding: 10px 20px;
 background: var(--theme-color);
 color: var(--color-white);
 border: none;
 cursor: pointer;
	text-transform: capitalize;
	border-radius: 100px;
	font-size: 1.25rem;
    line-height: 1.75rem;
	max-width: 20rem;
    width: 100%;
	font-family: "Poppins 500", sans-serif;
}

#load-more:hover {
 background-color: #023350;
}

@media screen and (max-width: 576px) {
	.review-title {
    font-size: 20px;
	line-height: 1.3;
}

.review-excerpt {
    font-size: 16px;
    line-height: 1.5;
}
}
