/**
 * Themes Practices — Buana EDC Press inspired modern journal home.
 * Structure/feel: Barlow, black/white surfaces, full-bleed hero, stats, bands.
 * Brand accents: terracotta #b8543d · teal #4d8186 · gold #c99331
 */

:root {
	--tp-black: #121212;
	--tp-ink: #1a1a1a;
	--tp-muted: #5c5c5c;
	--tp-white: #ffffff;
	--tp-soft: #f6f5f2;
	--tp-line: #ebe7e0;
	--tp-accent: #b8543d;
	--tp-teal: #4d8186;
	--tp-gold: #c99331;
	--tp-font: "Barlow", system-ui, sans-serif;
	--tp-space: clamp(1rem, 2.2vw, 1.5rem);
	/* Match Default theme .pkp_structure_content widths (@screen-*-container) */
	--tp-ojs-pad: 0.714rem;
	--tp-ojs-tablet: 728px;
	--tp-ojs-desktop: 952px;
	--tp-ojs-lg: 1160px;
	--tp-max: 1160px;
	--tp-sidebar-width: 17.5rem;
	--tp-radius-btn: 15px;
	--tp-radius: 4px;
	--tp-ease: cubic-bezier(0.22, 1, 0.36, 1);
	--tp-shadow: 0 20px 50px rgba(18, 18, 18, 0.1);
	--tp-hero-image: linear-gradient(135deg, #f4efe4, #e7f1f0 55%, #f7e9d8);
}

body.tp_body,
body.tp_body .pkp_structure_page {
	font-family: var(--tp-font);
	color: var(--tp-ink);
	background: var(--tp-white);
	-webkit-font-smoothing: antialiased;
}

body.tp_body .pkp_structure_main { font-family: var(--tp-font); }
body.tp_body a { color: var(--tp-accent); }
body.tp_body a:hover { color: var(--tp-teal); }

/* Sticky header — wireframe:
   Row 1: Search + Login/Register (right-aligned)
   Row 2: Logo (left) + Navigasi (right)
   Resets Default theme absolute positioning that otherwise breaks the layout. */
body.tp_body #headerNavigationContainer.tp_header,
body.tp_body .pkp_structure_head.tp_header {
	position: relative !important;
	height: auto !important;
	min-height: 0 !important;
	background: #fff !important;
	border-bottom: 1px solid var(--tp-line) !important;
	box-shadow: none !important;
	overflow: visible !important;
	padding: 0 !important;
}

body.tp_body .tp_header_shell {
	display: flex !important;
	flex-direction: column !important;
	width: 100% !important;
	position: relative !important;
	z-index: 20;
}

/* Kill Default absolute/floated header pieces inside our shell.
   Top-level menu <li> stay position:relative so nested dropdowns anchor to the trigger. */
body.tp_body .tp_header_shell .pkp_site_name_wrapper,
body.tp_body .tp_header_shell .pkp_site_name,
body.tp_body .tp_header_shell .pkp_site_nav_menu,
body.tp_body .tp_header_shell .pkp_navigation_user_wrapper,
body.tp_body .tp_header_shell #navigationUserWrapper,
body.tp_body .tp_header_shell .pkp_navigation_primary_row,
body.tp_body .tp_header_shell .pkp_navigation_primary_wrapper,
body.tp_body .tp_header_shell .pkp_navigation_user,
body.tp_body .tp_header_utility_inner > * {
	position: static !important;
	float: none !important;
	top: auto !important;
	left: auto !important;
	right: auto !important;
	bottom: auto !important;
	transform: none !important;
	width: auto !important;
	height: auto !important;
	max-width: none !important;
	margin: 0 !important;
	padding: 0 !important;
	border: none !important;
	background: transparent !important;
	overflow: visible !important;
	white-space: normal !important;
	text-align: left !important;
}

body.tp_body .tp_header_shell .pkp_nav_list {
	display: flex !important;
	align-items: center;
	flex-wrap: nowrap;
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

body.tp_body .tp_header_shell .pkp_nav_list > li {
	position: relative !important;
	float: none !important;
	display: inline-flex !important;
	align-items: center;
	margin: 0 !important;
	padding: 0 !important;
	border: none !important;
	background: transparent !important;
	overflow: visible !important;
}

/* Row 1 — utility (Search + Login/Register) glued to the right */
body.tp_body .tp_header_utility {
	width: 100%;
	border-bottom: 1px solid var(--tp-line);
	background: #fff;
	position: relative !important;
	z-index: 30;
	/* Shared outer gutter with hero — keeps Search + logo rails flush */
	padding-left: max(var(--tp-space), calc((100% - var(--tp-ojs-lg)) / 2));
	padding-right: max(var(--tp-space), calc((100% - var(--tp-ojs-lg)) / 2));
	box-sizing: border-box;
}

body.tp_body .tp_header_utility_inner {
	width: 100% !important;
	max-width: var(--tp-ojs-lg) !important;
	margin: 0;
	padding: 0.5rem 0;
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	justify-content: flex-end !important;
	gap: 0.6rem;
	box-sizing: border-box !important;
}

body.tp_body .tp_util_btn,
body.tp_body .tp_header_utility .tp_search_link {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	gap: 0.4rem;
	min-height: 2.2rem;
	padding: 0.35rem 0.95rem !important;
	border: 1px solid var(--tp-line) !important;
	border-radius: var(--tp-radius-btn) !important;
	background: var(--tp-soft) !important;
	color: var(--tp-ink) !important;
	font-size: 0.84rem !important;
	font-weight: 650 !important;
	text-decoration: none !important;
	white-space: nowrap !important;
}

body.tp_body .tp_header_utility .tp_search_link:hover {
	border-color: var(--tp-gold) !important;
	color: var(--tp-black) !important;
}

body.tp_body .tp_util_user,
body.tp_body #navigationUserWrapper {
	display: flex !important;
	align-items: center !important;
	position: relative !important;
	left: auto !important;
	top: auto !important;
	transform: none !important;
	margin: 0 !important;
	padding: 0 !important;
	z-index: 60 !important;
	overflow: visible !important;
}

body.tp_body .tp_util_user .pkp_navigation_user {
	display: flex !important;
	flex-direction: row !important;
	align-items: center !important;
	gap: 0.45rem;
	margin: 0 !important;
	padding: 0 !important;
	border: none !important;
	overflow: visible !important;
}

body.tp_body .tp_util_user .pkp_navigation_user > li {
	position: relative !important;
	overflow: visible !important;
}

body.tp_body .tp_util_user .pkp_navigation_user > li > a {
	display: inline-flex !important;
	align-items: center;
	gap: 0.35rem;
	min-height: 2.2rem;
	padding: 0.35rem 0.95rem !important;
	border: 1px solid var(--tp-line) !important;
	border-radius: var(--tp-radius-btn) !important;
	background: #fff !important;
	color: var(--tp-ink) !important;
	font-size: 0.84rem !important;
	font-weight: 650 !important;
	white-space: nowrap !important;
	line-height: 1.2 !important;
}

body.tp_body .tp_util_user .pkp_navigation_user > li:hover > a,
body.tp_body .tp_util_user .pkp_navigation_user > li:focus-within > a,
body.tp_body .tp_util_user .pkp_navigation_user > li > a:hover,
body.tp_body .tp_util_user .pkp_navigation_user > li > a:focus {
	border-color: var(--tp-gold) !important;
	color: var(--tp-black) !important;
	background: #fff !important;
	text-decoration: none !important;
}

body.tp_body .tp_util_user .task_count {
	display: inline-flex !important;
	align-items: center;
	justify-content: center;
	min-width: 1.15rem;
	height: 1.15rem;
	padding: 0 0.3rem;
	margin-left: 0.25rem;
	border-radius: 999px;
	background: var(--tp-gold) !important;
	color: #121212 !important;
	font-size: 0.68rem !important;
	font-weight: 700 !important;
	line-height: 1 !important;
	position: static !important;
	top: auto !important;
}

/* User account dropdown — anchored under the username pill */
body.tp_body .tp_util_user .pkp_navigation_user > li > ul {
	display: block !important;
	visibility: hidden;
	opacity: 0;
	pointer-events: none;
	position: absolute !important;
	top: calc(100% + 0.45rem) !important;
	right: 0 !important;
	left: auto !important;
	bottom: auto !important;
	min-width: 13.5rem;
	width: max-content !important;
	max-width: min(18rem, calc(100vw - 2rem)) !important;
	margin: 0 !important;
	padding: 0.4rem !important;
	list-style: none !important;
	background: #fff !important;
	border: 1px solid var(--tp-line) !important;
	border-radius: 10px !important;
	box-shadow: 0 14px 36px rgba(18, 18, 18, 0.12) !important;
	z-index: 80 !important;
	transform: translateY(-0.25rem);
	transition: opacity 0.18s var(--tp-ease), transform 0.18s var(--tp-ease), visibility 0.18s;
}

/* Hover bridge so the gap does not drop the menu */
body.tp_body .tp_util_user .pkp_navigation_user > li > ul::before {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	top: -0.55rem;
	height: 0.55rem;
}

body.tp_body .tp_util_user .pkp_navigation_user > li > ul::after {
	content: "";
	position: absolute;
	top: -6px;
	right: 1.15rem;
	width: 10px;
	height: 10px;
	background: #fff;
	border-left: 1px solid var(--tp-line);
	border-top: 1px solid var(--tp-line);
	transform: rotate(45deg);
}

body.tp_body .tp_util_user .pkp_navigation_user > li:hover > ul,
body.tp_body .tp_util_user .pkp_navigation_user > li:focus-within > ul {
	visibility: visible;
	opacity: 1;
	pointer-events: auto;
	transform: translateY(0);
}

body.tp_body .tp_util_user .pkp_navigation_user > li > ul > li {
	display: block !important;
	position: static !important;
	margin: 0 !important;
	padding: 0 !important;
	width: 100% !important;
}

body.tp_body .tp_util_user .pkp_navigation_user > li > ul > li > a {
	display: flex !important;
	align-items: center;
	justify-content: space-between;
	gap: 0.75rem;
	width: 100% !important;
	min-height: 2.35rem;
	padding: 0.55rem 0.75rem !important;
	border: none !important;
	border-radius: 7px !important;
	background: transparent !important;
	color: var(--tp-ink) !important;
	font-size: 0.88rem !important;
	font-weight: 550 !important;
	line-height: 1.25 !important;
	text-decoration: none !important;
	white-space: nowrap !important;
}

body.tp_body .tp_util_user .pkp_navigation_user > li > ul > li > a:hover,
body.tp_body .tp_util_user .pkp_navigation_user > li > ul > li > a:focus {
	background: var(--tp-soft) !important;
	color: var(--tp-black) !important;
	text-decoration: none !important;
	outline: none !important;
}

body.tp_body .tp_util_user .pkp_navigation_user > li > ul > li > a .task_count {
	display: inline-flex !important;
	margin-left: 0.35rem;
}

body.tp_body .tp_util_user .pkp_navigation_user > li > ul > li:last-child > a {
	color: var(--tp-accent) !important;
}

body.tp_body .tp_util_user .pkp_navigation_user > li > ul > li:last-child > a:hover,
body.tp_body .tp_util_user .pkp_navigation_user > li > ul > li:last-child > a:focus {
	background: rgba(184, 84, 61, 0.08) !important;
	color: var(--tp-accent) !important;
}

/* Row 2 — Logo left + Navigasi right */
body.tp_body .tp_header_main {
	width: 100%;
	background: #fff;
	position: relative !important;
	z-index: 10;
	padding-left: max(var(--tp-space), calc((100% - var(--tp-ojs-lg)) / 2));
	padding-right: max(var(--tp-space), calc((100% - var(--tp-ojs-lg)) / 2));
	box-sizing: border-box;
}

body.tp_body .tp_header_main_inner {
	/* Fill the parent gutter rail — same content edge as `.tp_hero_inner` */
	width: 100% !important;
	max-width: var(--tp-ojs-lg) !important;
	margin: 0;
	padding: 0.85rem 0;
	display: flex !important;
	flex-direction: row !important;
	flex-wrap: nowrap !important;
	align-items: center !important;
	justify-content: space-between !important;
	gap: 1rem;
	box-sizing: border-box !important;
}

/* Footer keeps Default content-column rails */
@media (min-width: 768px) {
	body.tp_body .tp_footer_inner {
		width: var(--tp-ojs-tablet) !important;
		max-width: var(--tp-ojs-tablet) !important;
		padding-left: 0 !important;
		padding-right: 0 !important;
	}
}

@media (min-width: 992px) {
	body.tp_body .tp_footer_inner {
		width: var(--tp-ojs-desktop) !important;
		max-width: var(--tp-ojs-desktop) !important;
	}
}

@media (min-width: 1200px) {
	body.tp_body .tp_footer_inner {
		width: var(--tp-ojs-lg) !important;
		max-width: var(--tp-ojs-lg) !important;
	}
}

body.tp_body .tp_brand_wrap,
body.tp_body .tp_header_shell .pkp_site_name_wrapper.tp_brand_wrap {
	display: flex !important;
	align-items: center !important;
	flex: 1 1 auto !important;
	min-width: 0 !important;
	max-width: min(34rem, 52%) !important;
	width: auto !important;
	margin: 0 !important;
	padding: 0 !important;
	left: auto !important;
	right: auto !important;
	gap: 0 !important;
}

body.tp_body .tp_brand,
body.tp_body .pkp_site_name.tp_brand {
	display: flex !important;
	align-items: center !important;
	flex: 0 1 auto !important;
	min-width: 0 !important;
	max-width: none !important;
	width: auto !important;
	margin: 0 !important;
	padding: 0 !important;
	left: auto !important;
	right: auto !important;
	gap: 0 !important;
}

body.tp_body .tp_brand .tp_brand_link,
body.tp_body .tp_brand a.is_img {
	display: flex !important;
	align-items: center;
	gap: 0.85rem;
	text-decoration: none !important;
	color: var(--tp-black) !important;
	min-width: 0;
	margin: 0 !important;
	padding: 0 !important;
}

body.tp_body .tp_brand_logo,
body.tp_body .tp_brand .is_img img {
	display: block !important;
	width: 3.4rem !important;
	height: 3.4rem !important;
	max-height: none !important;
	max-width: none !important;
	object-fit: contain !important;
	background: transparent !important;
	border-radius: 0 !important;
	box-shadow: none !important;
	margin: 0 !important;
	padding: 0 !important;
}

body.tp_body .tp_brand_text {
	font-family: var(--tp-font);
	font-weight: 750;
	font-size: clamp(0.95rem, 1.45vw, 1.12rem);
	letter-spacing: -0.02em;
	line-height: 1.22;
	color: var(--tp-black);
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	overflow: hidden;
	max-width: none;
}

body.tp_body .tp_nav {
	flex: 0 1 auto;
	display: flex !important;
	align-items: center;
	justify-content: flex-end;
	min-width: 0;
	margin-left: auto !important;
	position: static !important;
	width: auto !important;
	top: auto !important;
	left: auto !important;
}

body.tp_body .tp_nav .pkp_navigation_primary_row,
body.tp_body .tp_nav .pkp_navigation_primary_wrapper {
	display: flex !important;
	align-items: center;
	justify-content: flex-end;
	width: auto !important;
}

body.tp_body .tp_nav .pkp_navigation_primary {
	display: flex !important;
	align-items: center;
	justify-content: flex-end;
	flex-wrap: nowrap !important;
	gap: 1.1rem !important;
}

body.tp_body .tp_nav .pkp_navigation_primary > li > a {
	display: inline-flex !important;
	align-items: center;
	position: relative !important;
	padding: 0.25rem 0 !important;
	font-size: 0.92rem !important;
	font-weight: 500 !important;
	letter-spacing: 0.01em;
	text-transform: none !important;
	text-decoration: none !important;
	color: var(--tp-ink) !important;
	white-space: nowrap !important;
	background: transparent !important;
	border: none !important;
	border-bottom: none !important;
	border-radius: 0 !important;
	box-shadow: none !important;
}

/* Gold underline only — suppress Default black border-bottom hover */
body.tp_body .tp_nav .pkp_navigation_primary > li > a::after {
	content: "";
	position: absolute;
	left: 0;
	bottom: -0.35rem;
	width: 100%;
	height: 1px;
	background: var(--tp-gold);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s var(--tp-ease);
}

body.tp_body .tp_nav .pkp_navigation_primary > li > a:hover,
body.tp_body .tp_nav .pkp_navigation_primary > li > a:focus {
	color: var(--tp-black) !important;
	background: transparent !important;
	text-decoration: none !important;
	border: none !important;
	border-bottom: none !important;
	box-shadow: none !important;
}

body.tp_body .tp_nav .pkp_navigation_primary > li > a:hover::after,
body.tp_body .tp_nav .pkp_navigation_primary > li > a:focus::after {
	transform: scaleX(1);
}

body.tp_body .tp_nav_toggle {
	border: 1px solid var(--tp-line);
	background: #fff;
	border-radius: var(--tp-radius-btn);
	padding: 0.45rem 0.8rem;
	font-weight: 600;
	cursor: pointer;
}

@media (min-width: 992px) {
	body.tp_body .tp_nav_toggle { display: none !important; }
	body.tp_body .tp_nav { display: flex !important; }
}

@media (max-width: 991px) {
	body.tp_body .tp_brand_text { max-width: 10.5rem; }
	body.tp_body .tp_header_main { position: relative; }
	body.tp_body:not(.tp_nav_is_open) .tp_nav { display: none !important; }
	body.tp_body.tp_nav_is_open .tp_nav {
		display: block !important;
		position: absolute !important;
		left: 0;
		right: 0;
		top: 100%;
		background: #fff !important;
		border-bottom: 1px solid var(--tp-line);
		padding: 0.85rem var(--tp-space) 1rem !important;
		z-index: 50;
		box-shadow: var(--tp-shadow);
	}
	body.tp_body.tp_nav_is_open .tp_nav .pkp_navigation_primary {
		flex-direction: column !important;
		align-items: stretch !important;
		gap: 0.55rem !important;
	}
}
/* Light split hero — text left + functional glass panel right
   Tone inspired by modern frontend split layouts (bright, glass, motion). */
.tp_hero {
	position: relative;
	isolation: isolate;
	min-height: clamp(28rem, 72vh, 40rem);
	display: flex;
	align-items: center;
	overflow: hidden;
	color: var(--tp-ink);
	background:
		linear-gradient(165deg, #fffefb 0%, #f7f3ea 46%, #eef5f4 100%);
	/* Same outer gutter as header rails */
	padding-left: max(var(--tp-space), calc((100% - var(--tp-ojs-lg)) / 2));
	padding-right: max(var(--tp-space), calc((100% - var(--tp-ojs-lg)) / 2));
	box-sizing: border-box;
}

.tp_hero_stage {
	position: absolute;
	inset: 0;
	z-index: 0;
	overflow: hidden;
}

.tp_hero_media {
	position: absolute;
	inset: auto -8% -12% 42%;
	opacity: 0.18;
	background: var(--tp-hero-image) center / cover no-repeat;
	filter: saturate(0.85) contrast(1.05);
	animation: tpKen 24s ease-in-out infinite alternate;
	mask-image: linear-gradient(110deg, transparent 0%, #000 28%, #000 78%, transparent 100%);
	-webkit-mask-image: linear-gradient(110deg, transparent 0%, #000 28%, #000 78%, transparent 100%);
	will-change: transform;
}

.tp_hero_veil {
	position: absolute;
	inset: 0;
	background:
		radial-gradient(70% 55% at 12% 20%, oklch(0.86 0.08 80 / 0.55), transparent 60%),
		radial-gradient(55% 50% at 88% 78%, oklch(0.84 0.05 200 / 0.45), transparent 62%),
		radial-gradient(40% 40% at 70% 18%, oklch(0.9 0.06 40 / 0.35), transparent 70%);
}

.tp_hero_orb {
	position: absolute;
	border-radius: 50%;
	filter: blur(2px);
	pointer-events: none;
}
.tp_hero_orb--a {
	width: clamp(10rem, 22vw, 18rem);
	height: clamp(10rem, 22vw, 18rem);
	right: 18%;
	top: 8%;
	background: radial-gradient(circle, oklch(0.82 0.12 80 / 0.45), transparent 70%);
	animation: tpFloat 9s ease-in-out infinite alternate;
}
.tp_hero_orb--b {
	width: clamp(8rem, 18vw, 14rem);
	height: clamp(8rem, 18vw, 14rem);
	left: 6%;
	bottom: 6%;
	background: radial-gradient(circle, oklch(0.78 0.07 200 / 0.35), transparent 70%);
	animation: tpFloat 11s ease-in-out infinite alternate-reverse;
}

.tp_hero_grid {
	position: absolute;
	inset: 0;
	opacity: 0.28;
	background-image:
		linear-gradient(rgba(18, 18, 18, 0.04) 1px, transparent 1px),
		linear-gradient(90deg, rgba(18, 18, 18, 0.04) 1px, transparent 1px);
	background-size: 48px 48px;
	mask-image: radial-gradient(80% 70% at 50% 40%, #000 20%, transparent 85%);
	-webkit-mask-image: radial-gradient(80% 70% at 50% 40%, #000 20%, transparent 85%);
	pointer-events: none;
}

@keyframes tpKen {
	from { transform: scale(1) translate3d(0, 0, 0); }
	to { transform: scale(1.07) translate3d(-1%, -0.6%, 0); }
}

@keyframes tpFloat {
	from { transform: translate3d(0, 0, 0); }
	to { transform: translate3d(0.6rem, -1rem, 0); }
}

@keyframes tpRise {
	from { opacity: 0; transform: translate3d(0, 1.1rem, 0); }
	to { opacity: 1; transform: none; }
}

@keyframes tpPanelIn {
	from { opacity: 0; transform: translate3d(1.25rem, 0.5rem, 0) scale(0.98); }
	to { opacity: 1; transform: none; }
}

.tp_hero_inner {
	position: relative;
	z-index: 1;
	width: 100%;
	max-width: var(--tp-ojs-lg);
	margin: 0;
	padding: clamp(2.75rem, 8vh, 4.75rem) 0;
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(16rem, 0.88fr);
	gap: clamp(1.5rem, 4vw, 2.75rem);
	align-items: center;
	box-sizing: border-box;
}

.tp_hero_copy { min-width: 0; max-width: 36rem; }

.tp_hero_anim {
	animation: tpRise 0.8s var(--tp-ease) both;
	animation-delay: var(--tp-d, 0s);
}

.tp_hero_panel.tp_hero_anim {
	animation-name: tpPanelIn;
}

.tp_hero_press {
	margin: 0 0 0.9rem;
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--tp-teal);
}

.tp_hero_brand {
	margin: 0 0 0.85rem;
	max-width: 16ch;
	font-size: clamp(2.2rem, 4.8vw, 3.55rem);
	font-weight: 800;
	line-height: 0.98;
	letter-spacing: -0.035em;
	color: var(--tp-black);
	text-wrap: balance;
}

.tp_hero_headline {
	position: relative;
	margin: 0 0 0.9rem;
	padding-left: 0.9rem;
	max-width: 28ch;
	font-size: clamp(1.12rem, 2vw, 1.38rem);
	font-weight: 600;
	line-height: 1.35;
	color: var(--tp-accent);
}

.tp_hero_headline::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0.15em;
	bottom: 0.15em;
	width: 3px;
	border-radius: 99px;
	background: linear-gradient(180deg, var(--tp-gold), var(--tp-accent));
}

.tp_hero_lead {
	margin: 0 0 1.6rem;
	font-size: 1.02rem;
	line-height: 1.65;
	color: var(--tp-muted);
	/* ~3 soft wrap lines for the JIPPE focus paragraph */
	max-width: min(100%, 34.5rem);
}

.tp_hero_actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
}

/* Functional glass panel */
.tp_hero_panel {
	justify-self: stretch;
	min-width: 0;
}

.tp_glass {
	position: relative;
	padding: 3.2rem 2.15rem 3.2rem;
	border-radius: 18px;
	background: rgba(255, 255, 255, 0.55);
	border: 1px solid rgba(255, 255, 255, 0.7);
	box-shadow:
		0 24px 50px rgba(28, 28, 28, 0.1),
		inset 0 1px 0 rgba(255, 255, 255, 0.85);
	backdrop-filter: blur(18px) saturate(1.25);
	-webkit-backdrop-filter: blur(18px) saturate(1.25);
	overflow: hidden;
}

.tp_glass::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(145deg, rgba(255,255,255,0.55), transparent 42%, rgba(201,147,49,0.08));
	pointer-events: none;
}

.tp_glass_head,
.tp_glass_issue,
.tp_glass_facts,
.tp_glass_links {
	position: relative;
	z-index: 1;
}

.tp_glass_head {
	display: flex;
	align-items: center;
	gap: 0.55rem;
	margin-bottom: 0.9rem;
}

.tp_glass_dot {
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 50%;
	background: var(--tp-gold);
	box-shadow: 0 0 0 4px rgba(201, 147, 49, 0.18);
}

.tp_glass_kicker {
	margin: 0;
	font-size: 0.72rem;
	font-weight: 750;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--tp-muted);
}

.tp_glass_issue {
	display: grid;
	gap: 0.3rem;
	padding: 0.95rem 1rem;
	margin-bottom: 0.85rem;
	border-radius: 12px;
	text-decoration: none !important;
	background: rgba(255, 255, 255, 0.62);
	border: 1px solid rgba(18, 18, 18, 0.06);
	transition: transform 0.2s var(--tp-ease), border-color 0.2s var(--tp-ease), box-shadow 0.2s var(--tp-ease);
}
.tp_glass_issue:hover {
	transform: translateY(-2px);
	border-color: color-mix(in oklab, var(--tp-gold) 45%, white);
	box-shadow: 0 12px 28px rgba(18, 18, 18, 0.08);
}
.tp_glass_issue--static { cursor: default; }
.tp_glass_issue--static:hover { transform: none; box-shadow: none; }

.tp_glass_issue_label {
	font-size: 0.7rem;
	font-weight: 750;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--tp-teal);
}
.tp_glass_issue_title {
	font-size: 0.98rem;
	font-weight: 700;
	line-height: 1.35;
	color: var(--tp-black);
}
.tp_glass_issue_meta {
	font-size: 0.84rem;
	font-weight: 650;
	color: var(--tp-black);
}

