/* ================================================================
   DSO Tech Reviews — public styles
   Design: Clean 3-col card grid, yellow stars, name-first layout
   Inherits: DSO dark theme (Barlow Condensed + Barlow fonts)
   ================================================================ */

.dso-tr-reviews {
	font-family: 'Barlow', sans-serif;
	color: #e0e0e0;
	margin: 40px 0;
}

/* ============ HEADER (Rating + review count) ============ */

.dso-tr-reviews-header {
	text-align: center;
	margin-bottom: 48px;
	padding: 32px 24px;
	background: rgba(255, 255, 255, 0.03);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 12px;
	max-width: 520px;
	margin-left: auto;
	margin-right: auto;
}

.dso-tr-reviews-header .dso-tr-stars-row {
	color: #F59E0B;
	font-size: 22px;
	letter-spacing: 4px;
	margin-bottom: 12px;
}

.dso-tr-stars-big {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 900;
	font-size: 56px;
	line-height: 1;
	color: #ffffff;
	margin-bottom: 10px;
	letter-spacing: -0.01em;
}

.dso-tr-count {
	color: rgba(255, 255, 255, 0.7);
	font-size: 14px;
	letter-spacing: 0.02em;
}

.dso-tr-count strong {
	color: #ffffff;
	font-weight: 700;
}

/* ============ GRID ============ */

.dso-tr-reviews-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

@media (max-width: 1024px) {
	.dso-tr-reviews-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
	.dso-tr-reviews-grid { grid-template-columns: 1fr; }
}

/* ============ CARD ============ */

.dso-tr-review-card {
	background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	padding: 24px;
	color: #e0e0e0;
	display: flex;
	flex-direction: column;
	gap: 16px;
	transition: border-color 0.2s ease, transform 0.2s ease;
}

.dso-tr-review-card:hover {
	border-color: rgba(245, 158, 11, 0.3);
	transform: translateY(-2px);
}

/* ============ CARD HEADER (Name + Date up top) ============ */

.dso-tr-review-head {
	display: flex;
	align-items: center;
	gap: 14px;
}

.dso-tr-avatar {
	flex-shrink: 0;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
	color: #ffffff;
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 800;
	font-size: 16px;
	letter-spacing: 0.04em;
	display: flex;
	align-items: center;
	justify-content: center;
	text-transform: uppercase;
}

.dso-tr-review-meta {
	flex: 1;
	min-width: 0;
}

.dso-tr-review-name {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 800;
	font-size: 17px;
	color: #ffffff;
	line-height: 1.2;
	letter-spacing: 0.01em;
	text-transform: uppercase;
	margin-bottom: 4px;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.dso-tr-review-sub {
	font-size: 12px;
	color: rgba(255, 255, 255, 0.5);
	letter-spacing: 0.02em;
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
}

.dso-tr-review-sub .dso-tr-source {
	color: rgba(255, 255, 255, 0.6);
	font-weight: 500;
}

.dso-tr-review-sub .dso-tr-dot {
	color: rgba(255, 255, 255, 0.3);
}

.dso-tr-review-sub time {
	color: rgba(255, 255, 255, 0.5);
}

/* ============ STARS ============ */

.dso-tr-review-stars {
	line-height: 1;
	letter-spacing: 2px;
}

.dso-tr-review-stars .dso-tr-star {
	color: rgba(255, 255, 255, 0.15);
	font-size: 18px;
}

.dso-tr-review-stars .dso-tr-star.filled {
	color: #F59E0B;
}

/* ============ REVIEW BODY ============ */

.dso-tr-review-body {
	margin: 0;
	padding: 0;
	border: 0;
	color: #d0d0d0;
	font-family: 'Barlow', sans-serif;
	font-size: 14.5px;
	line-height: 1.65;
	flex: 1;
	position: relative;
}

/* Big opening quote mark */
.dso-tr-review-body::before {
	content: '"';
	display: block;
	font-family: 'Barlow Condensed', serif;
	font-size: 48px;
	line-height: 0.8;
	color: rgba(245, 158, 11, 0.25);
	margin-bottom: 4px;
	font-weight: 900;
}

/* ============ EMPTY STATE ============ */

.dso-tr-empty {
	background: #1a1a1a;
	border: 1px solid rgba(255, 255, 255, 0.08);
	border-radius: 10px;
	padding: 32px;
	color: rgba(255, 255, 255, 0.6);
	text-align: center;
	font-size: 15px;
}

/* ============ STATS BLOCK (inline) ============ */

.dso-tr-stats-block {
	display: inline-flex;
	align-items: center;
	gap: 10px;
	padding: 8px 16px;
	background: rgba(245, 158, 11, 0.1);
	border: 1px solid rgba(245, 158, 11, 0.3);
	border-radius: 8px;
}

.dso-tr-stats-rating {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 900;
	font-size: 20px;
	color: #F59E0B;
	line-height: 1;
}

.dso-tr-stats-count {
	font-size: 13px;
	color: rgba(255, 255, 255, 0.7);
}

/* ============ BIO BLOCK ============ */

.dso-tr-bio {
	display: grid;
	grid-template-columns: 240px 1fr;
	gap: 40px;
	align-items: start;
	margin: 40px 0;
}

@media (max-width: 768px) {
	.dso-tr-bio { grid-template-columns: 1fr; }
}

.dso-tr-bio-photo {
	width: 100%;
	max-width: 240px;
	aspect-ratio: 1;
	object-fit: cover;
	border-radius: 12px;
	border: 1px solid rgba(255, 255, 255, 0.1);
}

.dso-tr-bio-name {
	font-family: 'Barlow Condensed', sans-serif;
	font-weight: 900;
	font-size: 36px;
	color: #fff;
	margin: 0 0 6px;
	letter-spacing: -0.01em;
}

.dso-tr-bio-title {
	color: #3b82f6;
	font-family: 'Barlow', sans-serif;
	font-weight: 700;
	font-size: 14px;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	margin: 0 0 14px;
}

.dso-tr-bio-stats {
	color: #F59E0B;
	font-weight: 700;
	font-size: 16px;
	margin: 0 0 20px;
}

.dso-tr-bio-text p {
	color: #ccc;
	font-size: 16px;
	line-height: 1.8;
	margin: 0 0 14px;
}
