/**
 * Expert Reviews — frontend styles.
 *
 * Loaded conditionally on:
 *  - Single product pages with expert reviews
 *  - Single expert pages
 *  - Expert archive (/experti/)
 *
 * @package Synergy_Term_Hub
 * @since   0.8.0
 */

/* ═══════════════════════════════════════════════════════════════════════════════
   1. DOCTOR REVIEWS ON PRODUCT PAGES
   ═══════════════════════════════════════════════════════════════════════════════ */

/* Container */
.imc-doctors-reviews {
	max-width: 100%;
	margin: 0 auto;
}
.reviews-header {
	text-align: center;
}

/* Review card — 2-column layout */
.imc-doctors-reviews .doctor-review-item {
	margin-bottom: 30px;
	padding: 25px;
	border: 1px solid #e0e0e0;
	border-radius: 8px;
	background: #fff;
	box-shadow: 0 2px 4px rgba(0,0,0,0.1);
	display: flex;
	gap: 25px;
	transition: box-shadow 0.3s ease;
}
.imc-doctors-reviews .doctor-review-item:hover {
	box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

/* Word wrapping safety */
.imc-doctors-reviews .review-content,
.imc-doctors-reviews .review-description {
	word-wrap: break-word;
	overflow-wrap: break-word;
	max-width: 100%;
	box-sizing: border-box;
}

/* Left column — Doctor Info (35%) */
.imc-doctors-reviews .doctor-info {
	flex: 0 0 35%;
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
	padding-right: 20px;
	border-right: 1px solid #eee;
}
.imc-doctors-reviews .doctor-photo {
	margin-bottom: 15px;
}
.imc-doctors-reviews .doctor-photo img {
	width: 100px;
	height: 100px;
	border-radius: 50%;
	object-fit: cover;
	border: 3px solid #f0f0f0;
}
.imc-doctors-reviews .doctor-details {
	width: 100%;
}
.imc-doctors-reviews .doctor-name {
	font-size: 20px;
	font-weight: bold;
	margin: 0 0 8px 0;
	color: #2c3e50;
	line-height: 1.2;
}
.imc-doctors-reviews .doctor-verified {
	font-size: 14px;
	color: #27ae60;
	margin: 0 0 15px 0;
	font-weight: 500;
}
.imc-doctors-reviews .doctor-meta {
	display: flex;
	flex-direction: column;
	gap: 8px;
	width: 100%;
}
.imc-doctors-reviews .meta-item {
	display: flex;
	flex-direction: column;
	text-align: center;
	font-size: 14px;
	padding: 8px;
	background: #f8f9fa;
	border-radius: 6px;
}
.imc-doctors-reviews .meta-label {
	font-weight: bold;
	color: #666;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: 0.5px;
	margin-bottom: 4px;
}
.imc-doctors-reviews .meta-value {
	color: #333;
	font-weight: 500;
	line-height: 1.3;
}

/* Right column — Review Content (65%) */
.imc-doctors-reviews .review-content {
	flex: 1;
	min-width: 0;
}
.imc-doctors-reviews .review-title {
	font-size: 22px;
	font-weight: bold;
	color: #2c3e50;
	margin: 0 0 15px 0;
	line-height: 1.3;
}
.imc-doctors-reviews .review-description {
	font-size: 16px;
	line-height: 1.6;
	color: #444;
	margin-bottom: 15px;
}

/* Show more/less button */
.imc-doctors-reviews .show-more-btn {
	background: transparent;
	border: none;
	color: #3498db;
	cursor: pointer;
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	letter-spacing: 0.02em;
	padding: 4px 0;
	margin-top: 6px;
	display: inline-block;
	transition: color 0.2s ease;
}
.imc-doctors-reviews .show-more-btn:hover,
.imc-doctors-reviews .show-more-btn:focus {
	color: #1a1a1a;
	text-decoration: underline;
	background: transparent;
	outline: none;
}

/* Highlights tags */
.imc-doctors-reviews .review-highlights {
	margin-top: 15px;
	padding-top: 15px;
	border-top: 1px solid #eee;
}
.imc-doctors-reviews .highlights-label {
	font-weight: bold;
	color: #666;
	margin-right: 10px;
}
.imc-doctors-reviews .highlights-tags {
	display: inline-flex;
	flex-wrap: wrap;
	gap: 5px;
}
.imc-doctors-reviews .highlight-tag {
	background: #3498db;
	color: white;
	padding: 3px 8px;
	border-radius: 12px;
	font-size: 12px;
}

/* Load more button */
.imc-doctors-reviews .load-more-container {
	text-align: center;
	margin-top: 20px;
}
.imc-doctors-reviews .load-more-btn {
	background: #3498db;
	color: white;
	border: none;
	padding: 12px 24px;
	border-radius: 6px;
	cursor: pointer;
	font-size: 16px;
	transition: background-color 0.3s;
}
.imc-doctors-reviews .load-more-btn:hover {
	background: #2980b9;
}

/* Hidden reviews */
.imc-doctors-reviews .load-more-hidden {
	display: none;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   2. FEATURED REVIEW
   ═══════════════════════════════════════════════════════════════════════════════ */
.imc-featured-review {
	margin: 20px 0;
	padding: 20px;
	background: #f9f9f9;
	border-radius: 8px;
	border: 1px solid #e0e0e0;
}
.featured-review-container {
	display: flex;
	gap: 20px;
	align-items: flex-start;
}
.featured-review-left {
	flex: 0 0 150px;
	max-width: 150px;
}
.featured-doctor-photo img {
	width: 100%;
	height: auto;
	border-radius: 8px;
	object-fit: cover;
}
.featured-review-right {
	flex: 1;
	min-width: 0;
}
.featured-review-description {
	font-size: 16px;
	line-height: 1.6;
	color: #333;
	margin-bottom: 15px;
	word-wrap: break-word;
	overflow-wrap: break-word;
}
.featured-doctor-info {
	border-top: 1px solid #ddd;
	padding-top: 15px;
}
.featured-doctor-name {
	font-size: 18px;
	font-weight: bold;
	color: #2c3e50;
	margin: 0 0 5px 0;
}
.featured-doctor-details {
	font-size: 14px;
	color: #666;
	margin: 0;
	font-style: italic;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   3. EXPERT SINGLE + ARCHIVE (minimalist, matching quiz tokens)
   ═══════════════════════════════════════════════════════════════════════════════ */
.sth-expert-single {
	max-width: 900px;
	margin: 0 auto;
	padding: 40px 20px;
	font-family: var(--wd-text-font, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif);
	color: var(--wd-text-color, #111);
}

/* Header */
.sth-expert-header {
	display: flex;
	gap: 30px;
	align-items: flex-start;
	margin-bottom: 40px;
	flex-wrap: wrap;
}
.sth-expert-avatar img {
	width: 180px;
	height: 180px;
	object-fit: cover;
	border-radius: 0;
}
.sth-expert-info {
	flex: 1;
	min-width: 250px;
}
.sth-expert-info h1 {
	margin: 0 0 8px;
	font-size: 28px;
	font-weight: 700;
}
.sth-expert-job {
	margin: 0 0 5px;
	font-size: 16px;
	color: var(--wd-text-color-light, #555);
	font-weight: 500;
}
.sth-expert-institution {
	margin: 0 0 10px;
	color: var(--wd-text-color-light, #888);
	font-size: 14px;
}
.sth-expert-meta {
	font-size: 14px;
	margin: 0 0 10px;
}
.sth-expert-meta strong {
	font-weight: 600;
}

/* Social links */
.sth-expert-socials {
	display: flex;
	gap: 10px;
	margin-top: 15px;
}
.sth-expert-socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 36px;
	height: 36px;
	border: 1px solid var(--wd-border-color, #e0e0e0);
	color: var(--wd-text-color, #111);
	text-decoration: none;
	font-size: 13px;
	font-weight: 600;
	transition: background 0.2s, color 0.2s;
}
.sth-expert-socials a:hover {
	background: var(--wd-text-color, #111);
	color: #fff;
}

/* Bio */
.sth-expert-bio {
	margin-bottom: 40px;
	line-height: 1.7;
	font-size: 16px;
}

/* Qualifications */
.sth-expert-qualifications {
	margin-bottom: 40px;
}
.sth-expert-qualifications h2 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 15px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--wd-border-color, #e0e0e0);
}
.sth-expert-qualifications ul {
	list-style: none;
	padding: 0;
	margin: 0;
}
.sth-expert-qualifications li {
	padding: 10px 0 10px 24px;
	border-bottom: 1px solid #f0f0f0;
	position: relative;
	font-size: 15px;
}
.sth-expert-qualifications li::before {
	content: '✓';
	position: absolute;
	left: 0;
	color: #27ae60;
	font-weight: 700;
}

/* Article grid */
.sth-expert-articles {
	margin-bottom: 40px;
}
.sth-expert-articles h2 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--wd-border-color, #e0e0e0);
}
.sth-expert-articles-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
	gap: 20px;
}
.sth-expert-article-card {
	border: 1px solid var(--wd-border-color, #e0e0e0);
	overflow: hidden;
	transition: border-color 0.2s;
}
.sth-expert-article-card:hover {
	border-color: var(--wd-text-color, #111);
}
.sth-expert-article-card img {
	width: 100%;
	height: 160px;
	object-fit: cover;
	display: block;
}
.sth-expert-article-card-body {
	padding: 15px;
}
.sth-expert-article-card h3 {
	margin: 0 0 8px;
	font-size: 15px;
	line-height: 1.4;
}
.sth-expert-article-card h3 a {
	text-decoration: none;
	color: inherit;
}
.sth-expert-article-card time {
	color: var(--wd-text-color-light, #999);
	font-size: 12px;
}

/* Other experts */
.sth-expert-others {
	margin-bottom: 40px;
	padding-top: 40px;
	border-top: 2px solid var(--wd-border-color, #e0e0e0);
}
.sth-expert-others h2 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 20px;
}
.sth-expert-others-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
	gap: 20px;
}
.sth-expert-others-card {
	display: block;
	text-decoration: none;
	color: inherit;
	text-align: center;
	padding: 20px;
	border: 1px solid var(--wd-border-color, #e0e0e0);
	transition: border-color 0.2s;
}
.sth-expert-others-card:hover {
	border-color: var(--wd-text-color, #111);
}
.sth-expert-others-card img {
	width: 80px;
	height: 80px;
	object-fit: cover;
	border-radius: 50%;
	margin-bottom: 10px;
}
.sth-expert-others-card h3 {
	margin: 0 0 4px;
	font-size: 15px;
	font-weight: 600;
}
.sth-expert-others-card p {
	margin: 0;
	font-size: 13px;
	color: var(--wd-text-color-light, #666);
}

/* ═══════════════════════════════════════════════════════════════════════════════
   4. EXPERT ARCHIVE GRID
   ═══════════════════════════════════════════════════════════════════════════════ */
.sth-experts-archive {
	max-width: 1200px;
	margin: 0 auto;
	padding: 40px 20px;
}
.sth-experts-archive-header {
	text-align: center;
	margin-bottom: 40px;
}
.sth-experts-archive-header h1 {
	font-size: clamp(24px, 3.5vw, 32px);
	font-weight: 700;
	margin: 0 0 10px;
}
.sth-experts-archive-header p {
	font-size: 16px;
	color: var(--wd-text-color-light, #555);
	max-width: 60ch;
	margin: 0 auto;
}
.sth-experts-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 24px;
}
.sth-experts-grid-card {
	display: block;
	text-decoration: none;
	color: inherit;
	border: 1px solid var(--wd-border-color, #e0e0e0);
	transition: border-color 0.2s;
	text-align: center;
}
.sth-experts-grid-card:hover {
	border-color: var(--wd-text-color, #111);
}
.sth-experts-grid-card-photo {
	position: relative;
	aspect-ratio: 1;
	overflow: hidden;
	background: #f5f5f5;
}
.sth-experts-grid-card-photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.sth-experts-grid-card-body {
	padding: 16px;
}
.sth-experts-grid-card h2 {
	margin: 0 0 4px;
	font-size: 16px;
	font-weight: 700;
}
.sth-experts-grid-card .sth-experts-card-job {
	font-size: 13px;
	color: var(--wd-text-color-light, #666);
	margin: 0 0 4px;
}
.sth-experts-grid-card .sth-experts-card-org {
	font-size: 12px;
	color: var(--wd-text-color-light, #999);
	margin: 0 0 8px;
}
.sth-experts-grid-card .sth-experts-card-badge {
	position: absolute;
	top: 10px;
	right: 10px;
	display: inline-block;
	background: rgba(0, 0, 0, 0.55);
	color: #fff;
	padding: 4px 10px;
	font-size: 11px;
	font-weight: 600;
	border-radius: 12px;
	letter-spacing: 0.02em;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	z-index: 1;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   4b. ARCHIVE PAGINATION
   ═══════════════════════════════════════════════════════════════════════════════ */
.sth-experts-archive .nav-links {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 6px;
	margin-top: 40px;
	flex-wrap: wrap;
}
.sth-experts-archive .nav-links a,
.sth-experts-archive .nav-links span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 40px;
	height: 40px;
	padding: 0 12px;
	border: 1px solid #ddd;
	border-radius: 8px;
	font-size: 14px;
	font-weight: 500;
	text-decoration: none;
	color: var(--wd-text-color, #333);
	background: #fff;
	transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.sth-experts-archive .nav-links a:hover {
	border-color: var(--wd-text-color, #111);
	background: var(--wd-text-color, #111);
	color: #fff;
}
.sth-experts-archive .nav-links span.current {
	background: var(--wd-text-color, #111);
	border-color: var(--wd-text-color, #111);
	color: #fff;
	font-weight: 700;
}
.sth-experts-archive .nav-links .dots {
	border: none;
	background: none;
	padding: 0 4px;
	color: #999;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   5. RESPONSIVE
   ═══════════════════════════════════════════════════════════════════════════════ */

@media (max-width: 768px) {
	/* Reviews — vertical on mobile */
	.imc-doctors-reviews .doctor-review-item {
		flex-direction: column;
		gap: 20px;
		padding: 20px;
	}
	.imc-doctors-reviews .doctor-info {
		flex: none;
		padding-right: 0;
		border-right: none;
		border-bottom: 1px solid #eee;
		padding-bottom: 20px;
	}
	.imc-doctors-reviews .doctor-photo img {
		width: 80px;
		height: 80px;
	}
	.imc-doctors-reviews .doctor-name {
		font-size: 18px;
	}
	.imc-doctors-reviews .doctor-meta {
		flex-direction: row;
		gap: 10px;
		justify-content: center;
		flex-wrap: wrap;
	}
	.imc-doctors-reviews .meta-item {
		flex: 1;
		min-width: 140px;
		padding: 10px 8px;
		background: linear-gradient(135deg, #f8f9fa, #e9ecef);
		border: 1px solid #dee2e6;
		border-radius: 8px;
		box-shadow: 0 1px 3px rgba(0,0,0,0.1);
	}
	.imc-doctors-reviews .meta-label {
		font-size: 11px;
		color: #6c757d;
		margin-bottom: 6px;
	}
	.imc-doctors-reviews .meta-value {
		font-size: 13px;
		font-weight: 600;
		color: #495057;
		line-height: 1.2;
	}

	/* Featured — vertical */
	.featured-review-container {
		flex-direction: column;
		text-align: center;
	}
	.featured-review-left {
		flex: none;
		max-width: 120px;
		margin: 0 auto 15px;
	}
	.featured-review-right {
		text-align: left;
	}

	/* Expert single — vertical header */
	.sth-expert-header {
		flex-direction: column;
		align-items: center;
		text-align: center;
	}
	.sth-expert-socials {
		justify-content: center;
	}
}

@media (min-width: 769px) and (max-width: 1024px) {
	.imc-doctors-reviews .doctor-info {
		flex: 0 0 40%;
	}
	.imc-doctors-reviews .doctor-photo img {
		width: 90px;
		height: 90px;
	}
	.imc-doctors-reviews .doctor-name {
		font-size: 18px;
	}
}

/* ═══════════════════════════════════════════════════════════════════════════════
   6. EXPERT SINGLE — ENHANCED
   ═══════════════════════════════════════════════════════════════════════════════ */

/* Meta icons */
.sth-expert-icon {
	display: inline-block;
	width: 20px;
	text-align: center;
	margin-right: 4px;
	font-style: normal;
}

/* Email link */
.sth-expert-meta a {
	color: var(--wd-text-color, #111);
	text-decoration: underline;
	text-underline-offset: 3px;
}
.sth-expert-meta a:hover {
	color: var(--wd-text-color-light, #555);
}

/* Social icons — SVG-based */
.sth-expert-socials a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border: 1px solid var(--wd-border-color, #e0e0e0);
	border-radius: 0;
	color: var(--wd-text-color, #111);
	text-decoration: none;
	transition: background 0.2s, color 0.2s, border-color 0.2s;
}
.sth-expert-socials a:hover {
	background: var(--wd-text-color, #111);
	color: #fff;
	border-color: var(--wd-text-color, #111);
}
.sth-expert-socials a svg {
	width: 18px;
	height: 18px;
}

/* Video section */
.sth-expert-video {
	margin-bottom: 40px;
}
.sth-expert-video-wrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	height: 0;
	overflow: hidden;
	background: #f5f5f5;
	cursor: pointer;
}
.sth-expert-video-poster {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.sth-expert-video-play {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	background: none;
	border: none;
	cursor: pointer;
	transition: transform 0.2s, opacity 0.2s;
	z-index: 2;
}
.sth-expert-video-play:hover {
	transform: translate(-50%, -50%) scale(1.08);
	opacity: 0.9;
}

/* Articles — hidden state + load more */
.sth-expert-article-hidden {
	display: none;
}
.sth-expert-loadmore-wrap {
	text-align: center;
	margin-top: 20px;
}
.sth-expert-loadmore {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 10px 28px;
	border: 1px solid var(--wd-text-color, #111);
	background: transparent;
	color: var(--wd-text-color, #111);
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	border-radius: 24px;
	text-transform: none;
	transition: background 0.2s, color 0.2s;
}
.sth-expert-loadmore:hover {
	background: var(--wd-text-color, #111);
	color: #fff;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   7. EXPERT SINGLE — PRODUCT REVIEWS CAROUSEL
   ═══════════════════════════════════════════════════════════════════════════════ */
.sth-expert-reviews-section {
	margin-bottom: 40px;
}
.sth-expert-reviews-section h2 {
	font-size: 18px;
	font-weight: 700;
	margin-bottom: 20px;
	padding-bottom: 10px;
	border-bottom: 2px solid var(--wd-border-color, #e0e0e0);
}
.sth-expert-reviews-carousel {
	overflow: hidden;
}
.sth-expert-reviews-track {
	display: flex;
	gap: 20px;
	overflow-x: auto;
	-webkit-overflow-scrolling: touch;
	scrollbar-width: none;
	padding-bottom: 4px;
}
.sth-expert-reviews-track::-webkit-scrollbar { display: none; }

.sth-expert-review-card {
	flex: 0 0 360px;
	display: flex;
	flex-direction: row;
	border: 1px solid var(--wd-border-color, #e0e0e0);
	text-decoration: none;
	color: inherit;
	transition: border-color 0.2s;
}
.sth-expert-review-card:hover {
	border-color: var(--wd-text-color, #111);
}
.sth-expert-review-card-img {
	flex: 0 0 120px;
	width: 120px;
	overflow: hidden;
	background: #f5f5f5;
}
.sth-expert-review-card-img img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.sth-expert-review-card-body {
	padding: 12px 14px;
	display: flex;
	flex-direction: column;
	gap: 0;
	flex: 1;
	min-width: 0;
}
.sth-expert-review-card-product {
	font-size: 13px;
	font-weight: 700;
	color: var(--wd-text-color, #111);
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	padding-bottom: 8px;
	margin-bottom: 8px;
	border-bottom: 1px solid var(--wd-border-color, #e0e0e0);
}
.sth-expert-review-card-title {
	font-size: 12px;
	font-weight: 600;
	color: var(--wd-text-color, #111);
	margin-bottom: 4px;
}
.sth-expert-review-card-text {
	margin: 2px 0 0;
	font-size: 12px;
	font-style: italic;
	line-height: 1.4;
	color: var(--wd-text-color-light, #666);
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.sth-expert-review-card-text::before { content: '\201E'; }
.sth-expert-review-card-text::after { content: '\201D'; }

/* ═══════════════════════════════════════════════════════════════════════════════
   VIDEO POPUP (single expert)
   ═══════════════════════════════════════════════════════════════════════════════ */
.sth-expert-video-trigger {
	margin-top: 12px;
}
.sth-expert-video-open {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	background: transparent;
	border: 1px solid var(--wd-border-color, #ddd);
	border-radius: 20px;
	padding: 6px 16px;
	font-size: 13px;
	font-weight: 600;
	color: var(--wd-text-color, #333);
	cursor: pointer;
	transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.sth-expert-video-open svg {
	flex-shrink: 0;
}
.sth-expert-video-open:hover {
	border-color: var(--wd-text-color, #111);
	background: var(--wd-text-color, #111);
	color: #fff;
}
/* Modal overlay */
.sth-expert-video-modal {
	display: none;
	position: fixed;
	inset: 0;
	z-index: 99999;
	align-items: center;
	justify-content: center;
	padding: 24px;
}
.sth-expert-video-modal[aria-hidden="false"] {
	display: flex;
}
.sth-expert-video-modal-backdrop {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.7);
}
.sth-expert-video-modal-content {
	position: relative;
	width: 100%;
	max-width: 720px;
	background: #000;
	border-radius: 12px;
	overflow: hidden;
}
.sth-expert-video-modal-close {
	position: absolute;
	top: 8px;
	right: 12px;
	z-index: 2;
	background: rgba(255,255,255,0.15);
	border: none;
	color: #fff;
	font-size: 28px;
	line-height: 1;
	width: 36px;
	height: 36px;
	border-radius: 50%;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
	transition: background 0.2s;
}
.sth-expert-video-modal-close:hover {
	background: rgba(255,255,255,0.3);
}
.sth-expert-video-modal-body {
	width: 100%;
	aspect-ratio: 16/9;
}

/* ═══════════════════════════════════════════════════════════════════════════════
   "VEZI TOȚI EXPERȚII" BUTTON
   ═══════════════════════════════════════════════════════════════════════════════ */
.sth-expert-all-link {
	text-align: center;
	margin-top: 24px;
}
.sth-expert-all-btn {
	display: inline-block;
	padding: 10px 28px;
	border: 1px solid var(--wd-border-color, #ddd);
	border-radius: 24px;
	font-size: 14px;
	font-weight: 600;
	color: var(--wd-text-color, #333);
	text-decoration: none;
	transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.sth-expert-all-btn:hover {
	border-color: var(--wd-text-color, #111);
	background: var(--wd-text-color, #111);
	color: #fff;
}

@media (max-width: 480px) {
	.sth-expert-review-card {
		flex: 0 0 300px;
	}
	.sth-expert-review-card-img {
		flex: 0 0 90px;
		width: 90px;
	}
}