.tp_glass_facts {
	list-style: none;
	margin: 0 0 0.95rem;
	padding: 0;
	display: grid;
	gap: 0.55rem;
}
.tp_glass_facts li {
	display: grid;
	gap: 0.1rem;
	padding: 0.55rem 0.7rem;
	border-radius: 10px;
	background: rgba(246, 245, 242, 0.72);
	border: 1px solid rgba(18, 18, 18, 0.04);
}
.tp_glass_facts strong {
	font-size: 0.82rem;
	color: var(--tp-black);
}
.tp_glass_facts span {
	font-size: 0.8rem;
	color: var(--tp-muted);
	line-height: 1.35;
}

.tp_glass_links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
}
.tp_glass_links a {
	display: inline-flex;
	align-items: center;
	padding: 0.4rem 0.7rem;
	border-radius: 999px;
	font-size: 0.78rem;
	font-weight: 700;
	text-decoration: none !important;
	color: var(--tp-ink) !important;
	background: rgba(255, 255, 255, 0.7);
	border: 1px solid rgba(18, 18, 18, 0.08);
	transition: background 0.2s var(--tp-ease), border-color 0.2s var(--tp-ease), color 0.2s var(--tp-ease);
}
.tp_glass_links a:hover {
	background: #fff;
	border-color: var(--tp-gold);
	color: var(--tp-black) !important;
}

