Toggle menu
Toggle preferences menu
Toggle personal menu
Not logged in
Your IP address will be publicly visible if you make any edits.

Template:Home/FeaturedCard/styles.css

Template page
Revision as of 00:16, 19 April 2026 by Eloise Zomia (talk | contribs)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
.fc-section-label {
	font-size: 20px;
	font-weight: 600;
	color: #000;
	margin: 32px 0 16px 0;
	letter-spacing: -0.01em;
}

.fc-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
}

@media (max-width: 720px) {
	.fc-grid {
		grid-template-columns: 1fr;
	}
}

.fc-card {
	position: relative;
	aspect-ratio: 3 / 2;
	overflow: hidden;
	border-radius: 10px;
	background: #1a1a1a;
	transition: transform 0.2s ease;
}

.fc-card:hover {
	transform: translateY(-2px);
}

.fc-card--hero {
	aspect-ratio: 16 / 9;
}

/* Kill MediaWiki figure/caption wrappers so image fills card */
.fc-media,
.fc-media figure,
.fc-media .mw-file-description,
.fc-media .mw-file-element,
.fc-media span {
	position: absolute;
	inset: 0;
	margin: 0;
	padding: 0;
	line-height: 0;
	font-size: 0;
	display: block;
}

.fc-media img,
.fc-img {
	width: 100% !important;
	height: 100% !important;
	max-width: none !important;
	object-fit: cover;
	display: block;
	transition: transform 0.5s ease;
}

.fc-card:hover .fc-media img {
	transform: scale(1.04);
}

/* Gradient scrim */
.fc-card::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(
		to top,
		rgba(0, 0, 0, 0.85) 0%,
		rgba(0, 0, 0, 0.55) 25%,
		rgba(0, 0, 0, 0.15) 55%,
		rgba(0, 0, 0, 0) 75%
	);
	z-index: 1;
}

/* Text overlay */
.fc-body {
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	padding: 18px 20px 20px;
	color: #fff;
	z-index: 2;
}

.fc-eyebrow {
	font-size: 11px;
	font-weight: 500;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.75);
	margin: 0 0 8px 0;
}

.fc-title {
	font-size: 17px;
	font-weight: 600;
	line-height: 1.3;
	color: #fff;
	margin: 0 0 4px 0;
	letter-spacing: -0.005em;
	max-height: calc(1.3em * 2);
	overflow: hidden;
}

.fc-sub {
	font-size: 13px;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.88);
	line-height: 1.4;
	margin: 0;
	max-height: calc(1.4em * 2);
	overflow: hidden;
}

.fc-card--hero .fc-title {
	font-size: 28px;
	max-height: calc(1.25em * 2);
}

.fc-card--hero .fc-sub {
	font-size: 15px;
}

.fc-card--hero .fc-body {
	padding: 28px 32px 32px;
}

.fc-card--hero .fc-title {
	line-height: 1.25;
}

/* Full-card click target */
.fc-link {
	position: absolute;
	inset: 0;
	z-index: 3;
}

.fc-link a {
	display: block;
	width: 100%;
	height: 100%;
	text-indent: -9999px;
	color: transparent;
	overflow: hidden;
}