/*
 * Kontra Faul — dynamic homepage prototype.
 * Scoped to page-kf-home.php so no existing page or post is restyled.
 */

:root {
	--kf-navy: #101827;
	--kf-navy-soft: #172237;
	--kf-white: #f7f8f3;
	--kf-accent: #d5e63a;
	--kf-heading: #bac7df;
	--kf-line: rgba(247, 248, 243, 0.18);
	--kf-muted: rgba(247, 248, 243, 0.64);
}

body.page-template-page-kf-home {
	background: var(--kf-navy);
}

body.page-template-page-kf-home .ct-header,
body.page-template-page-kf-home .ct-footer,
body.page-template-page-kf-home > .ct-drawer-canvas,
body.page-template-page-kf-home [data-block*="hook:before_content"],
body.page-template-page-kf-home [data-block*="hook:after_content"] {
	display: none !important;
}

body.page-template-page-kf-home #main-container,
body.page-template-page-kf-home .site-main {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	background: var(--kf-navy);
}

.kf-home-page,
.kf-home-page *,
.kf-home-page *::before,
.kf-home-page *::after {
	box-sizing: border-box;
}

.kf-home-page {
	background: var(--kf-navy);
	color: var(--kf-white);
	font-family: Arial, Helvetica, sans-serif;
	text-rendering: optimizeLegibility;
}

.kf-home-page a {
	color: inherit;
	text-decoration: none;
}

.kf-home-page img,
.kf-home-page svg {
	display: block;
}

.kf-home-page img {
	max-width: 100%;
	height: auto;
}

.kf-page-shell {
	width: min(1320px, calc(100% - 64px));
	margin-inline: auto;
}

.kf-site-header {
	border-bottom: 1px solid var(--kf-line);
}

.kf-header-main {
	display: flex;
	min-height: 122px;
	align-items: center;
	justify-content: space-between;
	gap: 48px;
}

.kf-wordmark,
.kf-footer-wordmark {
	display: block;
	width: clamp(144px, 14.6vw, 203px);
}

.kf-brand-logo,
.kf-footer-logo {
	width: 100%;
	height: auto;
}

.kf-tagline {
	max-width: 290px;
	margin: 0;
	font-family: "Arial Narrow", "DejaVu Sans Condensed", Arial, sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 1.35;
}

.kf-tagline span {
	display: block;
	margin-top: 8px;
	color: var(--kf-accent);
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.kf-desktop-nav {
	display: flex;
	min-height: 57px;
	align-items: stretch;
	gap: clamp(24px, 3.5vw, 54px);
	border-top: 1px solid var(--kf-line);
	font-family: "Arial Narrow", "DejaVu Sans Condensed", Arial, sans-serif;
	font-size: 13px;
	font-weight: 900;
}

.kf-desktop-nav a {
	position: relative;
	display: flex;
	align-items: center;
}

.kf-desktop-nav a::after {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	height: 3px;
	background: var(--kf-accent);
	content: "";
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.18s ease;
}

.kf-desktop-nav a:hover::after,
.kf-desktop-nav a.is-active::after {
	transform: scaleX(1);
}

.kf-desktop-nav a.is-active {
	color: var(--kf-accent);
}

.kf-desktop-nav .kf-nav-contact {
	margin-left: auto;
}

.kf-mobile-nav {
	display: none;
}

.kf-home-intro {
	padding: 42px 0 28px;
}

.kf-section-label,
.kf-post-meta {
	margin: 0;
	color: var(--kf-accent);
	font-family: "Arial Narrow", "DejaVu Sans Condensed", Arial, sans-serif;
	font-size: 11px;
	font-weight: 900;
	letter-spacing: 0.12em;
	text-transform: uppercase;
}

.kf-home-intro h1 {
	margin: 0;
	color: var(--kf-accent);
	font-family: "Arial Narrow", "DejaVu Sans Condensed", Arial, sans-serif;
	font-size: clamp(1.1rem, 1.45vw, 1.3rem);
	font-weight: 900;
	letter-spacing: 0.06em;
	line-height: 1.05;
	text-transform: uppercase;
}

.kf-lead-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.55fr) minmax(340px, 0.75fr);
	border-top: 1px solid var(--kf-line);
	border-bottom: 1px solid var(--kf-line);
}

