:root {
	--abdc-ink: #14213d;
	--abdc-muted: #5e6877;
	--abdc-line: #dce3ea;
	--abdc-soft: #f4f7f9;
	--abdc-accent: #d84b2a;
	--abdc-dark: #0d1726;
}

.abdc-player,
.abdc-teaser,
.abdc-method,
.abdc-card {
	box-sizing: border-box;
}

.abdc-player {
	display: block;
	width: 100%;
	max-width: none;
	clear: both;
	margin: 2rem 0 2.25rem;
	border: 1px solid var(--abdc-line);
	border-radius: 16px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 12px 32px rgba(13, 23, 38, .08);
}

.abdc-player__head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	padding: .8rem 1rem;
	background: var(--abdc-dark);
	color: #fff;
	font-size: .82rem;
}

.abdc-kicker {
	margin: 0;
	font-size: .76rem;
	font-weight: 800;
	letter-spacing: .09em;
	text-transform: uppercase;
	color: var(--abdc-accent);
}

.abdc-player__head .abdc-kicker {
	color: #ff9a80;
}

.abdc-player__frame {
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 9;
	background: #000;
}

.abdc-player__frame iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: 0;
}

.abdc-facts {
	display: grid;
	width: 100%;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	margin: 0;
	border-bottom: 1px solid var(--abdc-line);
}

.abdc-facts div {
	padding: .85rem 1rem;
	border-right: 1px solid var(--abdc-line);
}

.abdc-facts div:last-child {
	border-right: 0;
}

.abdc-facts dt {
	margin-bottom: .18rem;
	font-size: .68rem;
	font-weight: 800;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--abdc-muted);
}

.abdc-facts dd {
	margin: 0;
	font-weight: 700;
	color: var(--abdc-ink);
}

.abdc-disclosure {
	margin: 0;
	padding: 1rem;
	font-size: .88rem;
	line-height: 1.6;
	color: var(--abdc-muted);
}

.abdc-method {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1px;
	margin: 2rem 0;
	overflow: hidden;
	border-radius: 14px;
	background: var(--abdc-line);
}

.abdc-method div {
	display: flex;
	flex-direction: column;
	gap: .3rem;
	padding: 1.15rem;
	background: var(--abdc-soft);
}

.abdc-method strong {
	color: var(--abdc-ink);
}

.abdc-method span {
	font-size: .9rem;
	color: var(--abdc-muted);
}

.abdc-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1.5rem;
	margin: 2rem 0;
}

.abdc-card {
	overflow: hidden;
	border: 1px solid var(--abdc-line);
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(13, 23, 38, .06);
}

.abdc-card__media,
.abdc-teaser__media {
	position: relative;
	display: block;
	overflow: hidden;
	background: var(--abdc-dark);
}

.abdc-card__media {
	aspect-ratio: 16 / 9;
}

.abdc-card__media img,
.abdc-teaser__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .25s ease;
}

.abdc-card__media:hover img,
.abdc-teaser__media:hover img {
	transform: scale(1.025);
}

.abdc-card__media span,
.abdc-teaser__media span {
	position: absolute;
	top: 50%;
	left: 50%;
	display: grid;
	place-items: center;
	width: 3rem;
	height: 3rem;
	transform: translate(-50%, -50%);
	border-radius: 999px;
	background: rgba(216, 75, 42, .94);
	color: #fff;
	box-shadow: 0 4px 18px rgba(0, 0, 0, .3);
}

.abdc-card__body {
	padding: 1.2rem;
}

.abdc-card__meta {
	margin: 0 0 .45rem;
	font-size: .75rem;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	color: var(--abdc-muted);
}

.abdc-card h2 {
	margin: 0 0 .65rem;
	font-size: 1.22rem;
	line-height: 1.25;
}

.abdc-card h2 a {
	color: var(--abdc-ink);
	text-decoration: none;
}

.abdc-card__body > p:not(.abdc-card__meta) {
	font-size: .92rem;
	color: var(--abdc-muted);
}

.abdc-card__link,
.abdc-teaser__link {
	font-weight: 800;
	color: var(--abdc-accent);
}

.abdc-teaser {
	display: grid;
	grid-template-columns: minmax(220px, .8fr) minmax(0, 1.45fr);
	gap: 0;
	margin: 2rem 0;
	overflow: hidden;
	border: 1px solid var(--abdc-line);
	border-left: 4px solid var(--abdc-accent);
	border-radius: 14px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(13, 23, 38, .07);
}

.abdc-teaser__media {
	min-height: 100%;
}

.abdc-teaser__body {
	padding: 1.15rem 1.25rem 1.25rem;
}

.abdc-teaser h2 {
	margin: .3rem 0 .7rem;
	font-size: 1.25rem;
	line-height: 1.25;
	color: var(--abdc-ink);
}

.abdc-teaser__body p:not(.abdc-kicker) {
	margin: .45rem 0;
	font-size: .91rem;
	line-height: 1.5;
	color: var(--abdc-muted);
}

.abdc-teaser__link {
	display: inline-block;
	margin-top: .45rem;
}

@media (max-width: 760px) {
	.abdc-facts,
	.abdc-method,
	.abdc-grid,
	.abdc-teaser {
		grid-template-columns: 1fr;
	}

	.abdc-facts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.abdc-facts div:nth-child(2) {
		border-right: 0;
	}

	.abdc-facts div:nth-child(-n+2) {
		border-bottom: 1px solid var(--abdc-line);
	}

	.abdc-teaser__media {
		aspect-ratio: 16 / 9;
	}
}

@media (prefers-reduced-motion: reduce) {
	.abdc-card__media img,
	.abdc-teaser__media img {
		transition: none;
	}
}
