/**
 * Awards Section Styles
 * External CSS to avoid WP Rocket stripping inline styles
 */

/* Awards Header */
.awards-header-wrapper {
	display: flex !important;
	flex-direction: row !important;
	justify-content: space-between !important;
	align-items: flex-start !important;
	gap: 40px !important;
	margin-bottom: 0;
	padding: 20px 0;
}
.awards-header-wrapper .awards-header-left {
	flex: 1;
}
.awards-header-wrapper .awards-header-title {
	font-size: 48px;
	font-weight: 600;
	line-height: 1.2;
	margin: 0 0 16px 0;
	color: #fff;
}
.awards-header-wrapper .awards-header-subtitle {
	font-size: 18px;
	font-weight: 400;
	line-height: 1.5;
	margin: 0 0 20px 0;
	opacity: 0.8;
	color: #fff;
	max-width: 600px;
}
.awards-header-wrapper .awards-clutch-rating {
	display: flex;
	align-items: center;
	gap: 8px;
}
.awards-header-wrapper .awards-clutch-row {
	display: flex;
	align-items: center;
	gap: 4px;
}
.awards-header-wrapper .awards-clutch-logo {
	display: inline-block;
}
.awards-header-wrapper .awards-clutch-logo svg {
	width: 48px;
	height: 56px;
	display: block;
}
.awards-header-wrapper .awards-clutch-logo svg path,
.awards-header-wrapper .awards-clutch-logo svg ellipse {
	fill: #fff;
}
.awards-header-wrapper .awards-clutch-number {
	font-size: 48px;
	font-weight: 700;
	color: #fff;
}
.awards-header-wrapper .awards-clutch-stars {
	display: inline-block;
}
.awards-header-wrapper .awards-clutch-stars svg {
	width: 180px;
	height: 26px;
	display: block;
}
.awards-header-wrapper .awards-clutch-stars svg path {
	fill: #0B24FB;
}
.awards-header-wrapper .awards-clutch-reviews {
	font-size: 26px;
	color: #fff;
	opacity: 0.8;
}
.awards-header-wrapper .awards-header-right {
	flex: 0 0 auto;
	text-align: center;
	display: block;
	padding-right: 80px;
}
.awards-header-wrapper .awards-header-right img {
	width: 225px;
	height: auto;
	display: block;
}
.awards-header-wrapper .awards-badge-title {
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	margin-top: 10px;
}
.awards-header-wrapper .awards-badge-text {
	font-size: 13px;
	color: #fff;
	opacity: 0.8;
}

/* Awards Tabs Section */
.awards-section {
	width: 100%;
}

/* Tabs */
.awards-section .awards-tabs {
	display: flex;
	justify-content: flex-start;
	gap: 15px;
	margin-bottom: 40px;
}
.awards-section .awards-tab {
	padding: 14px 36px;
	font-size: 18px;
	font-weight: 600;
	background: transparent;
	border: 2px solid #6B7280;
	border-radius: 30px;
	cursor: pointer;
	transition: all 0.3s ease;
	color: #6B7280;
	position: relative;
	z-index: 10;
}
.awards-section .awards-tab:hover {
	background: rgba(107, 114, 128, 0.1);
	border-color: #9CA3AF;
	color: #9CA3AF;
}
.awards-section .awards-tab.active {
	background: #0B24FB;
	color: #fff;
	border-color: #0B24FB;
}

/* Tab content */
.awards-section .awards-tab-content {
	display: none;
}
.awards-section .awards-tab-content.active {
	display: block;
}

/* Grid - 5 columns */
.awards-section .awards-grid {
	display: grid !important;
	grid-template-columns: repeat(5, 1fr) !important;
	gap: 30px !important;
}

/* Item */
.awards-section .awards-item {
	display: flex !important;
	flex-direction: column !important;
	align-items: center !important;
	text-align: center;
	transition: transform 0.3s ease;
}
.awards-section .awards-item:hover {
	transform: scale(1.05);
}

/* Embed container - default size 160px */
.awards-section .awards-embed-widget {
	width: 160px !important;
	height: 160px !important;
	margin-bottom: 12px;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	overflow: hidden !important;
}
.awards-section .awards-embed-widget iframe {
	width: 360px !important;
	height: 360px !important;
	border: none !important;
	transform: scale(0.444) !important;
	transform-origin: center center !important;
	flex-shrink: 0;
}

/* Override WP Rocket FitVids responsive video wrapper */
.awards-section .awards-embed-widget .fluid-width-video-wrapper {
	width: 360px !important;
	height: 360px !important;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	position: static !important;
	transform: scale(0.444) !important;
	transform-origin: center center !important;
}
.awards-section .awards-embed-widget .fluid-width-video-wrapper iframe {
	position: static !important;
	width: 360px !important;
	height: 360px !important;
	transform: none !important;
}

/* Stats image */
.awards-section .awards-item img {
	width: 160px;
	height: 160px;
	object-fit: contain;
	margin-bottom: 12px;
}

/* Number */
.awards-section .awards-number {
	font-size: 24px;
	font-weight: 600;
	line-height: 1.2;
	margin-bottom: 4px;
	white-space: nowrap;
}

/* Description */
.awards-section .awards-description {
	font-size: 14px;
	font-weight: 400;
	line-height: 1.3;
	opacity: 0.8;
}

/* Wearable item - text shifted left */
.awards-section .awards-item-wearable .awards-number,
.awards-section .awards-item-wearable .awards-description {
	transform: translateX(-15px);
}

/* Stats section */
.awards-section .awards-stats-section {
	margin-top: 50px;
	padding-top: 40px;
}

/* Mobile responsive */
@media screen and (max-width: 1024px) {
	.awards-section .awards-grid {
		grid-template-columns: repeat(3, 1fr) !important;
	}
}

@media screen and (max-width: 768px) {
	/* Header mobile */
	.awards-header-wrapper {
		flex-direction: column !important;
		text-align: center;
		gap: 30px !important;
	}
	.awards-header-wrapper .awards-header-title {
		font-size: 32px;
	}
	.awards-header-wrapper .awards-header-subtitle {
		font-size: 16px;
		max-width: 100%;
	}
	.awards-header-wrapper .awards-clutch-rating {
		justify-content: center;
		flex-wrap: wrap;
	}
	.awards-header-wrapper .awards-header-right {
		padding-right: 0;
	}
	.awards-header-wrapper .awards-header-right img {
		width: 120px;
		margin: 0 auto;
	}

	/* Tabs mobile */
	.awards-section .awards-tabs {
		justify-content: center;
	}
	.awards-section .awards-grid {
		grid-template-columns: repeat(2, 1fr) !important;
		gap: 20px !important;
	}
	.awards-section .awards-embed-widget {
		width: 128px !important;
		height: 128px !important;
	}
	.awards-section .awards-embed-widget iframe {
		transform: scale(0.356) !important;
	}
	.awards-section .awards-embed-widget .fluid-width-video-wrapper {
		transform: scale(0.356) !important;
	}
	.awards-section .awards-item img {
		width: 128px !important;
		height: 128px !important;
	}
	.awards-section .awards-tab {
		padding: 12px 24px;
		font-size: 16px;
	}
	.awards-section .awards-number {
		font-size: 20px;
	}
	.awards-section .awards-description {
		font-size: 12px;
	}
}