.kf-lead-story {
	padding: 34px 38px 34px 0;
	border-right: 1px solid var(--kf-line);
}

.kf-lead-image {
	aspect-ratio: auto;
	overflow: hidden;
	background: var(--kf-navy-soft);
}

.kf-lead-image img,
.kf-card-image img,
.kf-simple-image img,
.kf-fpl-image img,
.kf-betting-image img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(0.8) contrast(1.03);
	transition: transform 0.4s ease, filter 0.2s ease;
}

.kf-lead-image .kf-lead-image-main {
	display: block;
	height: auto;
	object-fit: contain;
	filter: saturate(0.9) contrast(1.03);
}

.kf-lead-image.is-empty {
	aspect-ratio: 16 / 8.6;
}

.kf-lead-image.is-empty img,
.kf-card-image.is-empty img,
.kf-simple-image.is-empty img,
.kf-fpl-image.is-empty img,
.kf-betting-image.is-empty img {
	object-fit: contain;
	padding: 14%;
	filter: none;
}

.kf-lead-story:hover .kf-lead-image .kf-lead-image-main {
	filter: saturate(1) contrast(1.03);
	transform: none;
}

.kf-post-card:hover .kf-card-image img,
.kf-simple-post:hover .kf-simple-image img,
.kf-fpl-feature:hover .kf-fpl-image img,
.kf-betting-feature:hover .kf-betting-image img {
	filter: saturate(1) contrast(1.03);
	transform: scale(1.025);
}

.kf-lead-copy {
	padding-top: 28px;
}

.kf-post-meta span {
	display: inline-block;
	width: 4px;
	height: 4px;
	margin: 0 8px 2px;
	border-radius: 50%;
	background: var(--kf-accent);
}

.kf-lead-copy h2,
.kf-section-header h2,
.kf-post-card h3,
.kf-simple-post h3,
.kf-fpl-title h3,
.kf-betting-title h3,
.kf-latest-list h3 {
	color: var(--kf-heading);
	font-family: "Arial Narrow", "DejaVu Sans Condensed", Arial, sans-serif;
	font-weight: 900;
}

.kf-lead-copy h2 {
	max-width: 820px;
	margin: 14px 0 16px;
	font-size: clamp(1.75rem, 2.7vw, 2.7rem);
	line-height: 1.04;
}

.kf-lead-copy > p:not(.kf-post-meta) {
	max-width: 700px;
	margin: 0;
	color: var(--kf-muted);
	font-size: 15px;
	line-height: 1.65;
}

.kf-read-more,
.kf-section-link {
	display: inline-flex;
	align-items: center;
	gap: 12px;
	color: var(--kf-accent);
	font-size: 12px;
	font-weight: 900;
}

.kf-read-more {
	margin-top: 24px;
}

.kf-read-more svg,
.kf-section-link svg,
.kf-row-arrow svg,
.kf-feature-arrow svg {
	width: 21px;
	height: 21px;
	fill: none;
	stroke: currentColor;
	stroke-width: 1.8;
	stroke-linecap: round;
	stroke-linejoin: round;
	transition: transform 0.18s ease;
}

.kf-home-page a:hover .kf-read-more svg,
.kf-section-link:hover svg,
.kf-article-row:hover .kf-row-arrow svg,
.kf-fpl-feature:hover .kf-feature-arrow svg,
.kf-betting-feature:hover .kf-feature-arrow svg {
	transform: translateX(5px);
}

.kf-latest-list {
	padding: 34px 0 34px 38px;
}

.kf-latest-heading {
	display: flex;
	min-height: 54px;
	align-items: flex-start;
	justify-content: space-between;
	border-bottom: 1px solid var(--kf-line);
}

.kf-latest-heading h2 {
	margin: 0;
	color: var(--kf-accent);
	font-size: 14px;
	letter-spacing: 0.06em;
	text-transform: uppercase;
}

.kf-latest-heading > span {
	color: var(--kf-accent);
	font-size: 11px;
	font-weight: 900;
}

.kf-article-row {
	position: relative;
	display: grid;
	min-height: 116px;
	padding: 20px 38px 20px 0;
	align-content: center;
	grid-template-columns: 1fr auto;
	gap: 8px 16px;
	border-bottom: 1px solid var(--kf-line);
	transition: padding-left 0.18s ease;
}

