:root {
	--nfte-accent: #1f5a3a;
	--nfte-text: #1f2421;
	--nfte-muted: #626862;
	--nfte-border: #dedfdc;
	--nfte-surface: #ffffff;
	--nfte-soft: #f5f6f3;
	--nfte-radius: 14px;
	--nfte-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.nfte-page-shell,
.nfte-shortcode-wrap {
	box-sizing: border-box;
	width: min(1180px, calc(100% - 32px));
	margin-inline: auto;
}

.nfte-page-shell {
	padding-block: clamp(42px, 7vw, 90px);
}

.nfte-archive-header {
	margin-bottom: 34px;
	text-align: center;
}

.nfte-archive-header h1,
.nfte-single__header h1 {
	margin: 0;
	line-height: 1.08;
}

.nfte-eyebrow,
.nfte-card__kicker {
	margin: 0 0 8px;
	color: var(--nfte-accent);
	font-size: 0.82rem;
	font-weight: 700;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.nfte-filters {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 8px;
	margin: 24px 0 30px;
}

.nfte-filter {
	display: inline-flex;
	align-items: center;
	min-height: 40px;
	padding: 7px 15px;
	border: 1px solid var(--nfte-border);
	border-radius: 999px;
	color: inherit;
	text-decoration: none;
}

.nfte-filter:hover,
.nfte-filter:focus-visible,
.nfte-filter.is-active {
	border-color: var(--nfte-accent);
	background: var(--nfte-accent);
	color: #fff;
}

.nfte-events {
	display: grid;
	gap: 24px;
}

.nfte-layout-grid.nfte-columns-1 { grid-template-columns: 1fr; }
.nfte-layout-grid.nfte-columns-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.nfte-layout-grid.nfte-columns-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.nfte-layout-grid.nfte-columns-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.nfte-layout-list { grid-template-columns: 1fr; }

.nfte-card {
	display: flex;
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--nfte-border);
	border-radius: var(--nfte-radius);
	background: var(--nfte-surface);
	box-shadow: var(--nfte-shadow);
}

.nfte-card--grid {
	flex-direction: column;
}

.nfte-card--list {
	flex-direction: row;
}

.nfte-card__media {
	display: block;
	aspect-ratio: 16 / 10;
	overflow: hidden;
	background: var(--nfte-soft);
}

.nfte-card--list .nfte-card__media {
	width: min(36%, 360px);
	aspect-ratio: auto;
}

.nfte-card__media img,
.nfte-single__hero img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.nfte-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--nfte-soft), #e7e9e4);
}

.nfte-card__body {
	display: flex;
	flex: 1;
	flex-direction: column;
	padding: 22px;
}

.nfte-card__badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 14px;
}

.nfte-badge {
	display: inline-flex;
	align-items: center;
	min-height: 26px;
	padding: 3px 9px;
	border-radius: 999px;
	font-size: 0.75rem;
	font-weight: 700;
	line-height: 1;
}

.nfte-badge--type {
	background: #e8f0eb;
	background: color-mix(in srgb, var(--nfte-accent) 13%, white);
	color: var(--nfte-accent);
}

.nfte-badge--featured {
	background: #efe4bf;
	color: #5f4b00;
}

.nfte-card--featured {
	border-color: var(--nfte-accent);
	border-color: color-mix(in srgb, var(--nfte-accent) 48%, var(--nfte-border));
}

.nfte-badge--status {
	background: #f3ebc9;
	color: #6a5700;
}

.nfte-status-cancelled {
	background: #f9dddd;
	color: #8b2020;
}

.nfte-card__datetime {
	display: flex;
	flex-wrap: wrap;
	gap: 5px 14px;
	margin: 0 0 14px;
	color: var(--nfte-muted);
	font-size: 0.9rem;
}

.nfte-card__title {
	margin: 0 0 10px;
	font-size: clamp(1.25rem, 2vw, 1.65rem);
	line-height: 1.18;
}

.nfte-card__title a {
	color: inherit;
	text-decoration: none;
}

.nfte-card__title a:hover,
.nfte-card__title a:focus-visible {
	color: var(--nfte-accent);
}