.tp_btn--ink {
	border: 1px solid rgba(18, 18, 18, 0.18);
	color: #121212 !important;
	background: rgba(255, 255, 255, 0.55);
}
.tp_btn--ink:hover {
	background: #fff;
	border-color: var(--tp-gold);
	color: #121212 !important;
	transform: translateY(-2px);
}

body.tp_body .tp_hero_actions .tp_btn,
body.tp_body .tp_hero_actions .tp_btn:hover,
body.tp_body .tp_hero_actions .tp_btn:focus {
	color: #121212 !important;
}

@media (max-width: 900px) {
	.tp_hero_inner {
		grid-template-columns: 1fr;
		align-items: start;
	}
	.tp_hero_media {
		inset: auto -20% 0 20%;
		opacity: 0.12;
	}
	.tp_hero_brand { max-width: 14ch; }
}

@media (prefers-reduced-motion: reduce) {
	.tp_hero_media,
	.tp_hero_orb,
	.tp_hero_anim {
		animation: none !important;
	}
	.tp_reveal, .tp_hero_media { opacity: 1 !important; transform: none !important; }
}

.tp_eyebrow {
	display: inline-flex;
	align-items: center;
	margin: 0 0 1rem;
	padding: 0.35rem 0.9rem;
	border-radius: 999px;
	border: 1px solid rgba(255,255,255,0.35);
	background: rgba(201, 147, 49, 0.18);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: #fff;
}