.kf-article-row:hover {
	padding-left: 8px;
}

.kf-article-category,
.kf-article-row time {
	color: var(--kf-muted);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-transform: uppercase;
}

.kf-article-row time {
	text-align: right;
}

.kf-article-row h3 {
	grid-column: 1 / -1;
	margin: 0;
	font-size: 19px;
	line-height: 1.15;
}

.kf-row-arrow {
	position: absolute;
	right: 0;
	bottom: 20px;
	color: var(--kf-accent);
}

/*
 * Homepage editorial overview.
 * Analyses carry the visual weight, while the latest posts remain a compact,
 * text-only navigation column.
 */
.kf-editorial-overview {
	display: grid;
	padding-top: 42px;
	grid-template-columns: minmax(0, 7fr) minmax(280px, 3fr);
	border-bottom: 1px solid var(--kf-line);
}

.kf-analysis-focus {
	min-width: 0;
	padding-right: 38px;
	border-right: 1px solid var(--kf-line);
}

.kf-analysis-heading {
	display: flex;
	min-height: 88px;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	border-top: 1px solid var(--kf-line);
	border-bottom: 1px solid var(--kf-line);
	scroll-margin-top: 24px;
}

.kf-analysis-heading h1 {
	margin: 0;
	color: var(--kf-heading);
	font-family: "Arial Narrow", "DejaVu Sans Condensed", Arial, sans-serif;
	font-size: clamp(2rem, 3vw, 3rem);
	font-weight: 900;
	line-height: 0.92;
	text-transform: uppercase;
}

.kf-analysis-grid {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
}

.kf-analysis-grid .kf-post-card {
	min-width: 0;
	min-height: 0;
	align-items: stretch;
	border-left: 0;
}

.kf-analysis-grid .kf-post-card:nth-child(odd) {
	border-right: 1px solid var(--kf-line);
}

.kf-analysis-grid .kf-post-card:nth-child(-n + 2) {
	border-bottom: 1px solid var(--kf-line);
}

.kf-analysis-grid .kf-card-image {
	height: auto;
	aspect-ratio: 16 / 9;
}

.kf-analysis-grid .kf-card-image img {
	object-fit: contain;
	filter: saturate(0.9) contrast(1.02);
}

.kf-analysis-grid .kf-post-card:hover .kf-card-image img {
	transform: none;
}

.kf-analysis-grid .kf-card-copy {
	min-height: 155px;
	padding: 20px 22px;
	justify-content: flex-start;
}

.kf-analysis-grid .kf-post-card h3 {
	margin-top: 10px;
	font-size: clamp(1.05rem, 1.35vw, 1.35rem);
	line-height: 1.16;
}

.kf-analysis-grid .kf-post-card .kf-read-more {
	margin-top: auto;
	padding-top: 16px;
}

.kf-editorial-overview .kf-latest-list {
	padding: 0 0 0 38px;
}

.kf-editorial-overview .kf-latest-heading {
	min-height: 88px;
	align-items: center;
	border-top: 1px solid var(--kf-line);
}

.kf-editorial-overview .kf-article-row {
	min-height: 160px;
}

.kf-category-section {
	padding-top: 90px;
}

.kf-section-header {
	display: grid;
	padding-bottom: 26px;
	align-items: end;
	grid-template-columns: 1fr minmax(260px, 0.8fr) auto;
	gap: 48px;
	border-bottom: 1px solid var(--kf-line);
	scroll-margin-top: 24px;
}

.kf-section-header h2 {
	margin: 8px 0 0;
	font-size: clamp(2.15rem, 3.2vw, 3.25rem);
	line-height: 0.92;
	text-transform: uppercase;
}

.kf-section-header > p {
	margin: 0;
	color: var(--kf-muted);
	font-size: 13px;
	line-height: 1.6;
}

.kf-section-link {
	padding-bottom: 2px;
	white-space: nowrap;
}

.kf-post-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	border-bottom: 1px solid var(--kf-line);
}

.kf-post-card {
	display: flex;
	min-height: 300px;
	flex-direction: column;
	align-items: flex-end;
	border-left: 1px solid var(--kf-line);
	transition: background 0.18s ease;
}

