/* MTT Awards — Frontend styles */

.mtt-awards {
	background: #263765;
	padding: 100px 0;
}


/* Head */
.mtt-awards .mtt-awards-head {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 60px;
}

.mtt-awards span.mtt-awards-eyebrow {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #fff;
	padding: 6px 14px;
	background: rgba(255, 255, 255, 0.1);
	border-radius: 999px;
	margin-bottom: 20px;
	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
}

.mtt-awards h2.mtt-awards-title {
	color: #fff;
	font-family: 'Fraunces', Georgia, serif;
	font-size: clamp(32px, 3.5vw, 46px);
	font-weight: 400;
	line-height: 1.1;
	margin: 0 0 14px 0;
	text-align: center;
}

.mtt-awards h2.mtt-awards-title em {
	font-style: normal;
	color: oklch(0.78 0.12 75);
}

.mtt-awards p.mtt-awards-subtitle {
	color: rgba(255, 255, 255, 0.75);
	font-size: 16px;
	line-height: 1.65;
	margin: 0;
	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Grid */
.mtt-awards .mtt-awards-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

/* Card */
.mtt-awards .mtt-awards-card {
	background: rgba(255, 255, 255, 0.06);
	border: 1px solid rgba(255, 255, 255, 0.12);
	border-radius: 20px;
	padding: 36px 30px;
	transition: background 0.25s, border-color 0.25s;
}

.mtt-awards .mtt-awards-card:hover {
	background: rgba(255, 255, 255, 0.1);
	border-color: rgba(255, 255, 255, 0.22);
}

/* Icon */
.mtt-awards .mtt-awards-icon {
	width: 56px;
	height: 56px;
	border-radius: 16px;
	background: rgba(255, 255, 255, 0.1);
	color: oklch(0.78 0.12 75);
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 22px;
}

/* Year */
.mtt-awards .mtt-awards-year {
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: oklch(0.78 0.12 75);
	margin-bottom: 10px;
	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* Card title */
.mtt-awards .mtt-awards-card-title {
	font-family: 'Fraunces', Georgia, serif;
	font-size: 20px;
	font-weight: 500;
	color: #fff;
	line-height: 1.25;
	margin-bottom: 12px;
}

/* Card image */
.mtt-awards .mtt-awards-card-img {
	width: 100%;
	border-radius: 12px;
	margin-bottom: 14px;
	display: block;
}

/* Card text */
.mtt-awards .mtt-awards-card-text {
	font-size: 14px;
	color: rgba(255, 255, 255, 0.7);
	line-height: 1.65;
	font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
}

.mtt-awards .mtt-awards-card-text p {
	margin: 0 0 10px;
}

.mtt-awards .mtt-awards-card-text p:last-child {
	margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1024px) {
	.mtt-awards .mtt-awards-grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 640px) {
	.mtt-awards {
		padding: 70px 0;
	}

	.mtt-awards .mtt-awards-grid {
		grid-template-columns: 1fr;
	}

	.mtt-awards .mtt-awards-card:hover {
		background: rgba(255, 255, 255, 0.06);
		border-color: rgba(255, 255, 255, 0.12);
	}
}