.tp_eyebrow--ink {
	background: color-mix(in oklab, var(--tp-gold) 18%, white);
	border-color: color-mix(in oklab, var(--tp-gold) 35%, white);
	color: var(--tp-black);
}

.tp_btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.85rem;
	padding: 0.7rem 1.2rem;
	border-radius: var(--tp-radius-btn);
	font-family: var(--tp-font);
	font-size: 0.92rem;
	font-weight: 700;
	letter-spacing: 0.01em;
	text-decoration: none !important;
	transition: transform 0.2s var(--tp-ease), background-color 0.2s var(--tp-ease), color 0.2s var(--tp-ease);
}

.tp_btn--solid {
	background: var(--tp-gold);
	color: var(--tp-black) !important;
}
.tp_btn--solid:hover { background: #d7a83a; transform: translateY(-2px); color: var(--tp-black) !important; }

.tp_btn--ghost {
	border: 1px solid rgba(255,255,255,0.55);
	color: #fff !important;
	background: transparent;
}
.tp_btn--ghost:hover { background: rgba(255,255,255,0.1); color: #fff !important; }

.tp_btn--soft {
	background: var(--tp-soft);
	color: var(--tp-black) !important;
	border: 1px solid var(--tp-line);
	margin-top: 1.25rem;
}
.tp_btn--soft:hover { border-color: var(--tp-accent); color: var(--tp-accent) !important; }

/* Indexing swiper (press-site parity; logo hover like UIR JSP gallery) */
.tp_indexing {
	background: var(--tp-soft);
	border-bottom: 1px solid var(--tp-line);
	padding: clamp(1.75rem, 3vw, 2.5rem) max(var(--tp-space), calc((100% - var(--tp-ojs-lg)) / 2));
	box-sizing: border-box;
}
.tp_indexing_inner {
	/* Match hero/header content rail */
	width: 100%;
	max-width: var(--tp-ojs-lg);
	margin: 0;
	padding: 0;
}
.tp_indexing_swiper_wrap {
	position: relative;
	width: 100%;
}
.tp_indexing_swiper {
	overflow: hidden;
	padding: 0.35rem 0.15rem;
}
.tp_indexing_card {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 72px;
	padding: 8px 12px;
	background: var(--tp-white);
	border: 1px solid var(--tp-line);
	border-radius: 15px;
	box-shadow: 0 8px 20px rgba(18, 18, 18, 0.05);
	overflow: visible;
	text-decoration: none;
	color: inherit;
	transition: box-shadow 0.25s var(--tp-ease), border-color 0.25s var(--tp-ease);
}
a.tp_indexing_card:hover {
	box-shadow: 0 14px 28px rgba(18, 18, 18, 0.1);
	border-color: #d9b5ab;
}
a.tp_indexing_card:focus-visible {
	outline: 2px solid var(--tp-accent);
	outline-offset: 2px;
}
.tp_indexing_card img {
	max-width: 100%;
	max-height: 52px;
	width: auto;
	height: auto;
	object-fit: contain;
	object-position: center;
	display: block;
	border-radius: 15px;
	filter: grayscale(100%);
	opacity: 0.75;
	transform: scale(1);
	transition: filter 0.25s var(--tp-ease), opacity 0.25s var(--tp-ease), transform 0.25s var(--tp-ease);
}
.tp_indexing_card:hover img,
.tp_indexing_card:focus-visible img {
	filter: grayscale(0%);
	opacity: 1;
	transform: scale(1.1);
}
.tp_indexing_pagination.swiper-pagination,
.tp_indexing_swiper_wrap .tp_indexing_pagination {
	position: static !important;
	bottom: auto !important;
	top: auto !important;
	left: auto !important;
	right: auto !important;
	width: 100% !important;
	height: auto !important;
	margin-top: 1.75rem !important;
	transform: none !important;
	display: flex !important;
	justify-content: center;
	align-items: center;
	gap: 2px;
	z-index: 2;
}
.tp_indexing_pagination .swiper-pagination-bullet {
	background: #d8c4bc;
	opacity: 1;
	width: 8px;
	height: 8px;
	margin: 0 4px !important;
	flex-shrink: 0;
}
.tp_indexing_pagination .swiper-pagination-bullet-active {
	background: var(--tp-accent);
}

/* Home shell — same outer gutter as hero/header so columns align to hero rail */
body.tp_body.pkp_page_index.pkp_op_index .pkp_structure_content.tp_home_shell {
	display: block !important;
	max-width: none !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 2rem max(var(--tp-space), calc((100% - var(--tp-ojs-lg)) / 2)) 3rem !important;
	background: var(--tp-soft);
	box-sizing: border-box !important;
}
body.tp_body.pkp_page_index.pkp_op_index .tp_home_columns {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	width: 100%;
	max-width: var(--tp-ojs-lg);
	margin: 0;
	padding: 0;
	gap: 1.5rem;
	box-sizing: border-box;
}
@media (min-width: 992px) {
	body.tp_body.pkp_page_index.pkp_op_index .tp_home_columns.has_sidebar {
		grid-template-columns: minmax(0, 1fr) var(--tp-sidebar-width);
		gap: 1.75rem;
	}
}
body.tp_body.pkp_page_index.pkp_op_index .tp_home_columns .pkp_structure_main,
body.tp_body.pkp_page_index.pkp_op_index .tp_home_columns .pkp_structure_sidebar {
	float: none !important;
	width: auto !important;
	max-width: none !important;
	padding-left: 0 !important;
	padding-right: 0 !important;
}

/* Interior pages: match homepage sidebar width (Default OJS uses 300px) */
@media (min-width: 992px) {
	body.tp_body .pkp_structure_content.has_sidebar > .pkp_structure_sidebar {
		width: var(--tp-sidebar-width) !important;
		max-width: var(--tp-sidebar-width);
		box-sizing: border-box;
	}
	body.tp_body .pkp_structure_content.has_sidebar > .pkp_structure_main {
		width: calc(var(--tp-ojs-desktop) - var(--tp-sidebar-width)) !important;
		box-sizing: border-box;
	}
}
@media (min-width: 1200px) {
	body.tp_body .pkp_structure_content.has_sidebar > .pkp_structure_main {
		width: calc(var(--tp-ojs-lg) - var(--tp-sidebar-width)) !important;
	}
}

/* Kill Default theme full-height 1px column rails (.pkp_structure_main::before/::after) */
body.tp_body .pkp_structure_main::before,
body.tp_body .pkp_structure_main::after {
	content: none !important;
	display: none !important;
	width: 0 !important;
	background: none !important;
}

.tp_home { padding: 0; margin: 0; }

.tp_section_head { margin-bottom: 1.1rem; }
.tp_section_head--inline {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.55rem 0.75rem;
	margin-bottom: 1.15rem;
}
.tp_section_head--inline .tp_eyebrow {
	margin: 0;
	flex: 0 0 auto;
}
.tp_section_head--inline .tp_section_title {
	margin: 0;
	font-size: clamp(1.15rem, 2vw, 1.45rem);
	line-height: 1.2;
	flex: 0 0 auto;
}
.tp_section_head--inline .tp_section_lede {
	margin: 0;
	flex: 1 1 12rem;
	min-width: 0;
	color: var(--tp-muted);
	font-size: 0.95rem;
	line-height: 1.35;
}
@media (min-width: 900px) {
	.tp_section_head--inline {
		flex-wrap: nowrap;
		gap: 0.85rem;
	}
	.tp_section_head--inline .tp_section_lede {
		flex: 1 1 auto;
		white-space: nowrap;
		overflow: hidden;
		text-overflow: ellipsis;
	}
}
.tp_section_title {
	margin: 0.35rem 0 0;
	font-size: clamp(1.65rem, 3vw, 2.2rem);
	font-weight: 800;
	letter-spacing: -0.025em;
	color: var(--tp-black);
	border: none;
	display: block;
	width: auto;
	padding: 0;
	text-transform: none;
}
.tp_section_lede {
	margin: 0.45rem 0 0;
	color: var(--tp-muted);
	font-size: 0.98rem;
}

.tp_reveal {
	opacity: 0;
	transform: translateY(1rem);
	transition: opacity 0.7s var(--tp-ease), transform 0.7s var(--tp-ease);
}
.tp_reveal.is_visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
	.tp_reveal, .tp_hero_media { opacity: 1 !important; transform: none !important; animation: none !important; }
}

body.tp_body .tp_home .additional_content {
	margin: 0 0 1.5rem;
	padding: 0;
	background: transparent;
	border: none;
}

/* Current issue — athletic editorial magazine spread (no white card) */
body.tp_body .tp_home .current_issue.tp_issue,
body.tp_body .tp_home .current_issue {
	--tp-issue-ink: #0f2f33;
	--tp-issue-wash: oklch(96.5% 0.018 195);
	--tp-issue-accent: var(--tp-accent);
	position: relative;
	isolation: isolate;
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	padding: 1rem 1.2rem 0.85rem;
	margin: 0.35rem 0 0;
	overflow: visible;
}
body.tp_body .tp_home .current_issue::before {
	content: "";
	position: absolute;
	/* Match Journal Identity (.jippe-facts) left/right edges — no horizontal bleed */
	inset: 0 0 auto;
	height: min(22rem, 58vw);
	z-index: -1;
	pointer-events: none;
	border-radius: 1.35rem;
	background:
		radial-gradient(ellipse 70% 80% at 8% 18%, oklch(78% 0.07 195 / 0.45), transparent 58%),
		radial-gradient(ellipse 55% 70% at 92% 8%, oklch(82% 0.08 45 / 0.38), transparent 55%),
		linear-gradient(165deg, oklch(97% 0.012 195) 0%, transparent 72%);
}
body.tp_body .tp_home .current_issue .tp_issue__mast {
	display: grid;
	gap: 0.45rem;
	margin: 0 0 1.35rem;
	padding: 0;
	max-width: 42rem;
}
body.tp_body .tp_home .current_issue .tp_issue__mast .tp_eyebrow {
	margin: 0;
	justify-self: start;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--tp-teal, #4d8186);
}
body.tp_body .tp_home .current_issue .tp_issue__title {
	margin: 0;
	font-size: clamp(2rem, 4.6vw, 2.85rem);
	font-weight: 800;
	letter-spacing: -0.038em;
	line-height: 0.98;
	color: var(--tp-black);
}
body.tp_body .tp_home .current_issue .tp_issue__ident {
	margin: 0.15rem 0 0;
	font-size: clamp(0.95rem, 1.6vw, 1.08rem);
	font-weight: 550;
	line-height: 1.4;
	color: var(--tp-teal);
	letter-spacing: -0.01em;
}
body.tp_body .tp_home .current_issue .obj_issue_toc {
	background: transparent;
}
body.tp_body .tp_home .current_issue .obj_issue_toc .heading {
	display: grid;
	grid-template-columns: 1fr;
	grid-template-areas:
		"cover"
		"desc"
		"pub";
	gap: 1.25rem 1.75rem;
	align-items: start;
	margin: 0 0 1.75rem;
	padding: 1.15rem 1.1rem 1.25rem;
	border-radius: 1.25rem;
	border: 1px solid oklch(78% 0.03 195 / 0.35);
	background:
		linear-gradient(145deg, oklch(99% 0.008 95 / 0.72), oklch(96% 0.02 195 / 0.55)),
		repeating-linear-gradient(
			-18deg,
			transparent,
			transparent 11px,
			oklch(70% 0.02 195 / 0.045) 11px,
			oklch(70% 0.02 195 / 0.045) 12px
		);
	box-shadow: 0 18px 40px oklch(30% 0.04 195 / 0.08);
	backdrop-filter: blur(6px);
}
@media (min-width: 720px) {
	body.tp_body .tp_home .current_issue .obj_issue_toc .heading {
		grid-template-columns: minmax(9.5rem, 12.75rem) minmax(0, 1fr);
		grid-template-areas:
			"cover desc"
			"cover pub";
		padding: 1.35rem 1.4rem 1.45rem;
		gap: 0.85rem 1.85rem;
	}
}
body.tp_body .tp_home .current_issue .obj_issue_toc .cover {
	grid-area: cover;
	float: none !important;
	position: relative;
	display: block;
	width: 100% !important;
	max-width: 12.75rem;
	margin: 0 !important;
	z-index: 1;
	transition: transform 0.45s var(--tp-ease);
}
body.tp_body .tp_home .current_issue .obj_issue_toc .cover::before {
	content: "";
	position: absolute;
	inset: 0.65rem -0.55rem -0.55rem 0.55rem;
	z-index: -1;
	border-radius: 0.85rem;
	background: linear-gradient(160deg, var(--tp-gold), oklch(62% 0.12 45));
	opacity: 0.92;
	transform: rotate(2.5deg);
}
body.tp_body .tp_home .current_issue .obj_issue_toc .cover:hover {
	transform: translateY(-4px) rotate(-1deg);
}
body.tp_body .tp_home .current_issue .obj_issue_toc .cover img {
	display: block;
	width: 100%;
	height: auto;
	aspect-ratio: 3 / 4;
	object-fit: cover;
	border-radius: 0.85rem;
	border: 1px solid oklch(40% 0.02 195 / 0.12);
	box-shadow: 0 22px 36px oklch(25% 0.04 195 / 0.18);
	background: #e8f0ef;
}
body.tp_body .tp_home .current_issue .obj_issue_toc .description {
	grid-area: desc;
	margin: 0;
	color: var(--tp-ink);
	font-size: 1.02rem;
	line-height: 1.68;
	max-width: 47rem;
	text-align: justify;
	text-justify: inter-word;
	hyphens: auto;
}
body.tp_body .tp_home .current_issue .obj_issue_toc .description p {
	margin: 0;
	text-align: justify;
	text-justify: inter-word;
}
body.tp_body .tp_home .current_issue .obj_issue_toc .description strong {
	color: var(--tp-black);
	font-weight: 750;
}
body.tp_body .tp_home .current_issue .obj_issue_toc .published {
	grid-area: pub;
	margin: 0;
	display: inline-flex;
	align-items: baseline;
	gap: 0.55rem;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--tp-ink);
	font-size: 0.9rem;
	font-weight: 650;
	letter-spacing: 0.01em;
}
body.tp_body .tp_home .current_issue .obj_issue_toc .published .label {
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	font-size: 0.68rem;
	color: var(--tp-accent);
}
body.tp_body .tp_home .current_issue .obj_issue_toc .published .value {
	font-variant-numeric: tabular-nums;
	color: var(--tp-issue-ink);
}
body.tp_body .tp_home .current_issue .obj_issue_toc .sections {
	margin: 0;
	padding: 0;
}
body.tp_body .tp_home .current_issue .obj_issue_toc .section,
body.tp_body .tp_home .current_issue .obj_issue_toc .galleys {
	margin: 0 !important;
	padding: 0 !important;
	position: relative;
}
body.tp_body .tp_home .current_issue .obj_issue_toc .section > h2,
body.tp_body .tp_home .current_issue .obj_issue_toc .section > h3 {
	display: inline-flex !important;
	align-items: center !important;
	gap: 0.55rem !important;
	margin: 0 0 1rem !important;
	padding: 0.35rem 0.75rem !important;
	font-size: 0.7rem !important;
	font-weight: 800 !important;
	letter-spacing: 0.16em !important;
	text-transform: uppercase !important;
	color: #fff !important;
	border: 0 !important;
	border-left: 0 !important;
	left: 0 !important;
	border-radius: 999px !important;
	background: linear-gradient(135deg, var(--tp-teal), oklch(42% 0.06 195)) !important;
	box-shadow: 0 8px 18px oklch(40% 0.05 195 / 0.22);
}
body.tp_body .tp_home .current_issue .obj_issue_toc .articles {
	margin: 0 !important;
	padding: 0 !important;
	list-style: none !important;
	counter-reset: tp-issue-art;
}
body.tp_body .tp_home .current_issue .obj_issue_toc .articles > li {
	list-style: none !important;
	margin: 0 !important;
	padding: 0 !important;
}
body.tp_body .tp_home .obj_article_summary {
	position: relative;
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	column-gap: 0.95rem;
	border: 0;
	border-top: 0;
	padding: 1.05rem 0.85rem 1.1rem 0.55rem;
	margin: 0 0 0.55rem;
	border-radius: 0.95rem;
	background: transparent;
	transition: background 0.25s var(--tp-ease), transform 0.25s var(--tp-ease), box-shadow 0.25s var(--tp-ease);
}
body.tp_body .tp_home .obj_article_summary::before {
	counter-increment: tp-issue-art;
	content: counter(tp-issue-art, decimal-leading-zero);
	grid-row: 1 / span 6;
	align-self: start;
	margin-top: 0.15rem;
	font-size: 1.35rem;
	font-weight: 800;
	letter-spacing: -0.04em;
	line-height: 1;
	color: var(--tp-teal);
	font-variant-numeric: tabular-nums;
}
body.tp_body .tp_home .obj_article_summary:hover {
	transform: translateX(4px);
	background: oklch(97% 0.015 195 / 0.85);
	box-shadow: inset 0 0 0 1px oklch(70% 0.04 195 / 0.28);
}
body.tp_body .tp_home .obj_article_summary .title {
	grid-column: 2;
	margin: 0 0 0.35rem;
}
body.tp_body .tp_home .obj_article_summary .title a {
	font-size: clamp(1.02rem, 1.8vw, 1.18rem);
	font-weight: 700;
	color: var(--tp-black);
	letter-spacing: -0.02em;
	line-height: 1.3;
	text-decoration: none;
}
body.tp_body .tp_home .obj_article_summary .title a:hover { color: var(--tp-accent); }
body.tp_body .tp_home .obj_article_summary .meta,
body.tp_body .tp_home .obj_article_summary .tp_article_stats,
body.tp_body .tp_home .obj_article_summary .galleys_links,
body.tp_body .tp_home .obj_article_summary .doiInSummary {
	grid-column: 2;
}
body.tp_body .tp_home .obj_article_summary .meta {
	margin: 0 0 0.45rem;
	color: var(--tp-muted);
	font-size: 0.88rem;
}

