/* WeAreTENZING — Featured Creators strip
   Brand tokens: slate #314951, mint #58DCC8, periwinkle #A1A9F9.
   Poppins 700 uppercase headings, DM Sans body, square corners. */

.wat-fc {
	--wat-slate: #314951;
	--wat-mint: #58DCC8;
	--wat-peri: #A1A9F9;
	box-sizing: border-box;
	max-width: 1280px;
	margin: 0 auto;
	padding: 8px 16px 4px;
	font-family: "DM Sans", "Helvetica Neue", Arial, sans-serif;
	color: var(--wat-slate);
}

.wat-fc *,
.wat-fc *::before,
.wat-fc *::after { box-sizing: border-box; }

.wat-fc-h {
	margin: 0 0 6px;
	font-family: "Poppins", "DM Sans", sans-serif;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: .02em;
	line-height: 1.1;
	color: var(--wat-slate);
}

.wat-fc-intro {
	margin: 0 0 22px;
	max-width: 62ch;
	font-size: 17px;
	line-height: 1.55;
	opacity: .85;
}

.wat-fc-grid {
	display: grid;
	grid-template-columns: repeat(6, 1fr);
	gap: 18px;
	margin: 22px 0 0;
	padding: 0;
	list-style: none;
}

/* --- placeholder tiles, shown for the instant before the six are drawn --- */
.wat-fc-skel {
	aspect-ratio: 3 / 4;
	background: rgba(49, 73, 81, .07);
}

@supports not (aspect-ratio: 3 / 4) {
	.wat-fc-skel { min-height: 260px; }
}

/* --- the card --- */
a.wat-fc-card {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	color: inherit;
	background: #fff;
	border: 1px solid rgba(49, 73, 81, .12);
	transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

a.wat-fc-card:hover,
a.wat-fc-card:focus-visible {
	transform: translateY(-4px);
	border-color: var(--wat-mint);
	box-shadow: 0 10px 26px rgba(49, 73, 81, .16);
}

a.wat-fc-card:focus-visible {
	outline: 3px solid var(--wat-mint);
	outline-offset: 2px;
}

.wat-fc-shot {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 1 / 1;
	overflow: hidden;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-size: 46px;
	color: #fff;
	text-shadow: 0 1px 2px rgba(0, 0, 0, .18);
}

@supports not (aspect-ratio: 1 / 1) {
	.wat-fc-shot { height: 190px; }
}

.wat-fc-shot img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center top;
	display: block;
}

.wat-fc-ribbon {
	position: absolute;
	left: 0;
	bottom: 0;
	z-index: 2;
	padding: 4px 9px;
	background: var(--wat-slate);
	color: #fff;
	font-family: "Barlow Condensed", "DM Sans", sans-serif;
	font-size: 14px;
	letter-spacing: .04em;
	text-transform: uppercase;
	text-shadow: none;
	white-space: nowrap;
}

.wat-fc-body {
	display: block;
	padding: 12px 12px 15px;
}

/* The theme colours links globally, and the whole card is a link — so the
   name and role need to out-specify that rather than rely on inheritance. */
.wat-fc a.wat-fc-card .wat-fc-name {
	display: block;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-size: 15px;
	line-height: 1.25;
	text-transform: uppercase;
	letter-spacing: .01em;
	color: var(--wat-slate);
}

.wat-fc a.wat-fc-card:hover .wat-fc-name,
.wat-fc a.wat-fc-card:focus-visible .wat-fc-name { color: var(--wat-slate); }

.wat-fc a.wat-fc-card .wat-fc-role {
	color: var(--wat-slate);
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	margin-top: 5px;
	font-size: 13.5px;
	line-height: 1.4;
	opacity: .75;
}

/* --- call to action --- */
.wat-fc-cta {
	margin: 26px 0 0;
	text-align: center;
}

a.wat-fc-btn {
	display: inline-block;
	padding: 14px 30px;
	background: var(--wat-slate);
	color: #fff;
	font-family: "Poppins", sans-serif;
	font-weight: 700;
	font-size: 13px;
	letter-spacing: .08em;
	text-transform: uppercase;
	text-decoration: none;
	border: 2px solid var(--wat-slate);
	transition: background .18s ease, color .18s ease;
}

a.wat-fc-btn:hover,
a.wat-fc-btn:focus-visible {
	background: var(--wat-mint);
	border-color: var(--wat-mint);
	color: var(--wat-slate);
}

.wat-fc-n { opacity: .7; font-weight: 400; }

/* --- responsive ---
   Only divisors of six, so every row is full: 6 across, then 3 + 3, then
   2 + 2 + 2. Four across would leave a widowed row of two. */
@media (max-width: 1180px) {
	.wat-fc-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
	.wat-fc-shot { font-size: 38px; }
}

@media (max-width: 560px) {
	.wat-fc-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
	.wat-fc-name { font-size: 14px; }
	.wat-fc-role { font-size: 12.5px; }
	.wat-fc-ribbon { font-size: 12px; padding: 3px 7px; }
	a.wat-fc-btn { width: 100%; text-align: center; }
}

@media (prefers-reduced-motion: reduce) {
	a.wat-fc-card { transition: none; }
	a.wat-fc-card:hover { transform: none; }
}
