/* Winners & Shoutouts */
.atlfc-shoutouts {
	--atlfc-so-red: #CC0000;
	--atlfc-so-black: #111111;
	--atlfc-so-muted: #666666;
	--atlfc-so-border: #E8E8E8;
	box-sizing: border-box;
	width: 100%;
	padding: 72px 24px;
	background: #fff;
	color: var(--atlfc-so-black);
}

.atlfc-shoutouts *,
.atlfc-shoutouts *::before,
.atlfc-shoutouts *::after {
	box-sizing: border-box;
}

.atlfc-shoutouts__inner {
	max-width: 1100px;
	margin: 0 auto;
}

.atlfc-shoutouts__header {
	max-width: 640px;
	margin: 0 auto 48px;
	text-align: center;
}

.atlfc-shoutouts__pill {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 7px 18px;
	margin: 0 0 18px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--atlfc-so-red);
	background: transparent;
	border: 1.5px solid var(--atlfc-so-red);
	border-radius: 999px;
	line-height: 1.2;
}

.atlfc-shoutouts__title {
	font-family: "Arial Black", Arial, Helvetica, sans-serif;
	font-size: clamp(28px, 4.5vw, 42px);
	font-weight: 900;
	line-height: 1.08;
	text-transform: uppercase;
	letter-spacing: -0.02em;
	margin: 0 0 14px;
	color: var(--atlfc-so-black);
}

.atlfc-shoutouts__subtitle {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.5;
	color: var(--atlfc-so-muted);
	margin: 0;
}

.atlfc-shoutouts__empty {
	text-align: center;
	font-family: Arial, Helvetica, sans-serif;
	color: var(--atlfc-so-muted);
	font-size: 16px;
	padding: 32px 16px;
	border: 1px dashed var(--atlfc-so-border);
}

.atlfc-shoutouts__grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
	gap: 28px;
}

.atlfc-shoutouts__grid--cols-2 {
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.atlfc-shoutouts__grid--cols-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.atlfc-shoutouts__grid--cols-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.atlfc-shoutouts__card {
	display: flex;
	flex-direction: column;
	background: #fff;
	border: 1px solid var(--atlfc-so-border);
	overflow: hidden;
	min-width: 0;
}

.atlfc-shoutouts__photo {
	aspect-ratio: 1 / 1;
	background: #f3f3f3;
	overflow: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
}

.atlfc-shoutouts__photo img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.atlfc-shoutouts__photo-fallback {
	font-family: "Arial Black", Arial, Helvetica, sans-serif;
	font-size: 64px;
	font-weight: 900;
	color: var(--atlfc-so-red);
	line-height: 1;
}

.atlfc-shoutouts__body {
	padding: 20px 18px 22px;
	text-align: left;
}

.atlfc-shoutouts__type {
	display: inline-block;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 11px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--atlfc-so-red);
	margin-bottom: 8px;
}

.atlfc-shoutouts__name {
	font-family: "Arial Black", Arial, Helvetica, sans-serif;
	font-size: 20px;
	font-weight: 900;
	line-height: 1.15;
	text-transform: uppercase;
	margin: 0 0 6px;
	color: var(--atlfc-so-black);
}

.atlfc-shoutouts__when {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 13px;
	font-weight: 700;
	color: var(--atlfc-so-muted);
	margin: 0 0 10px;
}

.atlfc-shoutouts__note {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 14px;
	line-height: 1.45;
	color: #444;
	margin: 0;
}

@media (max-width: 1024px) {
	.atlfc-shoutouts__grid--cols-3,
	.atlfc-shoutouts__grid--cols-4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	.atlfc-shoutouts {
		padding: 48px 16px;
	}

	.atlfc-shoutouts__header {
		margin-bottom: 32px;
	}

	.atlfc-shoutouts__title {
		font-size: clamp(24px, 7vw, 32px);
	}

	.atlfc-shoutouts__grid,
	.atlfc-shoutouts__grid--cols-2,
	.atlfc-shoutouts__grid--cols-3,
	.atlfc-shoutouts__grid--cols-4 {
		grid-template-columns: 1fr;
		max-width: 360px;
		margin-left: auto;
		margin-right: auto;
	}

	.atlfc-shoutouts__name {
		font-size: 18px;
	}
}