/* Align DOI / author / Abstract — shared left rail + absolute icons */
body.tp_body .tp_home .obj_article_summary {
	--tp-meta-rail: 1.25rem;
	--tp-meta-gap: 0.55rem;
	--tp-meta-indent: calc(var(--tp-meta-rail) + var(--tp-meta-gap));
}
body.tp_body {
	--tp-meta-rail: 1.25rem;
	--tp-meta-gap: 0.55rem;
	--tp-meta-indent: calc(var(--tp-meta-rail) + var(--tp-meta-gap));
}
body.tp_body .tp_home .obj_article_summary .doiInSummary,
body.tp_body .doiInSummary {
	position: relative !important;
	display: block !important;
	box-sizing: border-box !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0.35rem 0 0.4rem !important;
	padding: 0 0 0 var(--tp-meta-indent) !important;
	min-height: var(--tp-meta-rail) !important;
	font-size: 0.82rem !important;
	line-height: 1.35 !important;
	color: var(--tp-muted);
	grid-template-columns: unset !important;
	column-gap: unset !important;
	gap: 0 !important;
}
body.tp_body .doiInSummary > strong {
	position: absolute !important;
	left: 0 !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	display: block !important;
	width: var(--tp-meta-rail) !important;
	height: var(--tp-meta-rail) !important;
	margin: 0 !important;
	padding: 0 !important;
	border-radius: 50% !important;
	background: transparent url("../assets/doi-icon.png") center / contain no-repeat !important;
	box-shadow: none !important;
	font-size: 0 !important;
	line-height: 0 !important;
	color: transparent !important;
	overflow: hidden !important;
	text-indent: -9999px !important;
}
body.tp_body .doiInSummary > strong::before {
	content: none !important;
	display: none !important;
}
body.tp_body .doiInSummary > a {
	display: inline !important;
	min-width: 0 !important;
	margin: 0 !important;
	padding: 0 !important;
	color: var(--tp-teal);
	text-decoration: none;
	word-break: break-all;
}
body.tp_body .doiInSummary > a:hover {
	color: var(--tp-accent);
	text-decoration: underline;
}
body.tp_body .tp_home .obj_article_summary .authors {
	position: relative !important;
	box-sizing: border-box !important;
	padding-left: var(--tp-meta-indent) !important;
	min-height: var(--tp-meta-rail) !important;
	line-height: 1.4 !important;
	margin: 0 !important;
}
body.tp_body .tp_home .obj_article_summary .authors img.author-flag:first-of-type {
	position: absolute !important;
	left: 0 !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	width: var(--tp-meta-rail) !important;
	height: auto !important;
	max-width: var(--tp-meta-rail) !important;
	max-height: var(--tp-meta-rail) !important;
	margin: 0 !important;
	object-fit: contain !important;
}
body.tp_body .tp_home .obj_article_summary .authors img.author-flag:not(:first-of-type) {
	width: 0.9rem !important;
	height: auto !important;
	max-height: 0.9rem !important;
	margin: 0 0.2rem 0 0 !important;
	vertical-align: -0.1em !important;
	position: static !important;
	transform: none !important;
}