.nfte-card__participants,
.nfte-card__summary {
	margin: 0 0 14px;
}

.nfte-card__participants {
	font-weight: 700;
}

.nfte-card__summary {
	color: var(--nfte-muted);
}

.nfte-card__link {
	margin-top: auto;
	color: var(--nfte-accent);
	font-weight: 700;
	text-decoration: none;
}

.nfte-pagination {
	margin-top: 34px;
	text-align: center;
}

.nfte-pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	min-height: 38px;
	margin: 3px;
	padding: 5px 10px;
	border: 1px solid var(--nfte-border);
	border-radius: 8px;
	text-decoration: none;
}

.nfte-pagination .current,
.nfte-pagination a:hover {
	border-color: var(--nfte-accent);
	background: var(--nfte-accent);
	color: #fff;
}

.nfte-empty {
	padding: 24px;
	border: 1px dashed var(--nfte-border);
	border-radius: var(--nfte-radius);
	text-align: center;
}

.nfte-single-shell {
	max-width: 980px;
}

.nfte-back-link {
	display: inline-block;
	margin-bottom: 28px;
	color: var(--nfte-accent);
	font-weight: 700;
	text-decoration: none;
}

.nfte-single__header {
	margin-bottom: 30px;
}

.nfte-single__subtitle {
	max-width: 720px;
	margin: 14px 0 0;
	color: var(--nfte-muted);
	font-size: 1.15rem;
}

.nfte-single__hero {
	aspect-ratio: 16 / 8;
	margin: 0 0 28px;
	overflow: hidden;
	border-radius: var(--nfte-radius);
}

.nfte-event-facts {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
	margin: 0 0 32px;
}

.nfte-event-facts > div {
	padding: 18px;
	border: 1px solid var(--nfte-border);
	border-radius: 10px;
	background: var(--nfte-soft);
}

.nfte-event-facts span,
.nfte-event-facts small {
	display: block;
}

.nfte-event-facts span {
	margin-bottom: 5px;
	color: var(--nfte-muted);
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.nfte-event-facts small {
	margin-top: 4px;
	color: var(--nfte-muted);
}

.nfte-matchup {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
	align-items: center;
	gap: 20px;
	margin: 0 0 28px;
	padding: clamp(22px, 5vw, 46px);
	border-radius: var(--nfte-radius);
	background: var(--nfte-soft);
	text-align: center;
}

.nfte-team {
	display: grid;
	justify-items: center;
	gap: 12px;
	font-size: clamp(1rem, 2.4vw, 1.5rem);
}

.nfte-team__logo {
	width: 100px;
	height: 100px;
	object-fit: contain;
}

.nfte-versus {
	color: var(--nfte-accent);
	font-weight: 800;
}

.nfte-single__content {
	font-size: 1.04rem;
	line-height: 1.75;
}

.nfte-single__actions {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-top: 32px;
}

.nfte-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 10px 18px;
	border: 1px solid var(--nfte-accent);
	border-radius: 7px;
	background: var(--nfte-accent);
	color: #fff;
	font-weight: 700;
	text-decoration: none;
}

.nfte-button--secondary {
	background: transparent;
	color: var(--nfte-accent);
}

.nfte-text-link {
	color: var(--nfte-accent);
	font-weight: 700;
	text-decoration: none;
}

@media (max-width: 960px) {
	.nfte-layout-grid.nfte-columns-3,
	.nfte-layout-grid.nfte-columns-4 {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

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

@media (max-width: 640px) {
	.nfte-page-shell,
	.nfte-shortcode-wrap {
		width: min(calc(100% - 24px), 1180px);
	}

	.nfte-layout-grid.nfte-columns-2,
	.nfte-layout-grid.nfte-columns-3,
	.nfte-layout-grid.nfte-columns-4 {
		grid-template-columns: 1fr;
	}

	.nfte-card--list {
		flex-direction: column;
	}

	.nfte-card--list .nfte-card__media {
		width: 100%;
		aspect-ratio: 16 / 10;
	}

	.nfte-event-facts {
		grid-template-columns: 1fr;
	}

	.nfte-matchup {
		grid-template-columns: 1fr;
	}
}
