.author-opinion-section {
	background: var(--theme-section-bg);
	border-top: 3px solid var(--theme-section-border-color);
	padding: 40px 0;
	margin: 30px 0;
	border-radius: var(--border-radius-lg);
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.author-opinion-container {
	max-width: 800px;
	margin: 0 auto;
	padding: 0 20px;
}

.author-opinion-section h2 {
	text-align: center;
	margin-bottom: 30px;
	font-size: 28px;
	font-weight: 700;
	color: white;
	margin-top: 0;
}

.author-opinion-block {
	background: var(--theme-body-bg);
	border: 1px solid var(--color-gray-darker);
	border-radius: var(--border-radius-lg);
	padding: 25px;
	margin: 20px 0;
	position: relative;
}

.author-opinion-header-block {
	display: flex;
	align-items: center;
	gap: 15px;
	margin-bottom: 20px;
}

.author-avatar {
	width: 60px;
	height: 60px;
	border-radius: 50%;
	object-fit: cover;
	border: 2px solid var(--color-orange);
}

.author-verification {
	display: flex;
	align-items: center;
	gap: 8px;
}

.verification-icon {
	width: 20px;
	height: 20px;
	color: var(--color-green);
}

.author-name {
	font-size: 18px;
	font-weight: 600;
	color: white;
}

.author-opinion-text {
	font-style: italic;
	color: var(--color-gray-light);
	font-size: 16px;
	line-height: 1.6;
	position: relative;
	padding: 0 20px;
}

.author-opinion-text::before,
.author-opinion-text::after {
	content: '"';
	font-size: 24px;
	color: var(--color-orange);
	position: absolute;
}

.author-opinion-text::before {
	left: 0;
	top: 0;
}

.author-opinion-text::after {
	right: 0;
	bottom: 0;
}

.author-opinion-text a {
	color: var(--color-blue);
	text-decoration: underline;
	transition: color 0.3s ease;
}

.author-opinion-text a:hover {
	color: var(--color-orange);
}

@media (max-width: 768px) {
	.author-opinion-section {
		padding: 30px 0;
		margin: 20px 0;
	}

	.author-opinion-container {
		padding: 0 15px;
	}

	.author-opinion-header h2 {
		font-size: 24px;
	}

	.author-opinion-block {
		padding: 20px;
	}

	.author-opinion-header-block {
		flex-direction: column;
		text-align: center;
		gap: 10px;
	}

	.author-avatar {
		width: 40px;
		height: 40px;
	}
}

@media (max-width: 480px) {
	.author-opinion-header h2 {
		font-size: 20px;
	}

	.author-opinion-block {
		padding: 15px;
	}

	.author-opinion-text {
		font-size: 14px;
		padding: 0 15px;
	}
}

/* Полноразмерное изображение автора с рамкой */
.author-photo-fullsize {
	width: 60px !important;
	height: 60px !important;
	border-radius: 50% !important;
	overflow: hidden;
	border: 2px solid var(--color-orange);
	box-shadow: var(--shadow-lg);
	cursor: pointer;
	transition: all 0.3s ease;
	position: relative;
}

.author-photo-fullsize:hover {
	transform: scale(1.05);
	box-shadow: 0 8px 30px rgba(241, 44, 76, 0.3);
}

.author-image-expandable {
	width: 100% !important;
	height: 100% !important;
	object-fit: cover;
	border-radius: 50%;
	transition: all 0.3s ease;
}

.author-photo-fullsize::after {
	content: '🔍';
	position: absolute;
	top: 10px;
	right: 10px;
	background: rgba(0, 0, 0, 0.7);
	color: white;
	width: 30px;
	height: 30px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	opacity: 0;
	transition: opacity 0.3s ease;
}

.author-photo-fullsize:hover::after {
	opacity: 1;
}

/* Lightbox модальное окно */
.lightbox-overlay {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: rgba(0, 0, 0, 0.9);
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 10000;
	backdrop-filter: blur(5px);
}

.lightbox-content {
	position: relative;
	max-width: 90%;
	max-height: 90%;
	animation: lightboxFadeIn 0.3s ease;
}

.lightbox-image {
	width: 100%;
	height: auto;
	border-radius: var(--border-radius-lg);
	box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
	position: absolute;
	top: -40px;
	right: 0;
	background: none;
	border: none;
	color: white;
	font-size: 30px;
	cursor: pointer;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background: rgba(255, 255, 255, 0.1);
	transition: background 0.3s ease;
}

.lightbox-close:hover {
	background: rgba(255, 255, 255, 0.2);
}

@keyframes lightboxFadeIn {
	from {
		opacity: 0;
		transform: scale(0.8);
	}

	to {
		opacity: 1;
		transform: scale(1);
	}
}

/* Адаптивные стили для полноразмерного изображения */
@media (max-width: 768px) {
	.author-photo-fullsize {
		width: 100px !important;
		height: 100px !important;
	}

	.lightbox-content {
		max-width: 95%;
		max-height: 95%;
	}
}

@media (max-width: 480px) {
	.author-photo-fullsize {
		width: 80px !important;
		height: 80px !important;
	}

	.lightbox-close {
		top: -35px;
		font-size: 25px;
		width: 35px;
		height: 35px;
	}
}