.kf-post-card:first-child {
	border-left: 0;
}

.kf-post-card:hover,
.kf-simple-post:hover {
	background: var(--kf-navy-soft);
}

.kf-card-image {
	width: 100%;
	height: 205px;
	overflow: hidden;
	background: var(--kf-navy-soft);
}

.kf-card-copy {
	display: flex;
	width: 100%;
	min-height: 220px;
	padding: 28px;
	flex-direction: column;
	justify-content: flex-end;
}

.kf-post-card h3 {
	margin: 14px 0 0;
	font-size: clamp(1.35rem, 1.75vw, 1.9rem);
	line-height: 1.15;
}

.kf-post-card .kf-read-more {
	margin-top: 50px;
}

.kf-simple-posts {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 1px;
	border-bottom: 1px solid var(--kf-line);
	background: var(--kf-line);
}

.kf-simple-post {
	display: flex;
	min-width: 0;
	flex-direction: column;
	background: var(--kf-navy);
	transition: background 0.18s ease;
}

.kf-simple-image {
	height: 270px;
	overflow: hidden;
	background: var(--kf-navy-soft);
}

.kf-simple-copy {
	display: flex;
	width: 100%;
	min-height: 205px;
	padding: 28px;
	flex: 1;
	flex-direction: column;
}

.kf-simple-post h3 {
	max-width: 570px;
	margin: 11px 0 0;
	font-size: clamp(1.45rem, 2vw, 2.15rem);
	line-height: 1.12;
}

.kf-simple-copy .kf-read-more {
	margin-top: auto;
	padding-top: 26px;
}

.kf-fpl-feature {
	display: grid;
	min-height: 280px;
	padding: 0;
	align-items: center;
	grid-template-columns: minmax(280px, 0.65fr) 0.9fr 1.1fr auto;
	gap: 42px;
	border-bottom: 1px solid var(--kf-line);
}

.kf-fpl-image {
	min-height: 310px;
	align-self: stretch;
	overflow: hidden;
	background: var(--kf-navy-soft);
}

.kf-fpl-title {
	display: flex;
	align-items: center;
	gap: 28px;
}

.kf-fpl-title > span {
	display: grid;
	width: 94px;
	min-width: 94px;
	height: 94px;
	place-items: center;
	border: 1px solid var(--kf-accent);
	color: var(--kf-accent);
	font-family: Impact, "Arial Narrow", sans-serif;
	font-size: 27px;
}

.kf-fpl-title h3 {
	margin: 10px 0 0;
	font-size: clamp(1.45rem, 2vw, 2.2rem);
	line-height: 1.12;
}

.kf-fpl-choices {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	border: 1px solid var(--kf-line);
	background: var(--kf-line);
}

.kf-fpl-choices > span {
	display: flex;
	min-height: 82px;
	padding: 18px;
	flex-direction: column;
	justify-content: center;
	gap: 7px;
	background: var(--kf-navy);
	font-size: 13px;
	font-weight: 800;
	line-height: 1.35;
	overflow-wrap: anywhere;
}

.kf-fpl-choices > .is-captain {
	grid-column: 1 / -1;
	align-items: center;
	background: var(--kf-navy-soft);
	text-align: center;
}

