@charset "UTF-8";

/* =========================================================
   THEFAD — GLOBAL HEADER
   Wariant: logo-driven refined
   Plik: header-refined.css
   ========================================================= */

/* ------------------------------
   Tokens
------------------------------ */

:root {
	--thefad-header-bg: #FCFCFA;
	--thefad-header-surface: #FFFFFF;
	--thefad-header-text: #111111;
	--thefad-header-muted: #6B7280;
	--thefad-header-border: rgba(17, 17, 17, 0.10);
	--thefad-header-border-strong: rgba(17, 17, 17, 0.14);
	--thefad-header-overlay: rgba(0, 0, 0, 0.32);
	--thefad-header-brand: #F26422;
	--thefad-header-hover: rgba(17, 17, 17, 0.05);
	--thefad-header-shadow-soft: 0 18px 44px rgba(0, 0, 0, 0.10);
	--thefad-header-shadow-panel: 0 24px 70px rgba(0, 0, 0, 0.12);
	--thefad-header-radius-sm: 14px;
	--thefad-header-radius-md: 18px;
	--thefad-header-radius-lg: 24px;
	--thefad-header-transition: 0.22s ease;
	--thefad-header-max: 1680px;
}

/* ------------------------------
   Base shell
------------------------------ */

.thefad-site-body {
	background: #E9E9E9;
	color: var(--thefad-header-text);
}

.thefad-site-shell {
	position: relative;
	min-height: 100vh;
}

.thefad-header,
.thefad-header *,
.thefad-search-overlay,
.thefad-search-overlay *,
.thefad-mobile-drawer,
.thefad-mobile-drawer * {
	box-sizing: border-box;
}

.thefad-header a,
.thefad-search-overlay a,
.thefad-mobile-drawer a {
	text-decoration: none;
}

.thefad-header button,
.thefad-search-overlay button,
.thefad-mobile-drawer button {
	font: inherit;
	background: none;
	border: 0;
	cursor: pointer;
}

/* ------------------------------
   Header
------------------------------ */

.thefad-header {
	position: relative;
	z-index: 50;
	background: var(--thefad-header-bg);
	border-bottom: 1px solid var(--thefad-header-border);
}

.thefad-header__inner {
	width: 100%;
	max-width: var(--thefad-header-max);
	margin: 0 auto;
}

.thefad-header__row {
	display: none;
	align-items: center;
	width: 100%;
}

.thefad-header__row--desktop {
	display: flex;
	gap: 40px;
	padding: 20px 32px;
}

.thefad-header__brand {
	flex: 0 0 auto;
	min-width: 0;
}

.thefad-header__logo {
	display: inline-flex;
	align-items: center;
	line-height: 1;
}

.thefad-logo {
	display: inline-flex;
	align-items: baseline;
	line-height: 1;
	letter-spacing: -0.065em;
	white-space: nowrap;
	color: var(--thefad-header-text);
	transition: opacity var(--thefad-header-transition);
}

.thefad-logo:hover,
.thefad-logo:focus {
	text-decoration: none;
	opacity: 0.92;
}

.thefad-logo__wordmark,
.thefad-logo__dotpl {
	font-family: "Noto Serif", Georgia, serif;
	font-weight: 700;
}

.thefad-logo__wordmark {
	color: var(--thefad-header-text);
}

.thefad-logo__dotpl {
	color: var(--thefad-header-brand);
}

.thefad-header__row--desktop .thefad-logo {
	font-size: 50px;
}

.thefad-header__nav {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	justify-content: center;
}

.thefad-nav {
	display: flex;
	align-items: center;
	list-style: none;
	margin: 0;
	padding: 0;
}

.thefad-nav > li {
	margin: 0;
	padding: 0;
	list-style: none;
}

.thefad-nav > li > a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	position: relative;
	color: var(--thefad-header-text);
	font-family: "Noto Sans", Arial, Helvetica, sans-serif;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	white-space: nowrap;
	padding: 8px 0;
	transition: color var(--thefad-header-transition), opacity var(--thefad-header-transition);
}

.thefad-nav > li > a:hover,
.thefad-nav > li > a:focus {
	color: var(--thefad-header-brand);
	text-decoration: none;
}

