/* Frontend Styles for Sotellus Review Plugin */
.sotellus-review-wrapper {
	max-width: 1400px;
	margin: 20px auto;
	padding: 0 15px;
	width: 100%;
	box-sizing: border-box;
}

.sotellus-review-container {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	width: 100%;
}

.sotellus-review-item {
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 12px;
	padding: 25px;
	box-shadow: 0 2px 8px rgba(0,0,0,0.08);
	transition: all 0.3s ease;
	display: flex;
	flex-direction: column;
	height: 100%;
	box-sizing: border-box;
}

.sotellus-review-item:hover {
	box-shadow: 0 6px 20px rgba(0,0,0,0.15);
	transform: translateY(-5px);
}

/* Review Header */
.sotellus-review-header {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 20px;
}

.sotellus-review-avatar {
	width: 50px;
	height: 50px;
	border-radius: 50%;
	background: #87CEEB;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.sotellus-review-avatar-initial {
	color: #fff;
	font-size: 24px;
	font-weight: 600;
	line-height: 1;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.sotellus-review-header-content {
	flex: 1;
	min-width: 0;
}

.sotellus-review-header-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 8px;
	gap: 10px;
	flex-wrap: wrap;
}

.sotellus-review-name {
	margin: 0;
	font-size: 18px;
	font-weight: 600;
	color: #333;
	line-height: 1.3;
	word-wrap: break-word;
	overflow-wrap: break-word;
	flex: 1;
	min-width: 0;
}

.sotellus-review-date {
	font-size: 14px;
	color: #999;
	font-weight: 400;
	white-space: nowrap;
}

/* Star Rating */
.sotellus-review-stars {
	display: flex;
	align-items: center;
	gap: 2px;
	flex-wrap: wrap;
}

.sotellus-review-stars .star {
	font-size: 18px;
	line-height: 1;
	flex-shrink: 0;
}

.sotellus-review-stars .star-filled {
	color: #FFD700;
}

.sotellus-review-stars .star-empty {
	color: #ddd;
}

/* Review Text */
.sotellus-review-text {
	font-size: 15px;
	line-height: 1.7;
	color: #333;
	margin-bottom: 20px;
	flex-grow: 1;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

/* Video Preview */
.sotellus-review-video-preview {
	margin-bottom: 20px;
	flex-grow: 1;
	position: relative;
	width: 100%;
}

.sotellus-review-video-thumbnail {
	position: relative;
	display: block;
	width: 100%;
	padding-bottom: 56.25%; /* 16:9 aspect ratio */
	background: #000;
	border-radius: 8px;
	overflow: hidden;
	cursor: pointer;
	text-decoration: none;
}

.sotellus-review-video-thumbnail img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.sotellus-review-video-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.3);
	transition: background 0.3s ease;
}

.sotellus-review-video-thumbnail:hover .sotellus-review-video-overlay {
	background: rgba(0, 0, 0, 0.5);
}

.sotellus-review-video-play-button {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 68px;
	height: 48px;
	z-index: 2;
	transition: transform 0.3s ease;
	pointer-events: none;
}

.sotellus-review-video-thumbnail:hover .sotellus-review-video-play-button {
	transform: translate(-50%, -50%) scale(1.1);
}

.sotellus-review-video-placeholder {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
	min-height: 200px;
	border-radius: 8px;
	text-decoration: none;
	transition: opacity 0.3s ease;
	cursor: pointer;
	padding-bottom: 0;
}

.sotellus-review-video-placeholder:hover {
	opacity: 0.9;
	transform: scale(1.02);
}

.sotellus-review-video-placeholder-bg {
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 15px;
}

.sotellus-review-video-play-text {
	color: #fff;
	font-size: 14px;
	font-weight: 500;
	text-align: center;
}

/* Video Modal */
.sotellus-review-video-modal {
	display: none;
	position: fixed;
	z-index: 10000;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	overflow: auto;
	animation: fadeIn 0.3s ease;
}

.sotellus-review-video-modal.active {
	display: flex;
	align-items: center;
	justify-content: center;
}