/* Article usage stats — Abstract left, downloads right (no card background) */
body.tp_body .tp_article_stats {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	gap: 0.45rem 1.25rem;
	margin: 0.1rem 0 0.65rem;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--tp-ink);
	font-size: 0.84rem;
	line-height: 1.35;
}
body.tp_body .tp_article_stats__left,
body.tp_body .tp_article_stats__right {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.45rem 0.95rem;
	min-width: 0;
}
body.tp_body .tp_article_stats__right {
	justify-content: flex-end;
	margin-left: auto;
}
body.tp_body .tp_article_stats__item {
	display: inline-flex;
	align-items: center;
	gap: 0.4rem;
	min-width: 0;
}
body.tp_body .tp_home .obj_article_summary .tp_article_stats__item--views {
	position: relative !important;
	display: block !important;
	box-sizing: border-box !important;
	width: 100% !important;
	padding: 0 0 0 var(--tp-meta-indent) !important;
	min-height: var(--tp-meta-rail) !important;
	grid-template-columns: unset !important;
	column-gap: unset !important;
	gap: 0 !important;
	align-items: unset !important;
}
body.tp_body .tp_home .obj_article_summary .tp_article_stats__item--views .tp_article_stats__icon {
	position: absolute !important;
	left: 0 !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	width: var(--tp-meta-rail) !important;
	height: var(--tp-meta-rail) !important;
	margin: 0 !important;
	padding: 0 !important;
	justify-self: unset !important;
	flex: unset !important;
}
body.tp_body .tp_home .obj_article_summary .tp_article_stats__item--views .tp_article_stats__text {
	display: inline !important;
	margin: 0 !important;
	padding: 0 !important;
}
body.tp_body .tp_article_stats__icon {
	flex: 0 0 auto;
	color: var(--tp-teal);
}
body.tp_body .tp_article_stats__item--dl .tp_article_stats__icon {
	color: var(--tp-accent);
}
body.tp_body .tp_article_stats__text {
	color: var(--tp-muted);
	font-weight: 550;
	letter-spacing: 0.01em;
}
body.tp_body .tp_article_stats__n {
	color: var(--tp-black);
	font-weight: 800;
	font-variant-numeric: tabular-nums;
	margin-left: 0.2rem;
}
body.tp_body .tp_home .obj_article_summary .galleys_links {
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
	margin: 0.15rem 0 0;
	padding: 0;
	list-style: none;
}
body.tp_body .tp_home .obj_article_summary .galleys_links li {
	margin: 0;
	padding: 0;
	list-style: none;
}
body.tp_body .tp_home .obj_article_summary .obj_galley_link {
	display: inline-flex;
	align-items: center;
	min-height: 1rem;
	padding: 0.01rem 1.8rem !important;
	border-radius: 999px !important;
	font-size: 0.72rem !important;
	font-weight: 800 !important;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	box-shadow: none !important;
}
body.tp_body .tp_home .current_issue .tp_issue__archive,
body.tp_body .tp_home .current_issue > .tp_btn {
	margin-top: 1.25rem;
}

/* Kill Default issue TOC horizontal divider beside section titles (Article, etc.) */
body.tp_body .obj_issue_toc .section::before,
body.tp_body .obj_issue_toc .galleys::before {
	content: none !important;
	display: none !important;
	border: 0 !important;
}
body.tp_body .obj_issue_toc .section > h2,
body.tp_body .obj_issue_toc .section > h3 {
	left: 0 !important;
	padding-left: 0 !important;
	background: transparent !important;
}