.thefad-nav--primary {
	gap: 28px;
}

.thefad-nav--primary > li.current-menu-item > a,
.thefad-nav--primary > li.current-menu-ancestor > a,
.thefad-nav--primary > li.current_page_item > a {
	color: var(--thefad-header-text);
}

.thefad-header__actions {
	flex: 0 0 auto;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	margin-left: auto;
}

.thefad-header__icon-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	color: var(--thefad-header-text);
	transition: background-color var(--thefad-header-transition), color var(--thefad-header-transition), opacity var(--thefad-header-transition);
}

.thefad-header__icon-button:hover,
.thefad-header__icon-button:focus {
	background: var(--thefad-header-hover);
	text-decoration: none;
}

.thefad-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 20px;
	height: 20px;
}

.thefad-icon svg {
	display: block;
	width: 100%;
	height: 100%;
	stroke: currentColor;
	fill: none;
	stroke-width: 2.1;
	stroke-linecap: round;
	stroke-linejoin: round;
}

/* ------------------------------
   Tablet
------------------------------ */

.thefad-header__row--tablet-top,
.thefad-header__row--tablet-nav {
	display: none;
}

@media (max-width: 1199px) and (min-width: 768px) {
	.thefad-header__row--desktop {
		display: none;
	}

	.thefad-header__row--tablet-top {
		display: flex;
		gap: 20px;
		padding: 20px 24px;
	}

	.thefad-header__row--tablet-nav {
		display: flex;
		padding: 14px 24px;
		border-top: 1px solid var(--thefad-header-border);
	}

	.thefad-header__row--tablet-top .thefad-logo {
		font-size: 50px;
		transform-origin: left center;
		transform: scale(0.94);
	}

	.thefad-header__nav--tablet {
		justify-content: flex-start;
		width: 100%;
		overflow-x: auto;
		overflow-y: hidden;
		-webkit-overflow-scrolling: touch;
		scrollbar-width: none;
	}

	.thefad-header__nav--tablet::-webkit-scrollbar {
		display: none;
	}

	.thefad-nav--tablet {
		gap: 28px;
		flex-wrap: nowrap;
		min-width: max-content;
	}
}

@media (max-width: 991px) and (min-width: 768px) {
	.thefad-header__row--tablet-top {
		padding-left: 24px;
		padding-right: 24px;
	}

	.thefad-header__row--tablet-nav {
		padding-left: 24px;
		padding-right: 24px;
	}

	.thefad-header__row--tablet-top .thefad-logo {
		font-size: 46px;
	}
}

/* ------------------------------
   Mobile
------------------------------ */

.thefad-header__row--mobile {
	display: none;
}

@media (max-width: 767px) {
	.thefad-header__row--desktop,
	.thefad-header__row--tablet-top,
	.thefad-header__row--tablet-nav {
		display: none;
	}

	.thefad-header__row--mobile {
		display: flex;
		justify-content: space-between;
		gap: 16px;
		padding: 16px 16px;
	}

	.thefad-header__logo--mobile {
		max-width: 100%;
	}

	.thefad-logo--mobile {
		font-size: 34px;
	}

	.thefad-header__actions--mobile {
		gap: 4px;
	}

	.thefad-header__icon-button {
		width: 40px;
		height: 40px;
	}

	.thefad-icon--menu {
		width: 22px;
		height: 22px;
	}
}

/* ------------------------------
   Search overlay
------------------------------ */

.thefad-search-overlay[hidden],
.thefad-mobile-drawer[hidden] {
	display: none !important;
}

.thefad-search-overlay {
	position: fixed;
	inset: 0;
	z-index: 120;
}

.thefad-search-overlay__backdrop {
	position: absolute;
	inset: 0;
	background: var(--thefad-header-overlay);
}

.thefad-search-overlay__panel {
	position: relative;
	width: 100%;
	max-width: 640px;
	margin: 10vh auto 0;
	background: var(--thefad-header-surface);
	border: 1px solid var(--thefad-header-border);
	border-radius: var(--thefad-header-radius-lg);
	box-shadow: var(--thefad-header-shadow-panel);
	padding: 0;
	overflow: hidden;
}