.kf-fpl-choices small {
	color: var(--kf-accent);
	font-size: 9px;
	font-weight: 900;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

.kf-fpl-excerpt {
	margin: 0;
	color: var(--kf-muted);
	font-size: 13px;
	line-height: 1.65;
}

.kf-feature-arrow {
	color: var(--kf-accent);
}

.kf-feature-arrow svg {
	width: 30px;
	height: 30px;
}

.kf-betting-feature {
	display: grid;
	min-height: 300px;
	padding: 0;
	align-items: center;
	grid-template-columns: minmax(280px, 0.65fr) 0.78fr 1.3fr auto;
	gap: 42px;
	border-bottom: 1px solid var(--kf-line);
}

.kf-betting-image {
	min-height: 310px;
	align-self: stretch;
	overflow: hidden;
	background: var(--kf-navy-soft);
}

.kf-betting-title {
	display: flex;
	align-items: center;
	gap: 28px;
}

.kf-age-label {
	display: grid;
	width: 52px;
	height: 52px;
	place-items: center;
	border: 1px solid var(--kf-accent);
	border-radius: 50%;
	color: var(--kf-accent);
	font-size: 15px;
	font-weight: 900;
}

.kf-betting-title h3 {
	margin: 10px 0 0;
	font-size: clamp(1.45rem, 2vw, 2.2rem);
	line-height: 1.12;
}

.kf-betting-tips {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1px;
	border: 1px solid var(--kf-line);
	background: var(--kf-line);
}

.kf-betting-tip {
	display: flex;
	min-height: 100px;
	padding: 16px;
	flex-direction: column;
	justify-content: center;
	gap: 7px;
	background: var(--kf-navy);
}

.kf-betting-match {
	color: var(--kf-muted);
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.04em;
	line-height: 1.25;
	text-transform: uppercase;
}

.kf-betting-pick {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
}

.kf-betting-pick strong {
	color: var(--kf-accent);
	font-family: "Arial Narrow", "DejaVu Sans Condensed", Arial, sans-serif;
	font-size: 21px;
	font-weight: 900;
	line-height: 1;
}

.kf-betting-pick b {
	padding: 5px 8px;
	border: 1px solid var(--kf-line);
	color: var(--kf-white);
	font-size: 12px;
	font-weight: 900;
	line-height: 1;
}

.kf-betting-excerpt {
	margin: 0;
	color: var(--kf-muted);
	font-size: 13px;
	line-height: 1.65;
}

.kf-responsible-note {
	margin: 18px 0 0;
	color: var(--kf-muted);
	font-size: 10px;
	line-height: 1.5;
}

.kf-last-category {
	padding-bottom: 112px;
}

.kf-site-footer {
	border-top: 1px solid var(--kf-line);
	background: var(--kf-navy-soft);
}

.kf-footer-main {
	display: flex;
	min-height: 250px;
	align-items: center;
	justify-content: space-between;
	gap: 50px;
}

.kf-footer-main p {
	margin: 16px 0 0;
	color: var(--kf-muted);
	font-size: 13px;
}

.kf-footer-contact {
	text-align: right;
}

.kf-footer-contact > a {
	font-size: 21px;
	font-weight: 800;
}

.kf-footer-contact div {
	display: flex;
	margin-top: 18px;
	justify-content: flex-end;
	gap: 24px;
	color: var(--kf-accent);
	font-size: 11px;
	font-weight: 900;
}

.kf-footer-bottom {
	display: flex;
	min-height: 62px;
	align-items: center;
	justify-content: space-between;
	border-top: 1px solid var(--kf-line);
	color: var(--kf-muted);
	font-size: 9px;
	font-weight: 800;
	letter-spacing: 0.09em;
	text-transform: uppercase;
}

/*
 * Compact desktop scale.
 * Keeps the editorial hierarchy while preventing the WordPress rendering
 * from feeling oversized on common 1366–1920px screens.
 */
@media (min-width: 761px) {
	.kf-header-main {
		min-height: 102px;
	}

	.kf-wordmark,
	.kf-footer-wordmark {
		width: clamp(120px, 11.5vw, 160px);
	}

	.kf-tagline {
		font-size: 14px;
	}

	.kf-tagline span {
		margin-top: 6px;
		font-size: 10px;
	}

	.kf-desktop-nav {
		min-height: 50px;
		gap: clamp(22px, 3vw, 46px);
		font-size: 12px;
	}

	.kf-home-intro {
		padding: 38px 0 24px;
	}

	.kf-section-label,
	.kf-post-meta {
		font-size: 10px;
	}

	.kf-home-intro h1 {
		margin: 0;
		font-size: clamp(1.1rem, 1.45vw, 1.3rem);
	}

	.kf-lead-story {
		padding: 28px 30px 28px 0;
	}

	.kf-lead-copy {
		padding-top: 22px;
	}

	.kf-lead-copy h2 {
		margin: 12px 0 14px;
		font-size: clamp(1.55rem, 2.25vw, 2.25rem);
	}

	.kf-lead-copy > p:not(.kf-post-meta) {
		font-size: 14px;
	}

	.kf-read-more {
		margin-top: 20px;
	}

	.kf-latest-list {
		padding: 28px 0 28px 30px;
	}

	.kf-latest-heading {
		min-height: 48px;
	}

	.kf-latest-heading h2 {
		font-size: 13px;
	}

	.kf-article-row {
		min-height: 102px;
		padding: 17px 30px 17px 0;
	}

	.kf-article-row h3 {
		font-size: 17px;
	}

	.kf-row-arrow {
		bottom: 17px;
	}

	.kf-category-section {
		padding-top: 72px;
	}

	.kf-section-header {
		padding-bottom: 22px;
		gap: 38px;
	}

	.kf-section-header h2 {
		font-size: clamp(1.9rem, 2.7vw, 2.75rem);
	}

	.kf-section-header > p {
		font-size: 12px;
	}

	.kf-post-card {
		min-height: 270px;
	}

	.kf-card-image {
		height: 185px;
	}

	.kf-card-copy {
		min-height: 185px;
		padding: 23px;
	}

	.kf-post-card h3 {
		font-size: clamp(1.2rem, 1.5vw, 1.6rem);
	}

	.kf-post-card .kf-read-more {
		margin-top: 36px;
	}

	.kf-simple-image {
		height: 235px;
	}

	.kf-simple-copy {
		min-height: 175px;
		padding: 23px;
	}

	.kf-simple-post h3 {
		font-size: clamp(1.3rem, 1.7vw, 1.85rem);
	}

	.kf-fpl-feature {
		min-height: 250px;
		gap: 34px;
	}

	.kf-fpl-image {
		min-height: 275px;
	}

	.kf-fpl-title {
		gap: 22px;
	}

	.kf-fpl-title > span {
		width: 80px;
		min-width: 80px;
		height: 80px;
		font-size: 23px;
	}

	.kf-fpl-title h3 {
		font-size: clamp(1.3rem, 1.7vw, 1.85rem);
	}

	.kf-fpl-choices > span {
		min-height: 70px;
		padding: 15px;
		font-size: 12px;
	}

	.kf-betting-feature,
	.kf-betting-image {
		min-height: 290px;
	}

	.kf-betting-feature {
		gap: 34px;
	}

	.kf-betting-title {
		gap: 22px;
	}

	.kf-betting-title h3 {
		font-size: clamp(1.3rem, 1.7vw, 1.85rem);
	}

	.kf-betting-tip {
		min-height: 88px;
		padding: 14px;
	}

	.kf-betting-pick strong {
		font-size: 19px;
	}

	.kf-last-category {
		padding-bottom: 88px;
	}

	.kf-footer-main {
		min-height: 210px;
	}

	.kf-footer-contact > a {
		font-size: 19px;
	}
}

@media (max-width: 1050px) {
	.kf-page-shell {
		width: min(calc(100% - 40px), 1320px);
	}

	.kf-desktop-nav {
		gap: 24px;
	}

	.kf-desktop-nav a:nth-last-child(2) {
		display: none;
	}

	.kf-lead-layout {
		grid-template-columns: 1.3fr 0.7fr;
	}

	.kf-editorial-overview {
		grid-template-columns: minmax(0, 7fr) minmax(250px, 3fr);
	}

	.kf-analysis-focus {
		padding-right: 28px;
	}

	.kf-editorial-overview .kf-latest-list {
		padding-left: 28px;
	}

	.kf-analysis-grid .kf-card-image {
		height: auto;
		aspect-ratio: 16 / 9;
	}

	.kf-analysis-grid .kf-card-copy {
		min-height: 150px;
		padding: 18px;
	}

	.kf-editorial-overview .kf-article-row {
		min-height: 148px;
	}

	.kf-post-grid {
		grid-template-columns: 1fr 1fr;
	}

	.kf-post-card:nth-child(odd) {
		border-left: 0;
	}

	.kf-post-card:nth-child(-n + 2) {
		border-bottom: 1px solid var(--kf-line);
	}

	.kf-fpl-feature {
		grid-template-columns: 0.75fr 1fr auto;
	}

	.kf-fpl-image,
	.kf-fpl-choices,
	.kf-fpl-excerpt {
		grid-column: 1 / -1;
	}

	.kf-fpl-image {
		min-height: 340px;
	}

	.kf-betting-feature {
		grid-template-columns: 1fr auto;
		gap: 28px;
	}

	.kf-betting-image {
		min-height: 380px;
		grid-column: 1 / -1;
		grid-row: 1;
	}

	.kf-betting-title {
		grid-column: 1;
		grid-row: 2;
	}

	.kf-betting-tips,
	.kf-betting-excerpt {
		grid-column: 1 / -1;
		grid-row: 3;
	}

	.kf-betting-feature > .kf-feature-arrow {
		grid-column: 2;
		grid-row: 2;
	}
}

@media (max-width: 760px) {
	.kf-tagline,
	.kf-desktop-nav {
		display: none;
	}

	.kf-mobile-nav {
		display: block;
		border-top: 1px solid var(--kf-line);
	}

	.kf-mobile-nav summary {
		display: flex;
		height: 48px;
		align-items: center;
		justify-content: space-between;
		cursor: pointer;
		font-size: 11px;
		font-weight: 900;
		list-style: none;
		text-transform: uppercase;
	}

	.kf-mobile-nav summary::-webkit-details-marker {
		display: none;
	}

	.kf-menu-lines,
	.kf-menu-lines::before,
	.kf-menu-lines::after {
		display: block;
		width: 23px;
		height: 2px;
		background: var(--kf-accent);
	}

	.kf-menu-lines {
		position: relative;
	}

	.kf-menu-lines::before,
	.kf-menu-lines::after {
		position: absolute;
		left: 0;
		content: "";
	}

	.kf-menu-lines::before {
		top: -7px;
	}

	.kf-menu-lines::after {
		top: 7px;
	}

	.kf-mobile-nav > div {
		display: grid;
		padding-bottom: 18px;
	}

	.kf-mobile-nav a {
		padding: 13px 0;
		border-top: 1px solid var(--kf-line);
		font-size: 13px;
		font-weight: 800;
	}

	.kf-page-shell {
		width: min(calc(100% - 32px), 1320px);
	}

	.kf-header-main {
		min-height: 82px;
	}

	.kf-wordmark,
	.kf-footer-wordmark {
		width: 132px;
	}

	.kf-home-intro {
		padding: 30px 0 18px;
	}

	.kf-home-intro h1 {
		max-width: none;
		margin: 0;
		font-size: clamp(1rem, 4.5vw, 1.15rem);
		line-height: 1.1;
	}

	.kf-lead-layout,
	.kf-post-grid,
	.kf-fpl-feature,
	.kf-betting-feature {
		display: block;
	}

	.kf-lead-story {
		display: block;
		padding: 18px 0 30px;
		border-right: 0;
	}

	.kf-card-image,
	.kf-simple-image,
	.kf-fpl-image,
	.kf-betting-image {
		width: 100%;
		height: auto;
		min-height: 0;
		aspect-ratio: 16 / 10;
	}

	.kf-lead-image {
		width: 100%;
		height: auto;
		min-height: 0;
		aspect-ratio: auto;
	}

	.kf-lead-image.is-empty {
		aspect-ratio: 16 / 10;
	}

	.kf-lead-copy {
		padding-top: 20px;
	}

	.kf-lead-copy h2 {
		margin: 10px 0 12px;
		font-size: clamp(1.65rem, 7.2vw, 2.15rem);
		line-height: 1.08;
	}

	.kf-lead-copy > p:not(.kf-post-meta) {
		font-size: 14px;
		line-height: 1.55;
	}

	.kf-read-more {
		margin-top: 18px;
	}

	.kf-latest-list {
		padding: 26px 0 4px;
		border-top: 1px solid var(--kf-line);
	}

	.kf-article-row {
		min-height: 92px;
		padding: 15px 32px 15px 0;
	}

	.kf-article-row h3 {
		font-size: 16px;
		line-height: 1.22;
	}

	.kf-row-arrow {
		bottom: 18px;
	}

	.kf-category-section {
		padding-top: 58px;
	}

	.kf-section-header {
		grid-template-columns: 1fr auto;
		gap: 14px;
		padding-bottom: 18px;
	}

	.kf-section-header > p {
		max-width: 470px;
		grid-area: 2 / 1 / auto / -1;
		font-size: 12px;
		line-height: 1.5;
	}

	.kf-section-header h2 {
		font-size: clamp(2rem, 9vw, 2.55rem);
		line-height: 1;
	}

	.kf-section-link {
		font-size: 0;
	}

	.kf-section-link svg {
		width: 26px;
		height: 26px;
	}

	.kf-post-card {
		display: block;
		min-height: 0;
		border-bottom: 1px solid var(--kf-line);
		border-left: 0;
	}

	.kf-card-copy,
	.kf-simple-copy {
		min-height: 0;
		padding: 18px 0 28px;
	}

	.kf-post-card h3,
	.kf-simple-post h3,
	.kf-fpl-title h3,
	.kf-betting-title h3 {
		margin-top: 9px;
		font-size: 19px;
		line-height: 1.18;
	}

	.kf-post-card .kf-read-more {
		margin-top: 18px;
	}

	.kf-simple-posts {
		grid-template-columns: 1fr;
	}

	.kf-simple-copy .kf-read-more {
		padding-top: 18px;
	}

	.kf-fpl-title {
		align-items: flex-start;
		padding-top: 22px;
	}

	.kf-fpl-title > span {
		width: 58px;
		min-width: 58px;
		height: 58px;
		font-size: 17px;
	}

	.kf-fpl-choices {
		margin-top: 22px;
		grid-template-columns: 1fr 1fr;
	}

	.kf-fpl-choices > span {
		min-height: 72px;
		padding: 14px;
		font-size: 12px;
	}

	.kf-fpl-excerpt {
		margin-top: 22px;
	}

	.kf-feature-arrow {
		display: none;
	}

	.kf-betting-title {
		align-items: flex-start;
		padding-top: 22px;
	}

	.kf-betting-tips {
		margin-top: 22px;
		grid-template-columns: 1fr 1fr;
	}

	.kf-betting-tip {
		min-height: 96px;
		padding: 14px;
	}

	.kf-betting-excerpt {
		margin-top: 22px;
	}

	.kf-last-category {
		padding-bottom: 58px;
	}

	.kf-footer-main {
		min-height: 245px;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		gap: 46px;
	}

	.kf-footer-contact {
		text-align: left;
	}

	.kf-footer-contact > a {
		font-size: 17px;
	}

	.kf-footer-contact div {
		flex-wrap: wrap;
		justify-content: flex-start;
	}

	.kf-footer-bottom {
		min-height: 82px;
		flex-direction: column;
		align-items: flex-start;
		justify-content: center;
		gap: 9px;
	}

	.kf-editorial-overview {
		display: block;
		padding-top: 30px;
	}

	.kf-analysis-focus {
		padding-right: 0;
		border-right: 0;
	}

	.kf-analysis-heading {
		min-height: 72px;
	}

	.kf-analysis-heading h1 {
		font-size: clamp(2rem, 9vw, 2.5rem);
	}

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

	.kf-analysis-grid .kf-post-card {
		display: flex;
	}

	.kf-analysis-grid .kf-card-image {
		height: auto;
		aspect-ratio: 16 / 9;
	}

	.kf-analysis-grid .kf-card-copy {
		min-height: 145px;
		padding: 14px;
	}

	.kf-analysis-grid .kf-post-card h3 {
		margin-top: 8px;
		font-size: 15px;
		line-height: 1.18;
	}

	.kf-analysis-grid .kf-post-card .kf-read-more {
		margin-top: auto;
		padding-top: 12px;
		font-size: 10px;
	}

	.kf-editorial-overview .kf-latest-list {
		padding: 30px 0 4px;
		border-top: 1px solid var(--kf-line);
	}

	.kf-editorial-overview .kf-latest-heading {
		min-height: 62px;
		border-top: 0;
	}

	.kf-editorial-overview .kf-article-row {
		min-height: 92px;
	}
}

@media (max-width: 380px) {
	.kf-page-shell {
		width: min(calc(100% - 24px), 1320px);
	}

	.kf-home-intro h1 {
		font-size: 1rem;
	}

	.kf-analysis-grid .kf-card-copy {
		min-height: 140px;
		padding: 11px;
	}

	.kf-analysis-grid .kf-post-card h3 {
		font-size: 14px;
	}

	.kf-fpl-choices,
	.kf-betting-tips {
		grid-template-columns: 1fr;
	}
}

@media (prefers-reduced-motion: reduce) {
	.kf-home-page *,
	.kf-home-page *::before,
	.kf-home-page *::after {
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}