.sotellus-review-video-modal-content {
	position: relative;
	width: 90%;
	max-width: 1200px;
	margin: auto;
	animation: slideDown 0.3s ease;
}

.sotellus-review-video-modal-body {
	width: 100%;
	position: relative;
}

.sotellus-review-video-modal-close {
	position: absolute;
	top: -40px;
	right: 0;
	color: #fff;
	font-size: 40px;
	font-weight: 300;
	cursor: pointer;
	line-height: 1;
	z-index: 10001;
	transition: opacity 0.3s ease;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.5);
	border-radius: 50%;
}

.sotellus-review-video-modal-close:hover {
	opacity: 0.7;
	background: rgba(0, 0, 0, 0.7);
}

.sotellus-review-video-modal-iframe {
	width: 100%;
	aspect-ratio: 16 / 9;
	border: none;
	border-radius: 8px;
}

.sotellus-review-video-modal-link {
	background: #fff;
	border-radius: 8px;
	padding: 40px;
	text-align: center;
	min-height: 300px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.sotellus-review-video-modal-link p {
	font-size: 18px;
	color: #333;
	margin-bottom: 20px;
}

.sotellus-review-video-modal-button {
	display: inline-block;
	padding: 12px 30px;
	background: #ff9800;
	color: #fff;
	text-decoration: none;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 600;
	transition: background 0.3s ease;
}

.sotellus-review-video-modal-button:hover {
	background: #f57c00;
	color: #fff;
}

@keyframes fadeIn {
	from {
		opacity: 0;
	}
	to {
		opacity: 1;
	}
}

@keyframes slideDown {
	from {
		transform: translateY(-50px);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}

/* Review Detail Modal */
.sotellus-review-detail-modal {
	display: none;
	position: fixed;
	z-index: 10001;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	overflow: auto;
	animation: fadeIn 0.3s ease;
}

.sotellus-review-detail-modal.active {
	display: flex;
	align-items: center;
	justify-content: center;
}

.sotellus-review-detail-modal-content {
	position: relative;
	width: 90%;
	max-width: 900px;
	margin: auto;
	background: #fff;
	border-radius: 12px;
	padding: 30px;
	max-height: 90vh;
	overflow-y: auto;
	animation: slideDown 0.3s ease;
	box-sizing: border-box;
}

.sotellus-review-detail-modal-close {
	position: absolute;
	top: 15px;
	right: 15px;
	color: #333;
	font-size: 32px;
	font-weight: 300;
	cursor: pointer;
	line-height: 1;
	z-index: 10002;
	transition: opacity 0.3s ease;
	width: 32px;
	height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: rgba(0, 0, 0, 0.05);
	border-radius: 50%;
}

.sotellus-review-detail-modal-close:hover {
	opacity: 0.7;
	background: rgba(0, 0, 0, 0.1);
}

.sotellus-review-detail-modal-body {
	width: 100%;
}

.sotellus-review-detail-content {
	width: 100%;
}

.sotellus-review-detail-header {
	display: flex;
	align-items: flex-start;
	gap: 15px;
	margin-bottom: 25px;
	padding-bottom: 20px;
	border-bottom: 2px solid #f0f0f0;
}

.sotellus-review-detail-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background: #87CEEB;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
}

.sotellus-review-detail-avatar-initial {
	color: #fff;
	font-size: 28px;
	font-weight: 600;
	line-height: 1;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.sotellus-review-detail-header-content {
	flex: 1;
	min-width: 0;
}

.sotellus-review-detail-header-top {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 10px;
	gap: 15px;
	flex-wrap: wrap;
}

.sotellus-review-detail-name {
	margin: 0;
	font-size: 22px;
	font-weight: 600;
	color: #333;
	line-height: 1.3;
	word-wrap: break-word;
	overflow-wrap: break-word;
	flex: 1;
	min-width: 0;
}

.sotellus-review-detail-date {
	font-size: 15px;
	color: #999;
	font-weight: 400;
	white-space: nowrap;
}

.sotellus-review-detail-stars {
	display: flex;
	align-items: center;
	gap: 3px;
	flex-wrap: wrap;
}

.sotellus-review-detail-stars .star {
	font-size: 20px;
	line-height: 1;
	flex-shrink: 0;
}

.sotellus-review-detail-stars .star-filled {
	color: #FFD700;
}

.sotellus-review-detail-stars .star-empty {
	color: #ddd;
}

.sotellus-review-detail-text {
	font-size: 16px;
	line-height: 1.8;
	color: #333;
	margin-bottom: 25px;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.sotellus-review-detail-video {
	width: 100%;
	margin-bottom: 25px;
	border-radius: 8px;
	overflow: hidden;
}

.sotellus-review-detail-video iframe {
	width: 100%;
	aspect-ratio: 16 / 9;
	border: none;
	border-radius: 8px;
}

.sotellus-review-detail-video-link {
	text-align: center;
	margin-bottom: 25px;
}

.sotellus-review-detail-video-button {
	display: inline-block;
	padding: 12px 30px;
	background: #ff9800;
	color: #fff;
	text-decoration: none;
	border-radius: 6px;
	font-size: 16px;
	font-weight: 600;
	transition: background 0.3s ease;
}

.sotellus-review-detail-video-button:hover {
	background: #f57c00;
	color: #fff;
}

.sotellus-review-detail-footer {
	margin-top: 25px;
	padding-top: 20px;
	border-top: 1px solid #f0f0f0;
}

.sotellus-review-detail-attribution {
	display: flex;
	align-items: center;
	gap: 8px;
}

.sotellus-review-detail-attribution-text {
	font-size: 14px;
	color: #999;
	line-height: 1.4;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.sotellus-review-text.sotellus-review-video {
	background: #e3f2fd;
	border-left: 4px solid #2196f3;
	border-radius: 4px;
	padding: 12px;
}

.sotellus-review-video-link {
	color: #2196f3;
	text-decoration: none;
	font-weight: 600;
	display: inline-block;
}

.sotellus-review-video-link:hover {
	text-decoration: underline;
}

/* Review Footer */
.sotellus-review-footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: auto;
	padding-top: 15px;
	border-top: 1px solid #f0f0f0;
	gap: 15px;
	flex-wrap: wrap;
}

.sotellus-review-attribution {
	display: flex;
	align-items: center;
	gap: 8px;
	flex: 1;
	min-width: 0;
}

.sotellus-review-icon {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
}

.sotellus-review-attribution-text {
	font-size: 13px;
	color: #999;
	line-height: 1.4;
	word-wrap: break-word;
	overflow-wrap: break-word;
}

.sotellus-review-read-more {
	font-size: 13px;
	color: #999;
	text-decoration: none;
	white-space: nowrap;
	flex-shrink: 0;
	transition: color 0.3s ease;
}

.sotellus-review-read-more:hover {
	color: #ff9800;
	text-decoration: underline;
}

/* Pagination Styles */
.sotellus-review-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 40px 0 20px;
	gap: 10px;
	flex-wrap: wrap;
}

.sotellus-review-pagination-link {
	display: inline-block;
	padding: 10px 16px;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	color: #333;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
	min-width: 44px;
	text-align: center;
	box-sizing: border-box;
}

.sotellus-review-pagination-link:hover {
	background: #f5f5f5;
	border-color: #ff9800;
	color: #ff9800;
	transform: translateY(-2px);
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.sotellus-review-pagination-link.sotellus-review-pagination-active {
	background: #ff9800;
	border-color: #ff9800;
	color: #fff;
	font-weight: 600;
	cursor: default;
}

.sotellus-review-pagination-link.sotellus-review-pagination-active:hover {
	background: #ff9800;
	color: #fff;
	transform: none;
	box-shadow: none;
}

.sotellus-review-pagination-numbers {
	display: flex;
	gap: 8px;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
}

.sotellus-review-pagination-dots {
	padding: 10px 8px;
	color: #999;
	font-size: 14px;
}

.sotellus-review-pagination-prev,
.sotellus-review-pagination-next {
	font-weight: 600;
}

.sotellus-review-pagination-info {
	text-align: center;
	color: #666;
	font-size: 14px;
	margin-bottom: 20px;
	padding: 10px;
	background: #f9f9f9;
	border-radius: 6px;
	word-wrap: break-word;
}

/* Large Desktop (1400px and above) - 3 columns */
@media (min-width: 1400px) {
	.sotellus-review-wrapper {
		max-width: 1400px;
		padding: 0 20px;
	}
	
	.sotellus-review-container {
		gap: 30px;
	}
}

/* Desktop (1024px - 1399px) - 3 columns */
@media (max-width: 1399px) and (min-width: 1024px) {
	.sotellus-review-wrapper {
		padding: 0 20px;
	}
	
	.sotellus-review-container {
		gap: 20px;
	}
}

/* Tablet Landscape (992px - 1023px) - 2 columns */
@media (max-width: 1023px) and (min-width: 992px) {
	.sotellus-review-container {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	
	.sotellus-review-wrapper {
		padding: 0 20px;
	}
}

/* Tablet Portrait (768px - 991px) - 2 columns */
@media (max-width: 991px) and (min-width: 768px) {
	.sotellus-review-container {
		grid-template-columns: repeat(2, 1fr);
		gap: 18px;
	}
	
	.sotellus-review-wrapper {
		padding: 0 15px;
	}
	
	.sotellus-review-item {
		padding: 20px;
	}
	
	.sotellus-review-name {
		font-size: 17px;
	}
	
	.sotellus-review-stars .star {
		font-size: 16px;
	}
	
	.sotellus-review-text {
		font-size: 14px;
	}
	
	.sotellus-review-video-preview {
		margin-bottom: 15px;
	}
	
	.sotellus-review-video-play-button {
		width: 50px;
		height: 35px;
	}
	
	.sotellus-review-pagination {
		gap: 8px;
		margin: 35px 0 18px;
	}
	
	.sotellus-review-pagination-link {
		padding: 9px 14px;
		font-size: 13px;
		min-width: 42px;
	}
}

/* Mobile Landscape (480px - 767px) - 2 columns */
@media (max-width: 767px) and (min-width: 480px) {
	.sotellus-review-container {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}
	
	.sotellus-review-wrapper {
		padding: 0 10px;
	}
	
	.sotellus-review-item {
		padding: 18px;
		border-radius: 10px;
	}
	
	.sotellus-review-header {
		gap: 12px;
		margin-bottom: 15px;
	}
	
	.sotellus-review-avatar {
		width: 45px;
		height: 45px;
	}
	
	.sotellus-review-avatar-initial {
		font-size: 20px;
	}
	
	.sotellus-review-name {
		font-size: 16px;
	}
	
	.sotellus-review-date {
		font-size: 12px;
	}
	
	.sotellus-review-stars {
		gap: 2px;
	}
	
	.sotellus-review-stars .star {
		font-size: 15px;
	}
	
	.sotellus-review-text {
		font-size: 13px;
		line-height: 1.6;
		margin-bottom: 15px;
	}
	
	.sotellus-review-video-preview {
		margin-bottom: 15px;
	}
	
	.sotellus-review-video-play-button {
		width: 50px;
		height: 35px;
	}
	
	.sotellus-review-video-placeholder {
		min-height: 150px;
	}
	
	.sotellus-review-video-play-text {
		font-size: 12px;
	}
	
	.sotellus-review-footer {
		padding-top: 12px;
		gap: 10px;
	}
	
	.sotellus-review-attribution-text {
		font-size: 12px;
	}
	
	.sotellus-review-read-more {
		font-size: 12px;
	}
	
	.sotellus-review-pagination {
		gap: 6px;
		margin: 30px 0 15px;
	}
	
	.sotellus-review-pagination-link {
		padding: 8px 12px;
		font-size: 12px;
		min-width: 38px;
	}
	
	.sotellus-review-pagination-numbers {
		gap: 4px;
	}
	
	.sotellus-review-pagination-dots {
		padding: 8px 4px;
		font-size: 12px;
	}
	
	.sotellus-review-pagination-info {
		font-size: 12px;
		padding: 8px;
	}
}

/* Mobile Portrait (below 480px) - 1 column */
@media (max-width: 479px) {
	.sotellus-review-container {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.sotellus-review-wrapper {
		padding: 0 10px;
	}
	
	.sotellus-review-item {
		padding: 18px;
		border-radius: 10px;
	}
	
	.sotellus-review-header {
		gap: 12px;
		margin-bottom: 15px;
	}
	
	.sotellus-review-avatar {
		width: 45px;
		height: 45px;
	}
	
	.sotellus-review-avatar-initial {
		font-size: 20px;
	}
	
	.sotellus-review-header-top {
		flex-direction: column;
		align-items: flex-start;
		gap: 5px;
	}
	
	.sotellus-review-name {
		font-size: 16px;
	}
	
	.sotellus-review-date {
		font-size: 12px;
	}
	
	.sotellus-review-stars {
		gap: 2px;
	}
	
	.sotellus-review-stars .star {
		font-size: 15px;
	}
	
	.sotellus-review-text {
		font-size: 14px;
		line-height: 1.6;
		margin-bottom: 15px;
	}
	
	.sotellus-review-video-preview {
		margin-bottom: 15px;
	}
	
	.sotellus-review-video-play-button {
		width: 50px;
		height: 35px;
	}
	
	.sotellus-review-video-placeholder {
		min-height: 180px;
	}
	
	.sotellus-review-video-play-text {
		font-size: 13px;
	}
	
	.sotellus-review-video-modal-content {
		width: 95%;
	}
	
	.sotellus-review-video-modal-close {
		top: -30px;
		font-size: 30px;
	}
	
	.sotellus-review-footer {
		flex-direction: column;
		align-items: flex-start;
		padding-top: 12px;
		gap: 10px;
	}
	
	.sotellus-review-attribution {
		width: 100%;
	}
	
	.sotellus-review-attribution-text {
		font-size: 12px;
	}
	
	.sotellus-review-read-more {
		font-size: 12px;
		align-self: flex-end;
	}
	
	.sotellus-review-pagination {
		gap: 4px;
		margin: 25px 0 15px;
		flex-direction: column;
	}
	
	.sotellus-review-pagination-numbers {
		order: 2;
		width: 100%;
		justify-content: center;
	}
	
	.sotellus-review-pagination-prev {
		order: 1;
		width: 100%;
		max-width: 200px;
	}
	
	.sotellus-review-pagination-next {
		order: 3;
		width: 100%;
		max-width: 200px;
	}
	
	.sotellus-review-pagination-link {
		padding: 10px 14px;
		font-size: 13px;
		min-width: 44px;
		width: auto;
	}
	
	.sotellus-review-pagination-prev,
	.sotellus-review-pagination-next {
		width: 100%;
		max-width: none;
	}
	
	.sotellus-review-pagination-numbers {
		gap: 4px;
	}
	
	.sotellus-review-pagination-dots {
		padding: 10px 4px;
		font-size: 12px;
	}
	
	.sotellus-review-pagination-info {
		font-size: 12px;
		padding: 8px;
		line-height: 1.4;
	}
	
	/* Disable hover effects on mobile */
	.sotellus-review-item:hover {
		transform: none;
	}
}

/* Very Small Mobile (below 360px) */
@media (max-width: 359px) {
	.sotellus-review-wrapper {
		padding: 0 8px;
	}
	
	.sotellus-review-item {
		padding: 15px;
	}
	
	.sotellus-review-avatar {
		width: 40px;
		height: 40px;
	}
	
	.sotellus-review-avatar-initial {
		font-size: 18px;
	}
	
	.sotellus-review-name {
		font-size: 15px;
	}
	
	.sotellus-review-stars .star {
		font-size: 14px;
	}
	
	.sotellus-review-text {
		font-size: 13px;
	}
	
	.sotellus-review-pagination-link {
		padding: 8px 10px;
		font-size: 12px;
		min-width: 36px;
	}
	
	.sotellus-review-pagination-numbers {
		gap: 3px;
	}
}

/* Pagination Styles */
.sotellus-review-pagination {
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 40px 0 20px;
	gap: 10px;
	flex-wrap: wrap;
}

.sotellus-review-pagination-link {
	display: inline-block;
	padding: 10px 16px;
	background: #fff;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	color: #333;
	text-decoration: none;
	font-size: 14px;
	font-weight: 500;
	transition: all 0.3s ease;
	min-width: 44px;
	text-align: center;
	box-sizing: border-box;
}

.sotellus-review-pagination-link:hover {
	background: #f5f5f5;
	border-color: #ff9800;
	color: #ff9800;
	transform: translateY(-2px);
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.sotellus-review-pagination-link.sotellus-review-pagination-active {
	background: #ff9800;
	border-color: #ff9800;
	color: #fff;
	font-weight: 600;
	cursor: default;
}

.sotellus-review-pagination-link.sotellus-review-pagination-active:hover {
	background: #ff9800;
	color: #fff;
	transform: none;
	box-shadow: none;
}

.sotellus-review-pagination-numbers {
	display: flex;
	gap: 8px;
	align-items: center;
	flex-wrap: wrap;
	justify-content: center;
}

.sotellus-review-pagination-dots {
	padding: 10px 8px;
	color: #999;
	font-size: 14px;
}

.sotellus-review-pagination-prev,
.sotellus-review-pagination-next {
	font-weight: 600;
}

.sotellus-review-pagination-info {
	text-align: center;
	color: #666;
	font-size: 14px;
	margin-bottom: 20px;
	padding: 10px;
	background: #f9f9f9;
	border-radius: 6px;
	word-wrap: break-word;
}

/* Large Desktop (1400px and above) - 3 columns */
@media (min-width: 1400px) {
	.sotellus-review-wrapper {
		max-width: 1400px;
		padding: 0 20px;
	}
	
	.sotellus-review-container {
		gap: 30px;
	}
}

/* Desktop (1024px - 1399px) - 3 columns */
@media (max-width: 1399px) and (min-width: 1024px) {
	.sotellus-review-wrapper {
		padding: 0 20px;
	}
	
	.sotellus-review-container {
		gap: 20px;
	}
}

/* Tablet Landscape (992px - 1023px) - 2 columns */
@media (max-width: 1023px) and (min-width: 992px) {
	.sotellus-review-container {
		grid-template-columns: repeat(2, 1fr);
		gap: 20px;
	}
	
	.sotellus-review-wrapper {
		padding: 0 20px;
	}
}

/* Tablet Portrait (768px - 991px) - 2 columns */
@media (max-width: 991px) and (min-width: 768px) {
	.sotellus-review-container {
		grid-template-columns: repeat(2, 1fr);
		gap: 18px;
	}
	
	.sotellus-review-wrapper {
		padding: 0 15px;
	}
	
	.sotellus-review-item {
		padding: 20px;
	}
	
	.sotellus-review-name {
		font-size: 17px;
	}
	
	.sotellus-review-stars .star {
		font-size: 16px;
	}
	
	.sotellus-review-text {
		font-size: 14px;
		padding: 12px;
		-webkit-line-clamp: 5;
	}
	
	.sotellus-review-pagination {
		gap: 8px;
		margin: 35px 0 18px;
	}
	
	.sotellus-review-pagination-link {
		padding: 9px 14px;
		font-size: 13px;
		min-width: 42px;
	}
}

/* Mobile Landscape (480px - 767px) - 2 columns */
@media (max-width: 767px) and (min-width: 480px) {
	.sotellus-review-container {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}
	
	.sotellus-review-wrapper {
		padding: 0 10px;
	}
	
	.sotellus-review-item {
		padding: 18px;
		border-radius: 10px;
	}
	
	.sotellus-review-header {
		margin-bottom: 12px;
		padding-bottom: 12px;
		gap: 8px;
	}
	
	.sotellus-review-name {
		font-size: 16px;
	}
	
	.sotellus-review-stars {
		gap: 3px;
	}
	
	.sotellus-review-stars .star {
		font-size: 15px;
	}
	
	.sotellus-review-stars .star-rating-text {
		font-size: 12px;
		margin-left: 4px;
	}
	
	.sotellus-review-text {
		font-size: 13px;
		padding: 10px;
		-webkit-line-clamp: 4;
		line-height: 1.5;
	}
	
	.sotellus-review-title {
		font-size: 12px;
		margin-bottom: 10px;
	}
	
	.sotellus-review-meta {
		padding-top: 12px;
	}
	
	.sotellus-review-label {
		font-size: 11px;
		display: block;
		margin-bottom: 4px;
		margin-right: 0;
	}
	
	.sotellus-review-value {
		font-size: 12px;
		display: block;
	}
	
	.sotellus-review-pagination {
		gap: 6px;
		margin: 30px 0 15px;
	}
	
	.sotellus-review-pagination-link {
		padding: 8px 12px;
		font-size: 12px;
		min-width: 38px;
	}
	
	.sotellus-review-pagination-numbers {
		gap: 4px;
	}
	
	.sotellus-review-pagination-dots {
		padding: 8px 4px;
		font-size: 12px;
	}
	
	.sotellus-review-pagination-info {
		font-size: 12px;
		padding: 8px;
	}
}

/* Mobile Portrait (below 480px) - 1 column */
@media (max-width: 479px) {
	.sotellus-review-container {
		grid-template-columns: 1fr;
		gap: 15px;
	}
	
	.sotellus-review-wrapper {
		padding: 0 10px;
	}
	
	.sotellus-review-item {
		padding: 18px;
		border-radius: 10px;
	}
	
	.sotellus-review-header {
		margin-bottom: 12px;
		padding-bottom: 12px;
		gap: 8px;
	}
	
	.sotellus-review-name {
		font-size: 16px;
	}
	
	.sotellus-review-stars {
		gap: 3px;
	}
	
	.sotellus-review-stars .star {
		font-size: 15px;
	}
	
	.sotellus-review-stars .star-rating-text {
		font-size: 12px;
		margin-left: 4px;
	}
	
	.sotellus-review-text {
		font-size: 14px;
		padding: 12px;
		-webkit-line-clamp: 6;
		line-height: 1.6;
	}
	
	.sotellus-review-title {
		font-size: 12px;
		margin-bottom: 10px;
		white-space: normal;
		overflow: visible;
		text-overflow: clip;
	}
	
	.sotellus-review-meta {
		padding-top: 12px;
	}
	
	.sotellus-review-label {
		font-size: 11px;
		display: block;
		margin-bottom: 4px;
		margin-right: 0;
	}
	
	.sotellus-review-value {
		font-size: 12px;
		display: block;
	}
	
	.sotellus-review-pagination {
		gap: 4px;
		margin: 25px 0 15px;
		flex-direction: column;
	}
	
	.sotellus-review-pagination-numbers {
		order: 2;
		width: 100%;
		justify-content: center;
	}
	
	.sotellus-review-pagination-prev {
		order: 1;
		width: 100%;
		max-width: 200px;
	}
	
	.sotellus-review-pagination-next {
		order: 3;
		width: 100%;
		max-width: 200px;
	}
	
	.sotellus-review-pagination-link {
		padding: 10px 14px;
		font-size: 13px;
		min-width: 44px;
		width: auto;
	}
	
	.sotellus-review-pagination-prev,
	.sotellus-review-pagination-next {
		width: 100%;
		max-width: none;
	}
	
	.sotellus-review-pagination-numbers {
		gap: 4px;
	}
	
	.sotellus-review-pagination-dots {
		padding: 10px 4px;
		font-size: 12px;
	}
	
	.sotellus-review-pagination-info {
		font-size: 12px;
		padding: 8px;
		line-height: 1.4;
	}
	
	/* Disable hover effects on mobile */
	.sotellus-review-item:hover {
		transform: none;
	}
}

/* Very Small Mobile (below 360px) */
@media (max-width: 359px) {
	.sotellus-review-wrapper {
		padding: 0 8px;
	}
	
	.sotellus-review-item {
		padding: 15px;
	}
	
	.sotellus-review-name {
		font-size: 15px;
	}
	
	.sotellus-review-stars .star {
		font-size: 14px;
	}
	
	.sotellus-review-text {
		font-size: 13px;
		padding: 10px;
	}
	
	.sotellus-review-pagination-link {
		padding: 8px 10px;
		font-size: 12px;
		min-width: 36px;
	}
	
	.sotellus-review-pagination-numbers {
		gap: 3px;
	}
}