.thefad-search-overlay__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 22px 24px 18px;
	border-bottom: 1px solid var(--thefad-header-border);
}

.thefad-search-overlay__title {
	margin: 0;
	color: var(--thefad-header-text);
	font-family: "Noto Serif", Georgia, serif;
	font-size: 28px;
	font-weight: 700;
	line-height: 1.08;
	letter-spacing: -0.03em;
}

.thefad-search-overlay__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	border-radius: 999px;
	color: var(--thefad-header-text);
	transition: background-color var(--thefad-header-transition), color var(--thefad-header-transition);
}

.thefad-search-overlay__close:hover,
.thefad-search-overlay__close:focus {
	background: var(--thefad-header-hover);
	text-decoration: none;
}

.thefad-search-overlay__close span {
	display: block;
	font-size: 28px;
	line-height: 1;
	font-weight: 400;
	transform: translateY(-1px);
}

.thefad-search-overlay__body {
	padding: 24px;
}

.thefad-search-overlay form.searchform {
	display: flex;
	align-items: stretch;
	gap: 12px;
	overflow: visible;
}

.thefad-search-overlay form.searchform input#s,
.thefad-search-overlay form.searchform input[type="search"],
.thefad-search-overlay form.searchform input[type="text"] {
	flex: 1 1 auto;
	float: none;
	width: auto;
	max-width: none;
	height: 54px;
	margin: 0;
	padding: 0 18px;
	border: 1px solid var(--thefad-header-border-strong);
	border-radius: 999px;
	background: #fff;
	color: var(--thefad-header-text);
	font-family: "Noto Sans", Arial, Helvetica, sans-serif;
	font-size: 16px;
	line-height: 1.2;
	box-shadow: none;
}

.thefad-search-overlay form.searchform input#s:focus,
.thefad-search-overlay form.searchform input[type="search"]:focus,
.thefad-search-overlay form.searchform input[type="text"]:focus {
	outline: none;
	border-color: rgba(242, 100, 34, 0.55);
	box-shadow: 0 0 0 3px rgba(242, 100, 34, 0.10);
}

.thefad-search-overlay form.searchform input[type="submit"] {
	flex: 0 0 auto;
	float: none;
	width: auto;
	min-width: 124px;
	height: 54px;
	margin: 0;
	padding: 0 22px;
	border: 1px solid transparent;
	border-radius: 999px;
	background: var(--thefad-header-text);
	color: #fff;
	font-family: "Noto Sans", Arial, Helvetica, sans-serif;
	font-size: 12px;
	font-weight: 700;
	line-height: 1;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	background-image: none;
	transition: background-color var(--thefad-header-transition), opacity var(--thefad-header-transition);
}

.thefad-search-overlay form.searchform input[type="submit"]:hover,
.thefad-search-overlay form.searchform input[type="submit"]:focus {
	background: var(--thefad-header-brand);
}

@media (max-width: 767px) {
	.thefad-search-overlay__panel {
		max-width: calc(100% - 24px);
		margin-top: 72px;
		border-radius: 22px;
	}

	.thefad-search-overlay__header {
		padding: 18px 18px 16px;
	}

	.thefad-search-overlay__title {
		font-size: 24px;
	}

	.thefad-search-overlay__body {
		padding: 18px;
	}

	.thefad-search-overlay form.searchform {
		flex-direction: column;
		gap: 10px;
	}

	.thefad-search-overlay form.searchform input[type="submit"] {
		width: 100%;
		min-width: 0;
	}
}

/* ------------------------------
   Mobile drawer
------------------------------ */

.thefad-mobile-drawer {
	position: fixed;
	inset: 0;
	z-index: 130;
}

.thefad-mobile-drawer__backdrop {
	position: absolute;
	inset: 0;
	background: var(--thefad-header-overlay);
}

.thefad-mobile-drawer__panel {
	position: absolute;
	top: 0;
	right: 0;
	display: flex;
	flex-direction: column;
	width: 90%;
	max-width: 360px;
	height: 100%;
	background: var(--thefad-header-bg);
	border-left: 1px solid var(--thefad-header-border);
	box-shadow: var(--thefad-header-shadow-soft);
	overflow: hidden;
}