body.tp_body .pkp_structure_sidebar .pkp_block {
	background: transparent;
	border: 0;
	border-radius: 0;
	box-shadow: none;
	padding: 0 0 1.15rem;
	margin-bottom: 0.85rem;
}
body.tp_body .pkp_structure_sidebar .pkp_block .title {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	box-sizing: border-box;
	min-height: 2.65rem;
	margin: 0 0 0.7rem;
	padding: 0.7rem 0.95rem;
	border: 1px solid #b8543d;
	border-radius: 15px;
	background:
		linear-gradient(135deg, rgba(255,255,255,0.12), transparent 46%),
		#b8543d;
	color: #fff;
	font-weight: 750;
	letter-spacing: 0.01em;
	text-transform: none;
	font-size: 0.9rem;
	text-align: center;
	cursor: default;
	pointer-events: none;
	user-select: none;
	box-shadow: 0 10px 22px rgba(184, 84, 61, 0.18);
}
body.tp_body .pkp_structure_sidebar .pkp_block .title::before,
body.tp_body .pkp_structure_sidebar .pkp_block .title::after {
	content: none;
	display: none;
}

body.tp_body .pkp_structure_sidebar .pkp_block .content ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 0.4rem;
}
body.tp_body .pkp_structure_sidebar .pkp_block .content li {
	margin: 0;
	padding: 0;
	list-style: none;
}
body.tp_body .pkp_structure_sidebar .pkp_block ul a,
body.tp_body .pkp_structure_sidebar .pkp_block .content a,
body.tp_body .pkp_structure_sidebar .pkp_block li a {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0.72rem;
	width: 100%;
	box-sizing: border-box;
	margin: 0;
	padding: 0.68rem 0.9rem;
	border-radius: 15px;
	background: linear-gradient(180deg, #fffefb 0%, #f7f4ef 100%);
	color: var(--tp-ink);
	font-weight: 650;
	font-size: 0.88rem;
	letter-spacing: -0.01em;
	line-height: 1.3;
	text-align: left;
	border: 1px solid rgba(18, 18, 18, 0.08);
	box-shadow: 0 1px 0 rgba(255, 255, 255, 0.75) inset;
	overflow: hidden;
	transition: background 0.22s var(--tp-ease), border-color 0.22s var(--tp-ease), color 0.22s var(--tp-ease), transform 0.22s var(--tp-ease), box-shadow 0.22s var(--tp-ease);
}
body.tp_body .pkp_structure_sidebar .pkp_block ul a::before,
body.tp_body .pkp_structure_sidebar .pkp_block .content a::before,
body.tp_body .pkp_structure_sidebar .pkp_block li a::before {
	content: "\f105";
	font-family: FontAwesome;
	font-weight: normal;
	font-style: normal;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.85rem;
	height: 1.85rem;
	flex: 0 0 1.85rem;
	border-radius: 50%;
	background: rgba(184, 84, 61, 0.1);
	color: #b8543d;
	font-size: 0.86rem;
	line-height: 1;
	transition: background-color 0.22s var(--tp-ease), color 0.22s var(--tp-ease), transform 0.22s var(--tp-ease), box-shadow 0.22s var(--tp-ease);
}
body.tp_body .pkp_structure_sidebar .pkp_block ul a::after,
body.tp_body .pkp_structure_sidebar .pkp_block .content a::after,
body.tp_body .pkp_structure_sidebar .pkp_block li a::after {
	content: none;
	display: none;
}
body.tp_body .pkp_structure_sidebar .pkp_block ul a:hover,
body.tp_body .pkp_structure_sidebar .pkp_block .content a:hover,
body.tp_body .pkp_structure_sidebar .pkp_block li a:hover {
	background: linear-gradient(135deg, rgba(184, 84, 61, 0.12), rgba(184, 84, 61, 0.04) 55%, #fff);
	border-color: rgba(184, 84, 61, 0.42);
	color: #b8543d;
	transform: translateY(-2px);
	box-shadow: 0 12px 24px rgba(184, 84, 61, 0.14);
}
body.tp_body .pkp_structure_sidebar .pkp_block ul a:hover::before,
body.tp_body .pkp_structure_sidebar .pkp_block .content a:hover::before,
body.tp_body .pkp_structure_sidebar .pkp_block li a:hover::before {
	background: #b8543d;
	color: #fff;
	transform: scale(1.06);
	box-shadow: 0 6px 14px rgba(184, 84, 61, 0.28);
}
body.tp_body .pkp_structure_sidebar .pkp_block ul a:focus-visible,
body.tp_body .pkp_structure_sidebar .pkp_block .content a:focus-visible,
body.tp_body .pkp_structure_sidebar .pkp_block li a:focus-visible {
	outline: 2px solid #b8543d;
	outline-offset: 2px;
}
body.tp_body .pkp_structure_sidebar .pkp_block ul a[href*="editorialteam"]::before { content: "\f0c0"; }
body.tp_body .pkp_structure_sidebar .pkp_block ul a[href*="reviewer"]::before { content: "\f06e"; }
body.tp_body .pkp_structure_sidebar .pkp_block ul a[href*="contact"]::before { content: "\f0e0"; }
body.tp_body .pkp_structure_sidebar .pkp_block ul a[href*="focusandscope"]::before { content: "\f140"; }
body.tp_body .pkp_structure_sidebar .pkp_block ul a[href*="peerreviewprocess"]::before { content: "\f086"; }
body.tp_body .pkp_structure_sidebar .pkp_block ul a[href*="publicationfrequency"]::before { content: "\f073"; }
body.tp_body .pkp_structure_sidebar .pkp_block ul a[href*="openaccessstatement"]::before { content: "\f09c"; }
body.tp_body .pkp_structure_sidebar .pkp_block ul a[href*="archivingpolicy"]::before { content: "\f187"; }
body.tp_body .pkp_structure_sidebar .pkp_block ul a[href*="depositpolicy"]::before { content: "\f0ee"; }
body.tp_body .pkp_structure_sidebar .pkp_block ul a[href*="publicationethics"]::before { content: "\f24e"; }
body.tp_body .pkp_structure_sidebar .pkp_block ul a[href*="withdrawalmanuscripts"]::before { content: "\f0e2"; }
body.tp_body .pkp_structure_sidebar .pkp_block ul a[href*="indexing"]::before { content: "\f0e8"; }
body.tp_body .pkp_structure_sidebar .pkp_block ul a[href*="authorguidlines"]::before,
body.tp_body .pkp_structure_sidebar .pkp_block ul a[href*="authorguidelines"]::before { content: "\f02d"; }
body.tp_body .pkp_structure_sidebar .pkp_block ul a[href*="aboutarticleinpress"]::before { content: "\f1ea"; }
body.tp_body .pkp_structure_sidebar .pkp_block ul a[href*="articleprocessingcharge"]::before { content: "\f09d"; }
body.tp_body .pkp_structure_sidebar .pkp_block ul a[href*="copyrightnotice"]::before { content: "\f1f9"; }
body.tp_body .pkp_structure_sidebar .pkp_block ul a[href*="license"]::before { content: "\f25e"; }
body.tp_body .pkp_structure_sidebar .pkp_block ul a[href*="plagiarismpolicy"]::before { content: "\f0c5"; }
body.tp_body .pkp_structure_sidebar .pkp_block ul a[href*="complaints"]::before { content: "\f071"; }

body.tp_body .block_Keywordcloud .tp_keyword_empty {
	margin: 0.15rem 0 0;
	padding: 0.85rem 0.95rem;
	border: 1px dashed rgba(18, 18, 18, 0.14);
	border-radius: 12px;
	background: linear-gradient(180deg, #fffefb 0%, #f7f4ef 100%);
	color: var(--tp-muted);
	font-size: 0.86rem;
	font-weight: 500;
	line-height: 1.45;
}
/* Word cloud — scattered serif labels in a framed panel (reference mock) */
body.tp_body .block_Keywordcloud #wordcloud {
	min-height: 0;
}
body.tp_body .block_Keywordcloud .tp_keyword_cloud {
	position: relative;
	margin: 0.2rem 0 0;
	padding: 1.15rem 0.7rem 1.25rem;
	min-height: 11.5rem;
	border: 1.5px solid #121212;
	border-radius: 18px;
	background:
		radial-gradient(circle at 18% 22%, rgba(168, 153, 196, 0.08), transparent 42%),
		radial-gradient(circle at 82% 78%, rgba(196, 122, 126, 0.07), transparent 40%),
		#ffffff;
	overflow: hidden;
}
body.tp_body .block_Keywordcloud .tp_keyword_tags {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items: center;
	gap: 0.85rem 0.95rem;
	min-height: 9.5rem;
}
body.tp_body .block_Keywordcloud .tp_keyword_tags__item {
	margin: 0;
	padding: 0;
	line-height: 1;
}
body.tp_body .block_Keywordcloud a.tp_keyword_tag {
	display: inline-block;
	width: auto;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	box-shadow: none;
	font-family: "Iowan Old Style", "Palatino Linotype", Palatino, "Book Antiqua", Georgia, serif;
	font-weight: 600;
	font-size: clamp(0.78rem, calc(0.7rem + (var(--kw-w, 1) * 0.14rem)), 1.45rem);
	letter-spacing: 0.01em;
	line-height: 1.05;
	text-decoration: none;
	white-space: nowrap;
	transform: rotate(var(--kw-rot, 0deg));
	transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), color 0.22s ease, opacity 0.22s ease;
	opacity: 0.92;
}
body.tp_body .block_Keywordcloud a.tp_keyword_tag::before,
body.tp_body .block_Keywordcloud a.tp_keyword_tag::after {
	content: none;
	display: none;
}
/* Palette + rotation cycle — grey / lavender / dusty rose */
body.tp_body .block_Keywordcloud .tp_keyword_tags__item:nth-child(6n + 1) a.tp_keyword_tag {
	--kw-rot: -34deg;
	color: #c47a7e;
}
body.tp_body .block_Keywordcloud .tp_keyword_tags__item:nth-child(6n + 2) a.tp_keyword_tag {
	--kw-rot: 12deg;
	color: #8a8a8a;
}
body.tp_body .block_Keywordcloud .tp_keyword_tags__item:nth-child(6n + 3) a.tp_keyword_tag {
	--kw-rot: 48deg;
	color: #9b8db8;
}
body.tp_body .block_Keywordcloud .tp_keyword_tags__item:nth-child(6n + 4) a.tp_keyword_tag {
	--kw-rot: -18deg;
	color: #6e6e6e;
}
body.tp_body .block_Keywordcloud .tp_keyword_tags__item:nth-child(6n + 5) a.tp_keyword_tag {
	--kw-rot: 28deg;
	color: #b39bc9;
}
body.tp_body .block_Keywordcloud .tp_keyword_tags__item:nth-child(6n) a.tp_keyword_tag {
	--kw-rot: -48deg;
	color: #9a9a9a;
}
body.tp_body .block_Keywordcloud a.tp_keyword_tag:hover,
body.tp_body .block_Keywordcloud a.tp_keyword_tag:focus-visible {
	opacity: 1;
	color: #121212;
	transform: rotate(var(--kw-rot, 0deg)) scale(1.08);
	outline: none;
}
body.tp_body .block_Keywordcloud .tp_keyword_tag__count {
	display: none;
}

/* Visitors — framed Flag Counter board */
body.tp_body #customblock-visitors .title {
	/* keep terracotta chip; ensure visible (not screen-reader) */
	position: static;
	width: 100%;
	height: auto;
	clip: auto;
	overflow: visible;
}
body.tp_body #customblock-visitors .content > p {
	margin: 0;
}
body.tp_body #customblock-visitors .jippe-visitors {
	display: grid;
	gap: 0;
}
body.tp_body #customblock-visitors .jippe-visitors__lede {
	display: none;
}
body.tp_body #customblock-visitors .jippe-visitors__panel {
	position: relative;
	padding: 0.75rem 0.7rem 0.85rem;
	border-radius: 16px;
	border: 1px solid rgba(18, 18, 18, 0.08);
	background:
		radial-gradient(circle at 12% 0%, rgba(77, 129, 134, 0.12), transparent 48%),
		radial-gradient(circle at 92% 100%, rgba(201, 147, 49, 0.12), transparent 42%),
		linear-gradient(165deg, #ffffff 0%, #f5f8f7 100%);
	box-shadow: 0 10px 24px rgba(18, 18, 18, 0.05);
	overflow: hidden;
}
body.tp_body #customblock-visitors .jippe-visitors__panel::before {
	content: none;
	display: none;
}
body.tp_body #customblock-visitors .jippe-visitors__link,
body.tp_body #customblock-visitors .content a.jippe-visitors__link {
	display: block !important;
	width: 100% !important;
	margin: 0 !important;
	padding: 0.35rem 0 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	transform: none !important;
	color: inherit !important;
}
body.tp_body #customblock-visitors .jippe-visitors__link::before,
body.tp_body #customblock-visitors .jippe-visitors__link::after,
body.tp_body #customblock-visitors .content a.jippe-visitors__link::before,
body.tp_body #customblock-visitors .content a.jippe-visitors__link::after {
	content: none !important;
	display: none !important;
}
body.tp_body #customblock-visitors .jippe-visitors__img {
	display: block;
	width: 100%;
	max-width: 100%;
	height: auto;
	margin: 0 auto;
	border: 0;
	border-radius: 8px;
	background: #fff;
}
body.tp_body #customblock-visitors .jippe-visitors__link:hover {
	transform: none !important;
	background: transparent !important;
	box-shadow: none !important;
}
body.tp_body #customblock-visitors .jippe-visitors__link:hover .jippe-visitors__img {
	filter: saturate(1.05);
}
body.tp_body #customblock-visitors .jippe-visitors__link:focus-visible {
	outline: 2px solid #4d8186;
	outline-offset: 3px;
	border-radius: 8px;
}

