/**
 * MediaOne Widgets — Awards section.
 *
 * A featured award card beside three compact cards, then a panel of the
 * remaining mentions in a three-column grid.
 *
 * Column split note: the original declared `lg:w-6/12` and `lg:w-7/12` — 108%
 * of the row, plus a 4rem gap. Flex shrink quietly resolved that to roughly
 * 46/54, which is what actually shipped. The values below reproduce the
 * rendered result rather than the broken declaration.
 */

.mow-awards {

	/* One value drives every alignment in this section — `text-align`,
	   `align-items` and `justify-content` all accept start/center/end, so the
	   alignment control writes this once and the whole block follows. */
	--mow-align: center;
}

.mow-awards__head {
	display: flex;
	flex-direction: column;
	align-items: var(--mow-align);
	text-align: var(--mow-align);
	margin-bottom: 2.5rem;
}

.mow-awards__label {
	display: inline-block;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--mow-blue);
	background: var(--mow-sky);
	padding: 5px 16px;
	border-radius: 100px;
	margin-bottom: 14px;
}

.mow-awards__title {
	font-weight: 900;
	font-size: clamp(1.375rem, 1.2rem + 0.8vw, 1.5rem);
	line-height: 1.3;
	margin-top: 0.5rem;
}

.mow-awards__hl {
	color: var(--mow-orange);
}

.mow-awards__sub {
	color: var(--mow-muted);
	line-height: 1.7;
	margin: 0.75rem 0;
}

/* ── Top row ──────────────────────────────────────────────────────────── */

.mow-awards__top {
	display: flex;
	flex-direction: column;
	gap: 2.5rem;
}

/* Shared card chrome. */
.mow-awards__featured,
.mow-awards__card {
	background: #fff;
	border: 1px solid #f3f4f6;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mow-awards__featured:hover,
.mow-awards__card:hover {
	transform: translateY(-2px);
	box-shadow: 0 12px 24px -8px rgba(0, 14, 62, 0.18);
}

/* ── Featured card ────────────────────────────────────────────────────── */

.mow-awards__featured {
	display: flex;
	flex-direction: column;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 4px 6px -1px rgba(0, 14, 62, 0.1);
	height: 100%;
}

.mow-awards__featured-media {
	height: 13rem;
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--mow-awards-media-bg, #1a57ef);
}

.mow-awards__featured-media img {
	width: auto;
	height: 10rem;
	padding: 1.5rem;
	object-fit: contain;
}

.mow-awards__featured-body {
	flex: 1;
	padding: 1.5rem;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}

.mow-awards__featured-title {
	font-weight: 900;
	font-size: 1.25rem;
	line-height: 1.3;
	color: #1f2937;
	margin: 0.75rem 0;
}

.mow-awards__featured-text {
	font-size: 0.875rem;
	line-height: 1.7;
	color: var(--mow-muted);
}

.mow-awards__featured-link {
	display: block;
	margin-top: 1rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--mow-blue);
	text-decoration: underline;
}

/* ── Badges ───────────────────────────────────────────────────────────── */

.mow-awards__badge {
	display: inline-block;
	padding: 0.25rem 0.75rem;
	border-radius: 9999px;
	font-size: 0.75rem;
	font-weight: 700;
}

/* ── Side cards ───────────────────────────────────────────────────────── */

.mow-awards__list {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	gap: 1rem;
}

.mow-awards__card {
	display: flex;
	gap: 1rem;
	padding: 1rem;
	border-radius: 12px;
	box-shadow: 0 1px 2px rgba(0, 14, 62, 0.08);
}

.mow-awards__card-media {
	width: 7rem;
	min-height: 80px;
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0.5rem;
	border-radius: 12px;
	overflow: hidden;
	background: var(--mow-awards-media-bg, #1a57ef);
}

.mow-awards__card-media img {
	width: 100%;
	height: 3rem;
	object-fit: contain;
}

.mow-awards__card-title {
	font-family: var(--mow-font-head);
	font-size: 0.875rem;
	font-weight: 700;
	color: #1f2937;
	margin: 0.25rem 0;
	line-height: 1.4;
}

.mow-awards__card-text {
	font-size: 0.875rem;
	line-height: 1.6;
	color: var(--mow-muted);
}

/* ── Other mentions panel ─────────────────────────────────────────────── */

.mow-awards__panel {
	margin-top: 2.5rem;
	background: #fff;
	border: 1px solid #f3f4f6;
	border-radius: 16px;
	overflow: hidden;
	box-shadow: 0 1px 2px rgba(0, 14, 62, 0.08);
}

.mow-awards__panel-head {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 1rem 1.5rem;
	border-bottom: 1px solid #f3f4f6;
}

.mow-awards__panel-icon {
	display: flex;
	color: var(--mow-yellow);
}

.mow-awards__panel-icon svg {
	width: 0.875rem;
	height: 0.875rem;
	fill: currentColor;
}

.mow-awards__panel-title {
	font-size: 0.875rem;
	font-weight: 700;
	color: var(--mow-deep);
}

.mow-awards__panel-pill {
	margin-left: auto;
	padding: 0.25rem 0.75rem;
	border-radius: 9999px;
	font-size: 0.75rem;
	font-weight: 700;
	background: rgba(255, 172, 0, 0.15);
	color: #b45309;
	white-space: nowrap;
}

.mow-awards__cols {
	display: grid;
	grid-template-columns: 1fr;
}

.mow-awards__col {
	padding: 1.25rem 1.5rem;
	border-top: 1px solid #f3f4f6;
}

.mow-awards__col:first-child {
	border-top: none;
}

.mow-awards__group + .mow-awards__group {
	margin-top: 1.25rem;
}

.mow-awards__group-title {
	font-size: 0.75rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	margin-bottom: 1rem;
}

.mow-awards__items {
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 0.875rem;
	color: #4b5563;
}

.mow-awards__items li {
	display: flex;
	align-items: flex-start;
	gap: 0.5rem;
}

.mow-awards__items li + li {
	margin-top: 0.75rem;
}

.mow-awards__dot {
	width: 0.75rem;
	height: 0.75rem;
	flex: 0 0 auto;
	margin-top: 0.25rem;
	border-radius: 50%;
	/* Grey unless the item is a win. */
	background: #d1d5db;
}

.mow-awards__item-badge {
	font-weight: 700;
	color: var(--mow-deep);
}

/* ── Breakpoints ──────────────────────────────────────────────────────── */

@media (min-width: 640px) {

	.mow-awards__cols {
		grid-template-columns: repeat(2, 1fr);
	}

	.mow-awards__col {
		border-top: none;
		border-left: 1px solid #f3f4f6;
	}

	.mow-awards__col:first-child {
		border-left: none;
	}

	/* Third cell wraps to a new row at this size and needs its rule back. */
	.mow-awards__col:nth-child(3) {
		border-top: 1px solid #f3f4f6;
		border-left: none;
	}
}

@media (min-width: 1024px) {

	.mow-awards__top {
		flex-direction: row;
		gap: 4rem;
	}

	.mow-awards__featured {
		width: 46%;
		flex: 0 0 auto;
	}

	.mow-awards__list {
		width: 54%;
		flex: 0 0 auto;
		margin-top: 0;
	}

	.mow-awards__cols {
		grid-template-columns: repeat(3, 1fr);
	}

	.mow-awards__col:nth-child(3) {
		border-top: none;
		border-left: 1px solid #f3f4f6;
	}
}