.thefad-mobile-drawer__header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 20px 20px;
	border-bottom: 1px solid var(--thefad-header-border);
}

.thefad-mobile-drawer__brand {
	min-width: 0;
}

.thefad-mobile-drawer__close {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 auto;
	width: 40px;
	height: 40px;
	border: 1px solid var(--thefad-header-border);
	border-radius: 999px;
	color: var(--thefad-header-text);
	background: transparent;
	transition: background-color var(--thefad-header-transition), border-color var(--thefad-header-transition);
}

.thefad-mobile-drawer__close:hover,
.thefad-mobile-drawer__close:focus {
	background: var(--thefad-header-hover);
	text-decoration: none;
}

.thefad-mobile-drawer__close span {
	display: block;
	font-size: 26px;
	line-height: 1;
	font-weight: 400;
	transform: translateY(-1px);
}

.thefad-mobile-drawer__nav {
	flex: 1 1 auto;
	padding: 20px 16px 24px;
	overflow-y: auto;
	-webkit-overflow-scrolling: touch;
}

.thefad-nav--drawer {
	display: block;
}

.thefad-nav--drawer > li {
	display: block;
	margin: 0 0 4px;
}

.thefad-nav--drawer > li:last-child {
	margin-bottom: 0;
}

.thefad-nav--drawer > li > a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	min-height: 58px;
	padding: 14px 16px;
	border-radius: 18px;
	color: var(--thefad-header-text);
	font-family: "Noto Sans", Arial, Helvetica, sans-serif;
	font-size: 18px;
	font-weight: 500;
	line-height: 1.3;
	letter-spacing: 0;
	text-transform: none;
	background: transparent;
	transition: background-color var(--thefad-header-transition), color var(--thefad-header-transition);
}

.thefad-nav--drawer > li > a:hover,
.thefad-nav--drawer > li > a:focus {
	background: var(--thefad-header-hover);
	color: var(--thefad-header-text);
	text-decoration: none;
}

.thefad-nav--drawer > li.current-menu-item > a,
.thefad-nav--drawer > li.current-menu-ancestor > a,
.thefad-nav--drawer > li.current_page_item > a {
	background: rgba(17, 17, 17, 0.03);
}

.thefad-nav--drawer > li > a:after {
	content: "";
	display: inline-block;
	flex: 0 0 auto;
	width: 8px;
	height: 8px;
	margin-left: 12px;
	border-top: 1.5px solid rgba(17, 17, 17, 0.45);
	border-right: 1.5px solid rgba(17, 17, 17, 0.45);
	transform: rotate(45deg);
}

/* ------------------------------
   Body states for JS
------------------------------ */

body.thefad-search-is-open,
body.thefad-drawer-is-open {
	overflow: hidden;
}

/* ------------------------------
   Header + top ad relationship
------------------------------ */

#ad-top-slot {
	position: relative;
	z-index: 1;
	background: transparent;
}

#ad-top-slot .pageWidth {
	max-width: var(--thefad-header-max);
}

/* ------------------------------
   Large desktop refinement
------------------------------ */

@media (min-width: 1400px) {
	.thefad-header__row--desktop {
		gap: 48px;
		padding-top: 22px;
		padding-bottom: 22px;
		padding-left: 40px;
		padding-right: 40px;
	}

	.thefad-header__row--desktop .thefad-logo {
		font-size: 56px;
	}

	.thefad-nav--primary {
		gap: 36px;
	}

	.thefad-nav--primary > li > a {
		font-size: 15px;
	}
}

@media (min-width: 1680px) {
	.thefad-header__row--desktop .thefad-logo {
		font-size: 60px;
	}
}

/* ------------------------------
   Reduced motion
------------------------------ */

@media (prefers-reduced-motion: reduce) {
	.thefad-header__icon-button,
	.thefad-logo,
	.thefad-nav > li > a,
	.thefad-search-overlay__close,
	.thefad-search-overlay form.searchform input[type="submit"],
	.thefad-mobile-drawer__close,
	.thefad-nav--drawer > li > a {
		transition: none;
	}
}