body.tp_body .tp_footer,
body.tp_body .pkp_structure_footer_wrapper.tp_footer {
	position: relative;
	background:
		radial-gradient(circle at 12% 0%, rgba(184, 84, 61, 0.18), transparent 42%),
		radial-gradient(circle at 88% 100%, rgba(77, 129, 134, 0.14), transparent 40%),
		var(--tp-black);
	color: rgba(255,255,255,0.84);
	border-top: 0;
	overflow: hidden;
}
body.tp_body .tp_footer::before {
	content: "";
	display: block;
	height: 3px;
	background: linear-gradient(90deg, #b8543d 0%, var(--tp-gold) 48%, var(--tp-teal) 100%);
}
body.tp_body .tp_footer_inner {
	width: 100%;
	max-width: none;
	margin: 0 auto;
	padding: 2.4rem var(--tp-ojs-pad);
	box-sizing: border-box;
}
body.tp_body .tp_footer a { color: #e8b4a6; }
body.tp_body .tp_footer .pkp_brand_footer {
	display: none !important;
}

/* Body prose — justify paragraphs site-wide (main content) */
body.tp_body .pkp_structure_main p,
body.tp_body .obj_issue_toc .description,
body.tp_body .obj_issue_toc .description p,
body.tp_body .obj_article_details .main_entry p,
body.tp_body .obj_article_details .item.abstract,
body.tp_body .obj_article_details .item.abstract p,
body.tp_body .jippe-feature__text {
	text-align: justify;
	text-justify: inter-word;
	hyphens: auto;
}

/* Article view — title justify, affiliation institution icon, DOI icon */
body.tp_body.pkp_page_article .obj_article_details > .page_title,
body.tp_body .obj_article_details > h1.page_title {
	text-align: justify;
	text-justify: inter-word;
	hyphens: auto;
	line-height: 1.25;
}
/* Keep title within the main column — stop at the cover (entry_details) */
@media (min-width: 768px) {
	body.tp_body.pkp_page_article .obj_article_details > .page_title,
	body.tp_body .obj_article_details > h1.page_title {
		max-width: calc(100% - 25px) !important;
		box-sizing: border-box;
		padding-right: 1.25rem;
	}
}
/* Remove Default theme horizontal rails under title / under entry row */
body.tp_body .obj_article_details > .row,
body.tp_body.pkp_page_article .obj_article_details > .row {
	border-top: none !important;
	border-bottom: none !important;
}
body.tp_body .obj_article_details .entry_details {
	border-top: none !important;
}
body.tp_body .obj_article_details .authors .affiliation {
	display: flex;
	align-items: flex-start;
	gap: 0.4rem;
	margin-top: 0.2rem;
	color: var(--tp-muted);
	font-size: 0.9rem;
	line-height: 1.45;
}
body.tp_body .obj_article_details .authors .affiliation::before {
	content: "\f19c";
	font-family: FontAwesome;
	font-style: normal;
	font-weight: normal;
	font-size: 0.85rem;
	line-height: 1.45;
	color: var(--tp-teal);
	flex: 0 0 auto;
	speak: none;
}
body.tp_body .obj_article_details .item.doi {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 0.5rem;
	margin: 0.65rem 0;
	padding-top: 0;
}
body.tp_body .obj_article_details .item.doi .label {
	display: inline-block;
	width: 1.25rem;
	height: 1.25rem;
	margin: 0;
	padding: 0;
	border: 0;
	border-radius: 50%;
	background: transparent url("../assets/doi-icon.png") center / contain no-repeat;
	font-size: 0;
	line-height: 0;
	color: transparent;
	overflow: hidden;
	text-indent: -9999px;
	flex: 0 0 auto;
}
body.tp_body .obj_article_details .item.doi .value {
	min-width: 0;
	margin: 0;
	font-size: 0.9rem;
	line-height: 1.4;
}
body.tp_body .obj_article_details .item.doi .value a {
	color: var(--tp-teal);
	word-break: break-all;
	text-decoration: none;
}
body.tp_body .obj_article_details .item.doi .value a:hover {
	color: var(--tp-accent);
	text-decoration: underline;
}