﻿/*!
Theme Name:   Onesys custom theme for 1st YPE
Template:     polyclinic
Theme URI:    https://github.com/webmandesign/child-theme/
Author:       WebMan Design
Author URI:   https://www.webmandesign.eu/
Version:      1.0.0
Description:  You can change this description text in your child theme's "style.css" file.
License:      GNU General Public License v3
License URI:  http://www.gnu.org/licenses/gpl-3.0.html

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.

IMPORTANT:
Read the instructions in https://github.com/webmandesign/child-theme/blob/master/readme.md
and rename Child Theme Test and michelle in this file appropriately!
*/

/* Put your custom CSS styles below... */

:root {
	/* Polyclinic variables */
	--typography_fonts_text: "Ubuntu", "Helvetica Neue", Helvetica, Arial, sans-serif;
	--typography_fonts_headings: "Ubuntu", "Helvetica Neue", Helvetica, Arial, sans-serif;
	--typography_fonts_logo: "Ubuntu", "Helvetica Neue", Helvetica, Arial, sans-serif;
	--layout_width_content: 1400px;

	/* Cindy variables */
	--typography_font_global: "Ubuntu", "Helvetica Neue", Helvetica, Arial, sans-serif;
	--typography_font_headings: "Ubuntu", "Helvetica Neue", Helvetica, Arial, sans-serif;
	--typography_font_site_title: "Ubuntu", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

/* Always-visible top strip + main header */
:root {
	--fixed-light-strip-h: 40px;
	--fixed-main-header-h: 84px;
	--header-brand-900: #0b2f5b;
	--header-brand-800: #103d71;
	--header-accent: #d11f2e;
	--header-ink: #21364d;
	--header-border: #d8e2ed;
}

body {
	padding-top: calc(var(--fixed-light-strip-h) + var(--fixed-main-header-h));
	background: #fff !important;
}

body.custom-background,
.site {
	background: #fff !important;
	background-image: none !important;
	border: 0 !important;
	box-shadow: none !important;
}



.site-content,
.content-container,
.breadcrumbs-container {
	border: 0 !important;
	box-shadow: none !important;
}

.header-light-strip {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 10001;
}

.app-header {
	position: fixed;
	top: var(--fixed-light-strip-h);
	left: 0;
	right: 0;
	z-index: 10000;
}

body.admin-bar {
	padding-top: calc(32px + var(--fixed-light-strip-h) + var(--fixed-main-header-h));
}

.admin-bar .header-light-strip {
	top: 32px;
}

.admin-bar .app-header {
	top: calc(32px + var(--fixed-light-strip-h));
}

@media (max-width: 782px) {
	body.admin-bar {
		padding-top: calc(46px + var(--fixed-light-strip-h) + var(--fixed-main-header-h));
	}

	.admin-bar .header-light-strip {
		top: 46px;
	}

	.admin-bar .app-header {
		top: calc(46px + var(--fixed-light-strip-h));
	}
}

/* Light strip above header for logo + contact */
.header-light-strip {
	background: var(--header-brand-900);
	border-bottom: 1px solid rgba(255, 255, 255, 0.12);
	color: #fff;
	height: var(--fixed-light-strip-h);
	margin: 0;
	padding: 0;
	transition: transform 180ms ease, opacity 180ms ease;
}

.header-light-strip-inner {
	margin: 0 auto;
	min-height: var(--fixed-light-strip-h);
	padding: 0 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: nowrap;
	gap: 0.9rem;
}

.header-light-brand,
.header-light-links {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.header-light-brand {
	min-width: 0;
}

.header-light-dot {
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 999px;
	background: var(--header-accent);
	flex: 0 0 auto;
}

.header-light-title {
	margin: 0;
	font-size: 0.94rem;
	font-weight: 600;
	line-height: 1.2;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.header-light-links {
	margin-left: auto;
	font-size: 0.88rem;
}

.header-light-links a {
	color: rgba(255, 255, 255, 0.95);
	text-decoration: none;
}

.header-light-links a:hover,
.header-light-links a:focus {
	color: #fff;
	text-decoration: underline;
}

.header-light-separator {
	opacity: 0.5;
}

@media (max-width: 880px) {
	.header-light-strip-inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 0.45rem;
	}

	.header-light-brand,
	.header-light-links {
		width: 100%;
	}

	.header-light-links {
		margin-left: 0;
		justify-content: flex-start;
	}
}

/* Child header */
.app-branding,
.app-branding .custom-logo-link,
.app-logo-link {
	display: inline-flex;
	align-items: center;
}

.app-branding .custom-logo {
	display: block;
	width: auto;
	max-height: 66px;
}

.app-header {
	background: rgba(255, 255, 255, 0.96) !important;
	color: var(--header-ink) !important;
	border-bottom: 1px solid var(--header-border);
	box-shadow: 0 12px 30px rgba(10, 31, 58, 0.08);
	backdrop-filter: blur(14px);
	top: var(--fixed-light-strip-h) !important;
}

.app-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	max-width: var(--layout_width_content);
	min-height: var(--fixed-main-header-h);
	margin: 0 auto;
	padding: 0 1.25rem;
}

.app-branding {
	margin-right: 0.85rem;
	flex: 0 0 auto;
}

.app-nav {
	flex: 1 1 auto;
	min-width: 0;
}

.app-mobile-parent-nav {
	display: none;
}

.app-nav-toggle {
	display: none;
	align-items: center;
	height: 2.25rem;
	width: 2.25rem;
	padding: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: var(--header-ink);
	justify-content: center;
	cursor: pointer;
	box-shadow: none !important;
	-webkit-box-shadow: none !important;
	outline: 0;
}

.app-nav-toggle-icon {
	position: relative;
	display: inline-block;
	width: 1rem;
	height: 2px;
	background: currentColor;
	border-radius: 999px;
	transition: background 180ms ease;
}

.app-nav-toggle-icon::before,
.app-nav-toggle-icon::after {
	content: "";
	position: absolute;
	left: 0;
	width: 1rem;
	height: 2px;
	background: currentColor;
	border-radius: 999px;
	transition: transform 180ms ease, top 180ms ease;
}

.app-nav-toggle-icon::before {
	top: -0.32rem;
}

.app-nav-toggle-icon::after {
	top: 0.32rem;
}

.app-header.menu-open .app-nav-toggle-icon {
	background: transparent;
}

.app-header.menu-open .app-nav-toggle-icon::before {
	top: 0;
	transform: rotate(45deg);
}

.app-header.menu-open .app-nav-toggle-icon::after {
	top: 0;
	transform: rotate(-45deg);
}

.app-header-contact {
	display: inline-flex;
	align-items: center;
	gap: 0.45rem;
	flex: 0 0 auto;
	height: 2.25rem;
	padding: 0 0.95rem;
	border-radius: 999px;
	background: var(--header-brand-900);
	color: #fff;
	font-size: 0.82rem;
	font-weight: 700;
	text-decoration: none;
	box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.app-header-contact:hover,
.app-header-contact:focus {
	background: var(--header-brand-800);
	color: #fff;
}

.app-header-contact-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 1.2rem;
	height: 1.2rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.15);
	font-size: 0.72rem;
	line-height: 1;
}

.app-nav-menu,
.app-nav-menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.app-nav-menu {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 0.2rem;
	white-space: nowrap;
}

.app-nav-menu > li {
	position: relative;
}

.app-nav-menu > li > a {
	display: inline-flex;
	align-items: center;
	min-height: var(--fixed-main-header-h);
	color: #55697d;
	font-size: 0.82rem;
	font-weight: 600;
	padding: 0 0.42rem;
	text-decoration: none;
}

.app-nav-menu > li.menu-item-has-children > a::after {
	content: "+";
	margin-left: 0.32rem;
	color: #9aa9b9;
	font-size: 1rem;
	line-height: 1;
}

.app-nav-menu > li:hover > a,
.app-nav-menu > li.current-menu-item > a,
.app-nav-menu > li.current-menu-ancestor > a,
.app-nav-menu > li > a:hover,
.app-nav-menu > li > a:focus {
	color: var(--header-brand-800);
}

.app-nav-menu .sub-menu {
	position: absolute;
	top: 100%;
	right: 0;
	z-index: 20;
	display: none;
	min-width: 14rem;
	padding: 0.4rem 0;
	background: #fff;
	border: 1px solid var(--header-border);
	box-shadow: 0 16px 36px rgba(10, 31, 58, 0.12);
}

.app-nav-menu > li:hover > .sub-menu,
.app-nav-menu > li:focus-within > .sub-menu {
	display: block;
}

.app-nav-menu .sub-menu li + li {
	border-top: 1px solid rgba(16, 61, 113, 0.12);
}

.app-nav-menu .sub-menu a {
	display: block;
	padding: 0.75rem 1rem;
	color: var(--header-ink);
	text-decoration: none;
}

@media (max-width: 1024px) {
	.header-light-strip {
		display: none;
	}

	.app-header-contact {
		display: none;
	}

	body {
		padding-top: var(--fixed-main-header-h);
	}

	.app-header {
		top: 0 !important;
	}

	body.admin-bar .app-header {
		top: 46px !important;
	}

	.app-header-inner {
		flex-wrap: wrap;
		gap: 0.7rem;
		padding-top: 0.45rem;
		padding-bottom: 0.45rem;
		min-height: auto;
	}

	.app-branding {
		margin-right: 0;
	}

	.app-branding .custom-logo {
		max-height: 38px;
		width: auto;
	}

	.app-nav-toggle {
		display: inline-flex;
		margin-left: auto;
	}

	.app-nav {
		display: block;
		order: 3;
		flex: 0 0 100%;
		width: 100%;
		height: 0;
	}

	.app-nav-menu-wrap {
		display: none;
		position: fixed;
		top: var(--fixed-main-header-h);
		left: 0;
		right: 0;
		z-index: 9999;
		width: 100vw;
		height: calc(100dvh - var(--fixed-main-header-h));
		padding: 0;
		background: #f3f6fa;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
	}

	body.admin-bar .app-nav-menu-wrap {
		top: calc(46px + var(--fixed-main-header-h));
		height: calc(100dvh - 46px - var(--fixed-main-header-h));
	}

	.app-header.menu-open .app-nav-menu-wrap {
		display: block;
	}

	.app-nav-menu {
		display: block;
		white-space: normal;
		border: 0;
		border-radius: 0;
		background: #fff;
		overflow: hidden;
		max-width: 100%;
		margin-top: 0;
	}

	.app-nav-menu-wrap .mobile-search-form {
		display: none !important;
	}

	.app-nav-menu > li + li {
		border-top: 1px solid var(--header-border);
	}

	.app-nav-menu > li > a {
		display: block;
		min-height: 0;
		padding: 0.78rem 0.9rem;
		line-height: 1.35;
	}

	.app-nav-menu > li.menu-item-has-children > a::after {
		float: right;
		margin-left: 0.5rem;
	}

	.app-nav-menu .sub-menu {
		position: static;
		display: block;
		min-width: 0;
		padding: 0;
		border: 0;
		box-shadow: none;
		background: #f7fafc;
	}

	.app-nav-menu .sub-menu li + li {
		border-top: 1px solid rgba(16, 61, 113, 0.1);
	}

	.app-nav-menu .sub-menu a {
		padding: 0.68rem 1.45rem;
		line-height: 1.35;
	}

	body.mobile-menu-open {
		overflow: hidden;
	}

	html.mobile-menu-open {
		overflow: hidden !important;
	}

	html.mobile-menu-open,
	body.mobile-menu-open {
		height: 100%;
	}
}

#site-header-placeholder {
	display: none !important;
	height: 0 !important;
}

body.has-scrolled .app-header,
body.scrolling-up .app-header,
body.scrolling-down .app-header,
body.child-header-condensed .app-header {
	position: fixed !important;
	top: 0 !important;
	transform: none !important;
}

body.admin-bar.has-scrolled .app-header,
body.admin-bar.scrolling-up .app-header,
body.admin-bar.scrolling-down .app-header,
body.admin-bar.child-header-condensed .app-header {
	top: 32px !important;
}

body.has-scrolled .header-light-strip,
body.scrolling-up .header-light-strip,
body.scrolling-down .header-light-strip,
body.child-header-condensed .header-light-strip {
	transform: translateY(-100%);
	opacity: 0;
	pointer-events: none;
}

@media (min-width: 880px) {

	body.has-two-sidebars {
		--sidebar_width: .25;
	}

	body.has-two-sidebars .content-area {
		display: -webkit-flex;
		display: -ms-flexbox;
		display: flex;
		max-width: var(--layout_width_content);
		padding: var(--content_padding) 0;
	}
	body.has-two-sidebars .content-area::after {
		display: none;
	}

	body.has-two-sidebars .site-main {
		width: calc(100% - 100% * var(--sidebar_width) * 2);
		max-width: none;
		margin: 0;
	}

	body.has-two-sidebars .sidebar {
		width: calc(100% * var(--sidebar_width));
	}

	.has-main-sidebar-sidebar.has-two-sidebars .sidebar {
		padding-left: 2em;
	}
	.has-main-sidebar-sidebar.has-widgets-in-sidebar .page-media,
	.has-main-sidebar-sidebar.has-widgets-in-sidebar .page-header:before {
		margin-left: calc(1 / (1 - var(--sidebar_width) * 2) / 2 * 100% - 50vw + var(--scrollbar_width) / 2);
	}

	.has-sidebar-sidebar-main.has-two-sidebars .sidebar {
		order: -1;
		padding-right: 2em;
	}
	.has-sidebar-sidebar-main.has-widgets-in-sidebar .page-media,
	.has-sidebar-sidebar-main.has-widgets-in-sidebar .page-header:before {
		margin-left: calc(100% - 1 / (1 - var(--sidebar_width) * 2) / 2 * 100% - 50vw + var(--scrollbar_width) / 2);
	}

	.has-sidebar-main-sidebar.has-two-sidebars .sidebar {
		order: -1;
		padding-right: 2em;
	}
	.has-sidebar-main-sidebar.has-two-sidebars .sidebar-2 {
		order: 1;
		padding-left: 2em;
		padding-right: 0;
	}
	.has-sidebar-main-sidebar.has-widgets-in-sidebar .page-media,
	.has-sidebar-main-sidebar.has-widgets-in-sidebar .page-header:before {
		margin-left: calc(50% - 50vw + var(--scrollbar_width) / 2);
	}

}

@media (max-width: 782px) {
	body.admin-bar.has-scrolled .app-header,
	body.admin-bar.scrolling-up .app-header,
	body.admin-bar.scrolling-down .app-header,
	body.admin-bar.child-header-condensed .app-header {
		top: 46px !important;
	}
}

/* Landing page polish (homepage only) */
body.home .site-content {
	background: #fff;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
}

body.home .site-main > .fl-builder-content {
	padding-top: 1.25rem;
}

body.home .fl-builder-content > .fl-row {
	margin-bottom: 1rem;
}

/* Temporary fix for imported demo hero layout:
 * keep first homepage row readable even when paired media column is empty/missing.
 */
body.home .fl-builder-content > .fl-row:first-child .fl-col {
	width: 100% !important;
	max-width: 100% !important;
	flex-basis: 100% !important;
}

body.home .fl-builder-content > .fl-row:first-child .fl-col > .fl-col-content {
	max-width: 860px;
	margin-left: auto;
	margin-right: auto;
	padding-left: clamp(1rem, 3vw, 2rem);
	padding-right: clamp(1rem, 3vw, 2rem);
}

body.home .fl-builder-content > .fl-row > .fl-row-content-wrap {
	border-radius: 14px;
	overflow: hidden;
	box-shadow: 0 12px 34px rgba(10, 26, 50, 0.1);
	transition: transform 220ms ease, box-shadow 220ms ease;
}

body.home .fl-builder-content > .fl-row:hover > .fl-row-content-wrap {
	transform: translateY(-2px);
	box-shadow: 0 16px 42px rgba(10, 26, 50, 0.14);
}

body.home .fl-builder-content h1,
body.home .fl-builder-content h2,
body.home .fl-builder-content h3 {
	letter-spacing: 0.01em;
}

body.home .fl-builder-content .button,
body.home .fl-builder-content .wm-button,
body.home .fl-builder-content [type="submit"] {
	border-radius: 999px;
	padding-left: 1.2em;
	padding-right: 1.2em;
	font-weight: 700;
	box-shadow: 0 8px 22px rgba(7, 89, 155, 0.28);
	transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease;
}

body.home .fl-builder-content .button:hover,
body.home .fl-builder-content .wm-button:hover,
body.home .fl-builder-content [type="submit"]:hover {
	transform: translateY(-1px);
	box-shadow: 0 12px 26px rgba(7, 89, 155, 0.34);
	filter: saturate(1.08);
}

body.home .fl-builder-content .fl-col > .fl-col-content {
	border-radius: 10px;
}

body.home .fl-builder-content .wm-iconbox-module,
body.home .fl-builder-content .wm-testimonials-item,
body.home .fl-builder-content .wm-posts-item {
	border-radius: 10px;
}

@media (max-width: 879px) {
	body.home .site-main > .fl-builder-content {
		padding-top: 0.5rem;
	}

	body.home .fl-builder-content > .fl-row > .fl-row-content-wrap {
		border-radius: 10px;
	}
}

@media (prefers-reduced-motion: reduce) {
	body.home .fl-builder-content > .fl-row > .fl-row-content-wrap,
	body.home .fl-builder-content .button,
	body.home .fl-builder-content .wm-button,
	body.home .fl-builder-content [type="submit"] {
		transition: none;
	}
}

/* Clean front page template */
body.home .site-main {
	max-width: none;
}

body.home .intro-container {
	display: none !important;
}

/* Rebuilt homepage: hero only */
.cfp-new-front {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
}

body.home .site-main > .content-container.cfp-new-front {
	position: relative;
	left: 50%;
	right: 50%;
	width: 100vw !important;
	max-width: 100vw !important;
	margin-left: -50vw !important;
	margin-right: -50vw !important;
	margin-top: 0 !important;
	padding: 0 !important;
	background: transparent !important;
}

.cfp-new-hero {
	position: relative;
	width: 100% !important;
	max-width: none !important;
	margin: 0 !important;
	min-height: clamp(420px, 68vh, 760px);
	display: flex;
	align-items: flex-end;
	padding: clamp(1.25rem, 3vw, 2.5rem);
	background-color: #0f2338;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	overflow: hidden;
}

.cfp-new-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background:
		linear-gradient(95deg, rgba(8, 20, 35, 0.86) 10%, rgba(8, 20, 35, 0.5) 50%, rgba(8, 20, 35, 0.25) 100%),
		linear-gradient(0deg, rgba(8, 20, 35, 0.5) 0%, rgba(8, 20, 35, 0.08) 48%, rgba(8, 20, 35, 0.02) 100%);
}

.cfp-new-hero-overlay {
	position: relative;
	z-index: 1;
	max-width: 760px;
	padding: clamp(1rem, 2.2vw, 1.65rem);
	border-radius: 20px;
	background: rgba(7, 18, 31, 0.48);
	backdrop-filter: blur(2px);
}

.cfp-new-kicker {
	margin: 0;
	color: rgba(255, 255, 255, 0.85);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.1em;
}

.cfp-new-title {
	margin: 0.55rem 0 0;
	color: #fff;
	font-size: clamp(2rem, 5vw, 4.6rem);
	line-height: 1.05;
	text-wrap: balance;
}

.cfp-new-subtitle {
	margin: 1rem 0 0;
	max-width: 56ch;
	color: rgba(255, 255, 255, 0.88);
	font-size: clamp(1rem, 1.5vw, 1.2rem);
	line-height: 1.5;
}

.cfp-preview-section {
	padding: clamp(2.2rem, 4.4vw, 4rem) 0;
	background: #ffffff;
}

.cfp-preview-shell {
	width: 100%;
	max-width: none;
	padding: 0 clamp(1rem, 2.6vw, 2.3rem);
}

.cfp-preview-heading {
	margin: 0 0 1.5rem;
	color: #0f2133;
	font-size: clamp(1.55rem, 2.45vw, 2.45rem);
	line-height: 1.06;
	max-width: 19ch;
}

.cfp-preview-cards-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.8rem;
}

.cfp-preview-card {
	display: grid;
	grid-template-columns: 60% 40%;
	align-items: stretch;
	gap: 0;
	height: 190px;
	border: 1px solid #cedae8;
	border-radius: 12px;
	overflow: hidden;
	background: #f8fbff;
	text-decoration: none;
	transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.cfp-preview-card-media {
	position: relative;
	display: block;
	background: #dfe9f3;
	overflow: hidden;
}

.cfp-preview-card-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	filter: saturate(1.08) contrast(1.02);
}

.cfp-preview-card-title {
	display: flex;
	align-items: center;
	padding: 0.52rem 0.62rem;
	color: #123a5d;
	font-size: 0.98rem;
	font-weight: 700;
	line-height: 1.36;
	word-break: break-word;
	overflow-wrap: anywhere;
}

.cfp-preview-card:hover,
.cfp-preview-card:focus {
	border-color: #9eb9d3;
	box-shadow: 0 8px 18px rgba(14, 49, 82, 0.12);
	transform: translateY(-1px);
	text-decoration: none;
}

.cfp-preview-focus-section {
	padding: clamp(2.2rem, 4.4vw, 4rem) 0;
	background: linear-gradient(180deg, #f7fbff 0%, #edf4fb 100%);
}

.cfp-preview-focus-shell {
	width: 100%;
	max-width: none;
	padding: 0 clamp(0.8rem, 2.4vw, 1.6rem);
}

.cfp-preview-layout {
	display: grid;
	grid-template-columns: minmax(0, 1.05fr) minmax(340px, 1fr);
	gap: 1.1rem;
	align-items: stretch;
}

.cfp-preview-links {
	padding: clamp(1rem, 2vw, 1.45rem);
	border-radius: 24px;
	border: 1px solid #d4e0eb;
	background: linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
	box-shadow: 0 16px 34px rgba(12, 45, 78, 0.09);
}

.cfp-preview-kicker {
	margin: 0 0 0.55rem;
	color: #55708a;
	font-size: 0.76rem;
	font-weight: 800;
	letter-spacing: 0.08em;
}

.cfp-preview-links h2 {
	margin: 0;
	max-width: 14ch;
	color: #0f2438;
	font-size: clamp(1.55rem, 2.5vw, 2.35rem);
	line-height: 1.08;
}

.cfp-preview-links ul {
	margin: 1rem 0 0;
	padding: 0;
	list-style: none;
	display: grid;
	gap: 0.75rem;
}

.cfp-preview-item {
	display: flex;
	align-items: stretch;
	gap: 0.7rem;
	padding: 0.85rem;
	border-radius: 18px;
	border: 1px solid #d8e3ee;
	background: #fff;
	box-shadow: 0 10px 24px rgba(12, 45, 78, 0.08);
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.cfp-preview-item.is-active {
	transform: translateX(2px);
	border-color: #9eb9d3;
	box-shadow: 0 16px 36px rgba(12, 45, 78, 0.14);
}

.cfp-preview-link {
	flex: 1 1 auto;
	min-width: 0;
	display: block;
	color: inherit;
	text-decoration: none;
}

.cfp-preview-link-label {
	display: inline-flex;
	align-items: center;
	padding: 0.25rem 0.55rem;
	border-radius: 999px;
	background: #e7f1fb;
	color: #1f4d78;
	font-size: 0.74rem;
	font-weight: 800;
	letter-spacing: 0.02em;
}

.cfp-preview-link-title {
	display: block;
	margin-top: 0.48rem;
	color: #123a5d;
	font-size: 1rem;
	font-weight: 800;
	line-height: 1.25;
}

.cfp-preview-link-desc {
	display: block;
	margin-top: 0.35rem;
	color: #566f85;
	font-size: 0.92rem;
	line-height: 1.45;
}

.cfp-preview-link-more {
	flex: 0 0 auto;
	align-self: flex-end;
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
	padding: 0.4rem 0.72rem;
	border-radius: 999px;
	background: linear-gradient(180deg, #e8f2fb 0%, #d8e8f7 100%);
	color: #1f4d78;
	font-size: 0.8rem;
	font-weight: 800;
	text-decoration: none;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.cfp-preview-link-more::after {
	content: "↗";
	margin-left: 0.35rem;
	font-size: 0.9em;
	line-height: 1;
}

.cfp-preview-media {
	min-height: 560px;
	border-radius: 28px;
	overflow: hidden;
	background: #dbe5ef;
	box-shadow: 0 18px 40px rgba(12, 45, 78, 0.12);
}

.cfp-preview-media img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 240ms ease;
}

.cfp-preview-trigger:hover .cfp-preview-link-title,
.cfp-preview-trigger:focus .cfp-preview-link-title {
	color: #0f4a7e;
}

.cfp-preview-trigger:hover .cfp-preview-link-more,
.cfp-preview-trigger:focus .cfp-preview-link-more {
	background: linear-gradient(180deg, #dfeefb 0%, #cfe2f3 100%);
}


.cfp-effect-kicker {
	margin: 0 0 0.5rem;
	color: #56697c;
	font-size: 0.76rem;
	font-weight: 700;
	letter-spacing: 0.08em;
}

.cfp-section-effect {
	color: #123f67;
	font-weight: 800;
}

.cfp-effect-shell {
	width: 100%;
	max-width: none;
	padding: 0 clamp(1rem, 2.6vw, 2.3rem);
}

.cfp-split-section {
	padding: clamp(2rem, 4vw, 3.4rem) 0;
	background: #fff;
}

.cfp-split-section h2 {
	margin: 0;
	font-size: clamp(2rem, 4.5vw, 4rem);
	line-height: 1.05;
	color: #0e2336;
	max-width: 18ch;
}

.cfp-split-section p {
	margin: 1rem 0 0;
	font-size: 1.04rem;
	line-height: 1.6;
	color: #33495c;
	max-width: 72ch;
}

[data-split-text].is-split .cfp-word {
	display: inline-block;
	opacity: 0;
	transform: translateY(26px);
	animation: cfp-word-rise 560ms cubic-bezier(0.2, 0.65, 0.2, 1) forwards;
	animation-delay: var(--word-delay, 0ms);
	margin-right: 0.22em;
}

@keyframes cfp-word-rise {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.cfp-tilt-section {
	padding: clamp(2.1rem, 4.2vw, 3.6rem) 0;
	background: linear-gradient(180deg, #f7fbff 0%, #edf4fb 100%);
}

.cfp-tilt-section h2 {
	margin: 0;
	color: #112f49;
	font-size: clamp(1.7rem, 3.1vw, 2.5rem);
}

.cfp-tilt-grid {
	margin-top: 1rem;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.cfp-tilt-card {
	padding: 1.15rem 1rem;
	border-radius: 14px;
	background: #fff;
	border: 1px solid #d2dfec;
	box-shadow: 0 14px 34px rgba(12, 43, 77, 0.08);
	transform-style: preserve-3d;
	transition: transform 180ms ease, box-shadow 180ms ease;
	will-change: transform;
}

.cfp-tilt-card h3 {
	margin: 0;
	color: #12395d;
	font-size: 1.1rem;
}

.cfp-tilt-card p {
	margin: 0.6rem 0 0;
	color: #3e5770;
	line-height: 1.55;
}

.cfp-particles-section {
	position: relative;
	overflow: hidden;
	padding: clamp(2.2rem, 4.3vw, 3.8rem) 0;
	background: radial-gradient(circle at 20% 30%, #f5f9ff 0%, #ecf3fc 44%, #e6eef8 100%);
}

.cfp-particles-canvas {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	pointer-events: none;
}

.cfp-particles-section .cfp-effect-shell {
	position: relative;
	z-index: 1;
}

.cfp-particles-section h2 {
	margin: 0;
	color: #102c45;
	font-size: clamp(1.8rem, 3.2vw, 2.8rem);
	max-width: 20ch;
}

.cfp-particles-section p {
	margin: 0.95rem 0 0;
	max-width: 70ch;
	color: #344f67;
	line-height: 1.62;
}

.cfp-leadership-section {
	padding: clamp(2.1rem, 4vw, 3.4rem) 0;
	background: #ecebed;
}

.cfp-leadership-shell {
	width: 100%;
	max-width: none;
	padding: 0 clamp(0.8rem, 2.4vw, 1.6rem);
}

.cfp-leadership-head {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	gap: 1rem;
	flex-wrap: wrap;
	margin-bottom: 1rem;
}

.cfp-leadership-title-wrap {
	max-width: 980px;
}

.cfp-leadership-title-wrap h2 {
	margin: 0;
	color: #121d24;
	font-size: clamp(2rem, 4.4vw, 3.7rem);
	line-height: 1.05;
	letter-spacing: -0.02em;
}

.cfp-leadership-title-wrap p {
	margin: 0.55rem 0 0;
	color: #2f3f4a;
	font-size: clamp(1rem, 1.45vw, 1.15rem);
	line-height: 1.5;
	max-width: 78ch;
}

.cfp-leadership-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 180px;
	height: 58px;
	padding: 0 1rem;
	border-radius: 14px;
	border: 1px solid #1f495f;
	background: transparent;
	color: #1b2c36;
	font-size: 1rem;
	font-weight: 600;
	text-decoration: none;
}

.cfp-leadership-link:hover,
.cfp-leadership-link:focus {
	background: rgba(22, 66, 88, 0.08);
	color: #1b2c36;
	text-decoration: none;
}

.cfp-leadership-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1rem;
}

.cfp-leader-card {
	position: relative;
	display: grid;
	grid-template-columns: 136px 1fr;
	align-items: stretch;
	min-height: 0;
	padding: 0;
	border: 1px solid rgba(16, 40, 60, 0.14);
	border-radius: 14px;
	background: #f8fbff;
	overflow: hidden;
}

.cfp-leader-image-wrap {
	position: relative;
	inset: auto;
	height: 100%;
	min-height: 136px;
	background: radial-gradient(circle at 50% 32%, #f2f4f7 0%, #d7dce3 100%);
}

.cfp-leader-image-wrap img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
	padding: 0;
}

.cfp-leader-card.is-square-image .cfp-leader-image-wrap {
	background: radial-gradient(circle at 50% 32%, #f2f4f7 0%, #d7dce3 100%);
}

.cfp-leader-card.is-square-image .cfp-leader-image-wrap img {
	object-fit: cover;
	object-position: center;
	padding: 0;
}

.cfp-leader-info {
	position: relative;
	left: auto;
	right: auto;
	bottom: auto;
	margin: 0;
	padding: 0.75rem 0.85rem;
	border-radius: 0;
	background: #f8fbff;
	backdrop-filter: none;
	-webkit-backdrop-filter: none;
	border: 0;
	box-shadow: none;
}

.cfp-leader-role {
	margin: 0;
	color: #4b6378;
	font-size: 0.68rem;
	font-weight: 800;
	letter-spacing: 0.08em;
	text-shadow: none;
}

.cfp-leader-card h3 {
	margin: 0.38rem 0 0;
	color: #10283c;
	font-size: clamp(1.05rem, 1.45vw, 1.45rem);
	line-height: 1.18;
	text-shadow: none;
}

.cfp-leader-meta {
	margin: 0.34rem 0 0;
	color: #2f3f4a;
	font-size: 0.88rem;
	line-height: 1.45;
	text-shadow: none;
}

.cfp-leader-links {
	margin: 0.7rem 0 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
}

.cfp-leader-cv-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 32px;
	padding: 0.35rem 0.7rem;
	border: 1px solid rgba(233, 243, 251, 0.62);
	border-radius: 999px;
	color: #f5fbff;
	font-size: 0.82rem;
	font-weight: 700;
	text-decoration: none;
	background: rgba(8, 25, 41, 0.24);
	transition: background-color 180ms ease, border-color 180ms ease, color 180ms ease;
}

.cfp-leader-cv-link:hover,
.cfp-leader-cv-link:focus {
	background: rgba(8, 25, 41, 0.45);
	border-color: rgba(233, 243, 251, 0.88);
	color: #ffffff;
}

.cfp-leader-linkedin-link {
	background: rgba(10, 102, 194, 0.22);
	border-color: rgba(123, 187, 255, 0.72);
}

.cfp-linkedin-icon {
	display: inline-flex;
	width: 14px;
	height: 14px;
	margin-right: 0.3rem;
}

.cfp-linkedin-icon svg {
	display: block;
	width: 100%;
	height: 100%;
	fill: currentColor;
}

.cfp-learn-section {
	padding: clamp(1.8rem, 3.4vw, 2.8rem) 0 clamp(2.6rem, 4.2vw, 3.8rem);
	background: linear-gradient(180deg, #0d2a45 0%, #0a2238 100%);
	border-top: 1px solid rgba(255, 255, 255, 0.08);
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.cfp-learn-shell {
	width: 100%;
	max-width: none;
	margin: 0;
}

.cfp-learn-layout {
	display: grid;
	grid-template-columns: minmax(0, 30%) minmax(0, 70%);
	gap: 2.5rem;
	align-items: stretch;
	padding: 0 clamp(0.8rem, 2.4vw, 1.6rem);
}

.cfp-learn-menu {
	display: flex;
	flex-direction: column;
	gap: 1rem;
	padding: 1.15rem;
	border-radius: 20px;
	border: 1px solid rgba(191, 210, 230, 0.72);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.12) 0%, rgba(255, 255, 255, 0.06) 100%);
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
	color: #fff;
}

.cfp-learn-menu-kicker {
	margin: 0;
	color: rgba(227, 239, 252, 0.75);
	font-size: 0.86rem;
	font-weight: 800;
	letter-spacing: 0.04em;
}

.cfp-learn-menu h2 {
	margin: 0;
	color: #fff;
	font-size: clamp(1.2rem, 1.8vw, 1.5rem);
	line-height: 1.2;
}

.cfp-learn-menu-nav {
	display: grid;
	gap: 0.65rem;
}

.cfp-learn-menu-empty {
	margin: 0;
	color: rgba(227, 239, 252, 0.8);
	line-height: 1.5;
}

.cfp-learn-menu-item {
	display: flex;
	align-items: center;
	gap: 0.75rem;
	padding: 0.9rem 1rem;
	border-radius: 16px;
	border: 1px solid rgba(191, 210, 230, 0.55);
	background: rgba(255, 255, 255, 0.08);
	color: #f4f8fc;
	text-decoration: none;
	font-weight: 700;
	line-height: 1.2;
	transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.cfp-learn-menu-item:hover,
.cfp-learn-menu-item:focus {
	background: rgba(255, 255, 255, 0.14);
	border-color: rgba(210, 229, 246, 0.84);
	transform: translateX(3px);
	text-decoration: none;
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

.cfp-learn-menu-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	flex: 0 0 2rem;
	width: 2rem;
	height: 2rem;
	border-radius: 999px;
	background: rgba(255, 255, 255, 0.16);
	color: #fff;
	font-size: 0.95rem;
	font-weight: 900;
}

.cfp-learn-content {
	display: grid;
	gap: 1rem;
	align-content: start;
}

.cfp-learn-content-head {
	display: flex;
	flex-direction: column;
	gap: 0.25rem;
	padding: 0 0 0.1rem;
}

.cfp-learn-content-head h2 {
	margin: 0;
	color: #ffffff;
	font-size: clamp(1.2rem, 1.8vw, 1.5rem);
	line-height: 1.2;
}

.cfp-learn-content-head .cfp-learn-menu-kicker {
	color: rgba(227, 239, 252, 0.75);
}

.cfp-featured-links {
	width: 100%;
	box-sizing: border-box;
}

.cfp-featured-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 1rem;
}

.cfp-featured-links--menu {
	padding: 0;
}

.cfp-featured-card {
	display: flex;
	flex-direction: column;
	gap: 0.7rem;
	min-height: 170px;
	padding: 1.05rem 1rem;
	border-radius: 18px;
	border: 1px solid rgba(191, 210, 230, 0.95);
	background:
		linear-gradient(180deg, rgba(255, 255, 255, 0.97) 0%, rgba(244, 250, 255, 0.97) 100%),
		linear-gradient(135deg, rgba(16, 67, 116, 0.05) 0%, rgba(52, 126, 194, 0.08) 100%);
	color: #183a5c;
	text-decoration: none;
	box-shadow: 0 14px 32px rgba(12, 45, 78, 0.11);
	position: relative;
	overflow: hidden;
	transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.cfp-featured-card::before {
	content: "";
	position: absolute;
	inset: 0 auto 0 0;
	width: 4px;
	background: linear-gradient(180deg, #2c72b8 0%, #0f4a7e 100%);
	opacity: 0.9;
}

.cfp-featured-card h3 {
	margin: 0;
	font-size: 1.08rem;
	line-height: 1.28;
	color: #11385e;
}

.cfp-featured-card p {
	margin: 0;
	font-size: 0.96rem;
	line-height: 1.5;
	color: #496483;
}

.cfp-featured-more {
	margin-top: auto;
	display: inline-flex;
	align-items: center;
	width: fit-content;
	padding: 0.4rem 0.72rem;
	border-radius: 999px;
	background: linear-gradient(180deg, #e8f2fb 0%, #d8e8f7 100%);
	color: #1f4d78;
	font-size: 0.8rem;
	font-weight: 800;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
}

.cfp-featured-card:hover,
.cfp-featured-card:focus {
	transform: translateY(-3px);
	box-shadow: 0 18px 40px rgba(11, 45, 80, 0.16);
	border-color: #9eb9d2;
	text-decoration: none;
}

.cfp-apps-section {
	padding: clamp(1.7rem, 3.3vw, 2.8rem) 0;
	background: linear-gradient(180deg, #edf3f9 0%, #e6edf6 100%);
}

.cfp-apps-shell {
	width: 100%;
	max-width: none;
	padding: 0 clamp(0.8rem, 2.4vw, 1.6rem);
}

.cfp-apps-head {
	margin-bottom: 0.8rem;
}

.cfp-apps-head h2 {
	margin: 0;
	color: #163c61;
	font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.cfp-apps-grid {
	display: grid;
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 0.6rem;
}

.cfp-app-card {
	border: 1px solid #cedae8;
	border-radius: 12px;
	overflow: hidden;
	background: #fff;
	box-shadow: 0 10px 22px rgba(12, 45, 78, 0.08);
	height: 86px;
}

.cfp-app-link {
	position: relative;
	display: block;
	padding-left: 56px;
	height: 100%;
	min-height: 0;
	text-decoration: none;
	background: #fff;
	overflow: hidden;
}

.cfp-app-media {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	display: block;
	width: 56px;
	background: #dfe9f3;
	overflow: hidden;
}

.cfp-app-link img {
	display: block;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 180ms ease;
}

.cfp-app-fallback-image {
	object-fit: cover;
	object-position: center;
	filter: saturate(0.88) contrast(0.98);
}

.cfp-app-media::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(9, 32, 55, 0.24);
	transition: background 180ms ease;
	pointer-events: none;
}

.cfp-app-link:hover img,
.cfp-app-link:focus img {
	transform: scale(1.02);
}

.cfp-app-link:hover .cfp-app-media::after,
.cfp-app-link:focus .cfp-app-media::after {
	background: rgba(9, 32, 55, 0.3);
}

.cfp-app-card.no-image .cfp-app-media::after {
	background: rgba(9, 32, 55, 0.45);
}

.cfp-app-title {
	position: relative;
	z-index: auto;
	padding: 0.45rem 0.55rem;
	flex: 1 1 auto;
	min-width: 0;
	width: auto;
	text-align: left;
	background: #fff;
	display: flex;
	align-items: center;
	overflow: hidden;
}

.cfp-app-title-text {
	display: -webkit-box;
	max-width: 100%;
	padding: 0;
	border-radius: 0;
	background: transparent;
	color: #163c61;
	font-size: 0.92rem;
	font-weight: 800;
	line-height: 1.28;
	letter-spacing: 0.01em;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.cfp-app-card.no-image .cfp-app-title-text {
	background: transparent;
	color: #163c61;
}

.search-page-content{
	padding: clamp(1.9rem, 3.5vw, 2.8rem) 0 clamp(2.6rem, 4.6vw, 3.8rem);
}

.cfp-news-section {
	position: relative;
	margin-top: clamp(1.2rem, 2.6vw, 2rem);
	padding: clamp(1.9rem, 3.5vw, 2.8rem) 0 clamp(2.6rem, 4.6vw, 3.8rem);
	background: linear-gradient(180deg, #f2f6fb 0%, #e8eff7 100%);
	border-top: 1px solid #c8d6e5;
}

.cfp-news-shell {
	width: 100%;
	max-width: none;
	/* padding: 0 clamp(0.8rem, 2.4vw, 1.6rem); */
}

.cfp-news-head {
	margin-bottom: 1rem;
}

.cfp-news-head h2 {
	margin: 0;
	color: #15395c;
	font-size: clamp(1.45rem, 2.2vw, 2rem);
}

.cfp-news-title-mobile {
	display: none;
}

.cfp-news-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 0.8rem;
	align-items: flex-end;
	margin-bottom: 1rem;
	padding: 0.9rem;
	border: 1px solid #cedbe8;
	border-radius: 12px;
	background: #fff;
}

.cfp-news-filter-item {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	min-width: 180px;
}

.cfp-news-filter-item label {
	font-size: 0.82rem;
	font-weight: 700;
	color: #2a4868;
}

.cfp-news-filter-item select {
	height: 40px;
	border-radius: 8px;
	padding: 0 0.65rem;
	border: 1px solid #c9d7e6;
	background: #fff;
}

.cfp-news-filter-actions {
	display: flex;
	gap: 0.5rem;
	margin-left: auto;
}

.cfp-news-filter-actions .button {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

.cfp-news-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 0.9rem;
}

@media (min-width: 1600px) {
	.cfp-news-grid {
		grid-template-columns: repeat(3, minmax(0, 1fr));
	}
}

.cfp-news-card {
	display: flex;
	flex-direction: column;
	padding: 1rem;
	border: 1px solid #cedbe8;
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 10px 24px rgba(12, 45, 78, 0.08);
}

.cfp-news-title {
	margin: 0;
	font-size: 1.18rem;
	line-height: 1.3;
}

.cfp-news-title a {
	color: #12385d;
	text-decoration: none;
}

.cfp-news-title a:hover,
.cfp-news-title a:focus {
	text-decoration: underline;
}

.cfp-news-meta {
	margin: 0.6rem 0 0;
	font-size: 0.86rem;
	color: #5a6f86;
}

.cfp-news-excerpt {
	margin: 0.7rem 0 0;
	color: #425c78;
	font-size: 0.95rem;
	line-height: 1.5;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.cfp-news-read-more-wrap {
	margin-top: auto;
	padding-top: 0.6rem;
}

.cfp-news-read-more {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.34rem 0.62rem;
	border-radius: 999px;
	background: #e6f0fa;
	color: #1a4870;
	font-size: 0.85rem;
	font-weight: 700;
	text-decoration: none;
}

.cfp-news-read-more:hover,
.cfp-news-read-more:focus {
	background: #dceaf8;
	text-decoration: none;
}

.cfp-news-info {
	margin-top: 1rem;
	padding: 0.9rem 1rem;
	border: 1px solid #cad8e6;
	border-radius: 12px;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.8rem;
}

.cfp-news-info p {
	margin: 0;
	color: #2a4968;
	font-weight: 600;
}

.cfp-news-info .button {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	white-space: nowrap;
}

.cfp-news-shell .page-numbers {
	list-style: none;
	margin: 1rem 0 0;
	padding: 0;
	display: flex;
	flex-wrap: wrap;
	gap: 0.45rem;
}

.cfp-news-shell .page-numbers li {
	list-style: none;
	margin: 0;
	padding: 0;
}

.cfp-news-shell .page-numbers a,
.cfp-news-shell .page-numbers span {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 2.05rem;
	height: 2.05rem;
	padding: 0 0.58rem;
	border: 1px solid #bcd0e4;
	border-radius: 8px;
	background: #fff;
	color: #1a4870;
	font-weight: 700;
	text-decoration: none;
}

.cfp-news-shell .page-numbers a:hover,
.cfp-news-shell .page-numbers a:focus {
	background: #e8f1fb;
	border-color: #99bbdb;
	text-decoration: none;
}

.cfp-news-shell .page-numbers .current {
	background: #155fa4;
	border-color: #155fa4;
	color: #fff;
}

.cfp-news-shell .page-numbers .dots {
	border-color: transparent;
	background: transparent;
	color: #5a7593;
	min-width: auto;
	padding: 0 0.3rem;
}

@media (max-width: 782px) {
	body.article-search-results .site-main > .content-container.cfp-news-section,
	body.article-search-results .content-container.cfp-news-section {
		width: 100%;
		max-width: none;
		margin: 0;
		padding-left: 0;
		padding-right: 0;
	}

	body.article-search-results .cfp-news-section {
		background: transparent;
		border-top: 0;
		padding-top: 0.85rem;
	}

	body.article-search-results .cfp-news-shell {
		padding-left: 0.8rem;
		padding-right: 0.8rem;
	}
}

@media (max-width: 782px) {
	.cfp-new-hero {
		background-image: none !important;
		background-color: #0f2236;
	}

	.cfp-new-hero {
		min-height: auto;
		align-items: flex-start;
		padding: 1rem;
	}

	.cfp-new-hero-overlay {
		padding: 0.95rem;
	}

	.cfp-new-title {
		font-size: clamp(1.7rem, 9vw, 2.6rem);
	}

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

	.cfp-leadership-grid {
		grid-template-columns: 1fr;
	}

	.cfp-preview-cards-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cfp-preview-card {
		height: 150px;
	}

	.cfp-preview-layout {
		grid-template-columns: 1fr;
	}

	.cfp-preview-media {
		display: none;
	}

	.cfp-preview-links h2 {
		max-width: none;
	}

	.cfp-preview-item {
		flex-direction: column;
	}

	.cfp-preview-link-more {
		align-self: flex-start;
	}

	.cfp-leadership-link {
		min-width: 0;
		height: 48px;
		padding: 0 0.85rem;
		font-size: 0.92rem;
	}

	.cfp-leader-card {
		display: grid;
		grid-template-columns: 120px 1fr;
		align-items: stretch;
		min-height: 0;
		border-radius: 14px;
	}

	.cfp-leader-image-wrap {
		position: relative;
		inset: auto;
		height: 100%;
		min-height: 160px;
	}

	.cfp-leader-image-wrap img {
		height: 100%;
		object-fit: cover;
		object-position: center;
	}

	.cfp-leader-info {
		position: relative;
		left: auto;
		right: auto;
		bottom: auto;
		margin: 0;
		padding: 0.75rem 0.85rem;
		border-radius: 0;
		background: #f8fbff;
		backdrop-filter: none;
		-webkit-backdrop-filter: none;
		border: 0;
		box-shadow: none;
	}

	.cfp-leader-role {
		color: #4b6378;
		text-shadow: none;
	}

	.cfp-leader-card h3 {
		color: #10283c;
		text-shadow: none;
	}

	.cfp-leader-meta {
		color: #2f3f4a;
		text-shadow: none;
	}

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

	.cfp-learn-layout {
		grid-template-columns: 1fr;
	}

	.cfp-learn-menu {
		padding: 1rem;
	}

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

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

	.cfp-app-card {
		height: auto;
		border-radius: 8px;
		box-shadow: none;
	}

	.cfp-app-link {
		display: flex;
		flex-direction: row;
		height: auto;
		min-height: 0;
		padding: 0.62rem 0.72rem;
		justify-content: flex-start;
		align-items: center;
		background: #fff;
	}

		.cfp-app-media {
			position: relative;
			top: auto;
			left: auto;
			bottom: auto;
			flex: 0 0 56px;
			width: 56px;
		}

		.cfp-app-media::after {
			display: none;
		}

	.cfp-app-link:hover,
	.cfp-app-link:focus {
		background: #fff;
	}

	.cfp-app-title {
		padding: 0;
		text-align: left;
		overflow: visible;
	}

	.cfp-app-title-text {
		max-width: none;
		padding: 0;
		background: transparent;
		color: #14385b;
		font-size: 0.92rem;
		font-weight: 600;
		line-height: 1.3;
		display: block;
		-webkit-line-clamp: unset;
		-webkit-box-orient: initial;
		overflow: visible;
		border-radius: 0;
	}

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

	.cfp-news-info {
		flex-direction: column;
		align-items: flex-start;
	}

	body.home:not(.article-search-results) .cfp-news-grid,
	body.home:not(.article-search-results) .cfp-news-info {
		display: none;
	}

	.cfp-news-title-desktop {
		display: none;
	}

	.cfp-news-title-mobile {
		display: inline;
	}
}

@media (max-width: 560px) {
	.cfp-leader-card {
		grid-template-columns: 104px 1fr;
	}

	.cfp-leader-image-wrap {
		min-height: 136px;
	}

	.cfp-leader-info {
		padding: 0.65rem 0.72rem;
	}

	.cfp-learn-grid {
		grid-template-columns: 1fr;
	}

	.cfp-preview-cards-grid {
		grid-template-columns: 1fr;
	}

	.cfp-preview-card {
		grid-template-columns: 40% 60%;
		height: 132px;
	}

	.cfp-preview-heading {
		font-size: clamp(1.2rem, 7vw, 1.6rem);
	}

	.cfp-preview-focus-section {
		padding: clamp(1.8rem, 4vw, 2.8rem) 0;
	}

	.cfp-preview-links {
		padding: 0.95rem;
		border-radius: 18px;
	}

	.cfp-preview-links ul {
		gap: 0.6rem;
	}

	.cfp-preview-item {
		padding: 0.75rem;
	}

	.cfp-preview-media {
		min-height: 250px;
		border-radius: 20px;
	}

	.cfp-featured-grid {
		grid-template-columns: 1fr;
	}

	.cfp-tilt-grid {
		grid-template-columns: 1fr;
	}

	.cfp-apps-grid {
		grid-template-columns: 1fr;
		gap: 0.45rem;
	}

	.cfp-app-link {
		padding: 0.56rem 0.64rem;
	}

	.cfp-app-title-text {
		font-size: 0.88rem;
	}

	.cfp-news-grid {
		grid-template-columns: 1fr;
	}

	.cfp-news-filter-actions {
		margin-left: 0;
	}

	.cfp-learn-panel {
		padding: 1.15rem 1rem 1.35rem;
	}

	.cfp-learn-column li {
		font-size: 0.96rem;
	}

	.cfp-leadership-title-wrap h2 {
		font-size: clamp(1.65rem, 10vw, 2.4rem);
	}

	.cfp-leadership-title-wrap p {
		font-size: 0.98rem;
	}
}

.cfp-top-slider-full {
	width: 100%;
	margin: 0 0 1rem;
	padding: 0;
	line-height: 0;
	overflow: hidden;
	border-radius: 1.6rem;
}

.cfp-hero-empty {
	margin: 0;
	padding: 1rem;
	border-radius: 1rem;
	background: rgba(255, 255, 255, 0.12);
	color: #fff;
	line-height: 1.45;
}

/* Smart Slider 3: keep it inside parent width (prevent force-full overflow). */
.cfp-top-slider-full ss3-force-full-width,
.cfp-top-slider-full .n2-section-smartslider,
.cfp-top-slider-full .n2-ss-align,
.cfp-top-slider-full .n2-padding,
.cfp-top-slider-full .n2-ss-slider {
	display: block;
	width: 100% !important;
	max-width: 100% !important;
	margin-left: 0 !important;
	margin-right: 0 !important;
	left: auto !important;
	right: auto !important;
}

.cfp-top-slider-full ss3-force-full-width {
	position: relative !important;
	display: block !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	left: 0 !important;
	right: 0 !important;
	transform: none !important;
}

.cfp-top-slider-full ss3-force-full-width > .n2-section-smartslider {
	position: relative !important;
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 !important;
	left: 0 !important;
	right: 0 !important;
	transform: none !important;
}

.cfp-top-slider-full .n2-ss-slide-limiter,
.cfp-top-slider-full .n2-ss-layer[data-sstype="content"],
.cfp-top-slider-full .n2-ss-section-main-content {
	width: 100% !important;
	max-width: 100% !important;
}

.cfp-top-slider-full .wppsac-wrap,
.cfp-top-slider-full .wppsac-post-slider,
.cfp-top-slider-full .slick-list,
.cfp-top-slider-full .slick-track {
	width: 100%;
	max-width: none;
}

.cfp-top-slider-full .wppsac-wrap {
	margin: 0;
	padding: 0;
}

.cfp-top-slider-full .wppsac-post-slides,
.cfp-top-slider-full .wppsac-post-content-position,
.cfp-top-slider-full .wppsac-post-image-bg {
	margin: 0;
}

.cfp-top-slider-full .wppsac-post-slider.design-4 .wppsac-post-list-content {
	background: transparent;
	border: 0;
}

.cfp-top-slider-full .wppsac-post-slider.design-4 .wppsac-post-image-bg {
	height: min(42vw, 460px);
	min-height: 220px;
	border-radius: 1.25rem;
	overflow: hidden;
}

.cfp-top-slider-full .wppsac-post-slider.design-4 .wppsac-post-image-bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cfp-top-slider-full .wppsac-post-slider.design-4 .wppsac-post-list-content .wp-medium-7 {
	padding: 1rem 2.2rem 1rem 1rem;
}

.cfp-top-slider-full .wppsac-post-slider.design-4 .wppsac-post-title a {
	font-size: clamp(1.05rem, 1.8vw, 1.45rem);
	line-height: 1.3;
}

.cfp-top-slider-full .wppsac-post-slider.design-4 .slick-arrow {
	top: 50% !important;
	bottom: auto !important;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	width: 38px;
	height: 56px;
	background: rgba(8, 24, 41, 0.7);
	border-radius: 0.95rem;
}

.cfp-top-slider-full .wppsac-post-slider.design-4 .slick-prev {
	left: 0 !important;
	right: auto !important;
}

.cfp-top-slider-full .wppsac-post-slider.design-4 .slick-next {
	right: 0 !important;
}

.cfp-top-slider-full .wppsac-post-slider.design-4 .slick-dots {
	left: 0 !important;
	right: 0 !important;
	bottom: 8px !important;
	text-align: center;
}

.clean-front-page .cfp-hero-shortcuts {
	display: grid;
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 0.75rem;
	margin-top: 1rem;
}

.clean-front-page .cfp-shortcut-card {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-height: 4.9rem;
	padding: 0.8rem;
	border-radius: 1.2rem;
	border: 1px solid rgba(255, 255, 255, 0.1);
	background: rgba(255, 255, 255, 0.1);
	color: #fff;
	text-align: center;
	text-decoration: none;
}

.clean-front-page .cfp-shortcut-card:hover,
.clean-front-page .cfp-shortcut-card:focus {
	background: rgba(255, 255, 255, 0.16);
	text-decoration: none;
}

.clean-front-page .cfp-shortcut-icon {
	font-size: 1.2rem;
	line-height: 1;
}

.clean-front-page .cfp-shortcut-label {
	margin-top: 0.55rem;
	font-size: 0.95rem;
	font-weight: 600;
}

.clean-front-page .cfp-hero-side {
	padding: 1.55rem;
	border-radius: 1.8rem;
	background: #f4f1f1;
	box-shadow: 0 20px 40px rgba(8, 24, 41, 0.16);
}

.clean-front-page .cfp-side-kicker {
	margin-bottom: 0.45rem;
	color: #27508c;
	font-size: 0.92rem;
	font-weight: 700;
}

.clean-front-page .cfp-side-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 1rem;
}

.clean-front-page .cfp-side-head h2 {
	margin: 0;
	color: #133a6d;
	font-size: clamp(1.55rem, 2vw, 2rem);
}

.clean-front-page .cfp-side-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 3rem;
	height: 3rem;
	border-radius: 1rem;
	background: #1c5494;
	color: #fff;
	font-weight: 700;
}

.clean-front-page .cfp-side-links {
	display: grid;
	gap: 0.72rem;
}

.clean-front-page .cfp-side-links a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding: 1rem 1.1rem;
	border-radius: 1rem;
	border: 1px solid #d5dce4;
	background: #eceef1;
	color: #243046;
	font-weight: 600;
	text-decoration: none;
}

.clean-front-page .cfp-side-links a::after {
	content: "β†’";
	color: #8ea0b7;
}

.clean-front-page .cfp-side-contact {
	margin-top: 1.45rem;
	padding: 1rem 1.1rem;
	border-radius: 1rem;
	background: #123d72;
	color: #fff;
}

.clean-front-page .cfp-side-contact-label {
	font-size: 0.9rem;
	opacity: 0.82;
}

.clean-front-page .cfp-side-contact a {
	display: inline-block;
	margin-top: 0.3rem;
	color: #fff;
	font-size: 2rem;
	font-weight: 700;
	text-decoration: none;
}

.clean-front-page .cfp-side-contact p {
	margin: 0.45rem 0 0;
	color: rgba(255, 255, 255, 0.82);
}

@media (max-width: 900px) {
	.clean-front-page .cfp-hero-shell {
		grid-template-columns: 1fr;
	}

	.clean-front-page .cfp-hero-shortcuts {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.cfp-top-slider-full .wppsac-post-slider.design-4 .wppsac-post-image-bg {
		height: 58vw;
		min-height: 220px;
	}

	.cfp-top-slider-full .wppsac-post-slider.design-4 .wppsac-post-list-content .wp-medium-7 {
		padding: 1rem;
	}
}

.clean-front-page {
	width: 100%;
	max-width: none;
	margin: 0;
	padding: 0;
	background: transparent;
}

body.home .site-main > .content-container.clean-front-page {
	margin-top: 0 !important;
	padding-top: 0 !important;
	padding-bottom: 0 !important;
	background: transparent !important;
}

.clean-front-page .cfp-hero-stage {
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding: clamp(2rem, 4vw, 3.5rem) clamp(1rem, 2.5vw, 2rem);
	background:
		radial-gradient(circle at top left, rgba(64, 110, 171, 0.45), transparent 32%),
		radial-gradient(circle at top right, rgba(108, 85, 152, 0.32), transparent 28%),
		linear-gradient(135deg, #163f74 0%, #123766 58%, #173f78 100%);
}

.clean-front-page .cfp-hero-shell {
	display: grid;
	grid-template-columns: minmax(0, 2.2fr) minmax(320px, 1fr);
	gap: 1.8rem;
	width: 100%;
	max-width: 1220px;
	margin: 0 auto;
	align-items: start;
}

.clean-front-page .cfp-hero-main {
	min-width: 0;
}

.clean-front-page .cfp-hero-slider-frame {
	padding: clamp(0.9rem, 1.8vw, 1.2rem);
	border-radius: 1.9rem;
	border: 1px solid rgba(255, 255, 255, 0.14);
	background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.clean-front-page .cfp-hero {
	padding: clamp(1.25rem, 3vw, 2rem);
	border-radius: 16px;
	background: linear-gradient(140deg, #0a7cc0 0%, #06558f 100%);
	color: #f6fbff;
	box-shadow: 0 16px 40px rgba(6, 41, 72, 0.25);
}

.clean-front-page .cfp-kicker {
	margin: 0 0 0.35rem;
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.07em;
	opacity: 0.88;
}

.clean-front-page .cfp-title {
	margin: 0;
	font-size: clamp(1.7rem, 3vw, 2.5rem);
	line-height: 1.15;
	color: inherit;
}

.clean-front-page .cfp-subtitle {
	margin: 0.8rem 0 0;
	max-width: 52ch;
	font-size: clamp(1rem, 1.4vw, 1.1rem);
	opacity: 0.92;
}

.clean-front-page .cfp-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.2rem;
}

.clean-front-page .cfp-actions .button {
	margin: 0;
}

.clean-front-page .cfp-section {
	margin-top: 0;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding: clamp(1.25rem, 3vw, 2rem) clamp(1rem, 2.5vw, 2rem);
	border-top: 1px solid rgba(18, 55, 90, 0.08);
}

.clean-front-page .cfp-section > * {
	width: 100%;
	max-width: var(--layout_width_content);
	margin-left: auto;
	margin-right: auto;
}

.clean-front-page .cfp-section:nth-of-type(1) {
	background: #f3f5f7;
}

.clean-front-page .cfp-section:nth-of-type(2) {
	background: #eceff2;
}

.clean-front-page .cfp-section:nth-of-type(3) {
	background: #f6f7f9;
}

.clean-front-page .cfp-section:nth-of-type(4) {
	background: #e8ecef;
}

.clean-front-page .cfp-section-head {
	margin-bottom: 0.8rem;
}

.clean-front-page .cfp-section-head h2 {
	margin: 0;
}

.clean-front-page .cfp-filters {
	display: flex;
	flex-wrap: nowrap;
	gap: 1rem;
	align-items: flex-end;
	margin-bottom: 1rem;
	padding: 0.9rem;
	border: 1px solid var(--color_content_border);
	border-radius: 10px;
	background: #fff;
	overflow-x: auto;
}

.clean-front-page .cfp-filter-item {
	display: flex;
	flex-direction: column;
	gap: 0.35rem;
	min-width: 180px;
	flex: 0 0 auto;
}

.clean-front-page .cfp-filter-item label {
	font-size: 0.8rem;
	font-weight: 700;
	color: #2a3f59;
}

.clean-front-page .cfp-filter-item select {
	height: 40px;
	border-radius: 8px;
	padding: 0 0.65rem;
	border: 1px solid #cfd9e6;
	background: #fff;
}

.clean-front-page .cfp-filter-item input {
	height: 40px;
	border-radius: 8px;
	padding: 0 0.65rem;
	border: 1px solid #cfd9e6;
	background: #fff;
}

.clean-front-page .cfp-filter-actions {
	display: flex;
	gap: 0.5rem;
	margin-left: auto;
	flex: 0 0 auto;
}

.clean-front-page .cfp-filter-actions .button {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
}

.clean-front-page .cfp-grid {
	display: grid;
	gap: 1rem;
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.clean-front-page .cfp-card {
	padding: 1rem 1.1rem;
	border: 1px solid var(--color_content_border);
	border-radius: 12px;
	background: #fff;
	box-shadow: 0 8px 24px rgba(20, 32, 51, 0.06);
}

.clean-front-page .cfp-card h2,
.clean-front-page .cfp-card h3 {
	margin-top: 0;
	margin-bottom: 0.45rem;
}

.clean-front-page .cfp-card p:last-child {
	margin-bottom: 0;
}

.clean-front-page .cfp-post .cfp-meta {
	margin-bottom: 0.6rem;
	font-size: 0.86rem;
	opacity: 0.8;
}

.clean-front-page .cfp-posts {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

.clean-front-page .cfp-post {
	display: flex;
	flex-direction: column;
	gap: 0.5rem;
}

.clean-front-page .cfp-post-title {
	margin: 0;
	font-size: 1.5rem;
	line-height: 1.25;
}

.clean-front-page .cfp-source {
	display: inline-flex;
	margin: 0;
	padding: 0.12rem 0.45rem;
	width: fit-content;
	border-radius: 999px;
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.05em;
	background: rgba(6, 85, 143, 0.12);
	color: #06558f;
}

.clean-front-page .cfp-post-title a {
	display: inline;
	overflow-wrap: anywhere;
	word-break: break-word;
}

.clean-front-page .cfp-excerpt {
	margin: 0;
	font-size: 0.96rem;
	line-height: 1.55;
	color: #3d4e62;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

.clean-front-page .cfp-read-more-wrap {
	margin-top: auto;
	padding-top: 0.35rem;
}

.clean-front-page .cfp-read-more {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	padding: 0.35rem 0.65rem;
	border-radius: 7px;
	font-size: 0.88rem;
	font-weight: 700;
	text-decoration: none;
	background: rgba(7, 89, 155, 0.12);
	color: #055998;
}

.clean-front-page .cfp-read-more .dashicons {
	width: 1em;
	height: 1em;
	font-size: 1em;
	line-height: 1;
}

.clean-front-page .cfp-read-more:hover {
	background: rgba(7, 89, 155, 0.2);
	text-decoration: none;
}

.clean-front-page .cfp-debug {
	margin-top: 0.75rem;
	font-size: 0.78rem;
}

.clean-front-page .cfp-debug summary {
	cursor: pointer;
	color: #5b6a7e;
}

.clean-front-page .cfp-debug pre {
	margin-top: 0.5rem;
	padding: 0.6rem;
	max-height: 180px;
	overflow: auto;
	background: #f6f8fb;
	border: 1px solid #dbe1ea;
	border-radius: 8px;
	white-space: pre-wrap;
	word-break: break-word;
}

.clean-front-page .cfp-post a {
	text-decoration: none;
}

.clean-front-page .cfp-post-title a:hover,
.clean-front-page .cfp-post-title a:focus {
	text-decoration: underline;
}

.clean-front-page .cfp-posts-info {
	margin-top: 1rem;
	padding: 0.9rem 1rem;
	border: 1px solid #cfe0f2;
	border-left: 4px solid #0b67a3;
	border-radius: 12px;
	background: linear-gradient(90deg, #f2f8ff 0%, #f8fbff 55%, #ffffff 100%);
	box-shadow: 0 8px 18px rgba(10, 35, 64, 0.06);
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 0.9rem;
}

.clean-front-page .cfp-posts-info p {
	margin: 0;
	color: #1f4467;
	font-size: 0.95rem;
	font-weight: 600;
	letter-spacing: 0.01em;
}

.clean-front-page .cfp-posts-info .button {
	display: inline-flex;
	align-items: center;
	gap: 0.35rem;
	white-space: nowrap;
	padding-left: 0.9rem;
	padding-right: 1rem;
}

.clean-front-page .cfp-page-content {
	padding: 1rem 1.1rem;
	border: 1px solid var(--color_content_border);
	border-radius: 12px;
	background: #fff;
}

.clean-front-page .cfp-tools-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

.clean-front-page .cfp-tool-card {
	padding: 0;
	border: 1px solid var(--color_content_border);
	border-radius: 12px;
	background: #fff;
	overflow: hidden;
	box-shadow: 0 8px 20px rgba(20, 32, 51, 0.06);
}

.clean-front-page .cfp-tool-link {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	aspect-ratio: 16 / 10;
	background: #f4f7fb;
	isolation: isolate;
	text-decoration: none;
}

.clean-front-page .cfp-tool-link img {
	display: block;
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 180ms ease;
}

.clean-front-page .cfp-tool-link::after {
	content: "";
	position: absolute;
	inset: 0;
	background: rgba(10, 28, 48, 0.34);
	z-index: 1;
	transition: background 180ms ease;
}

.clean-front-page .cfp-tool-link:hover img,
.clean-front-page .cfp-tool-link:focus img {
	transform: scale(1.03);
}

.clean-front-page .cfp-tool-link:hover::after,
.clean-front-page .cfp-tool-link:focus::after {
	background: rgba(10, 28, 48, 0.42);
}

.clean-front-page .cfp-tool-card.no-image .cfp-tool-link {
	padding: 1rem;
	min-height: 9rem;
	background: linear-gradient(145deg, #f6f9fd 0%, #edf3f9 100%);
}

.clean-front-page .cfp-tool-card.no-image .cfp-tool-link::after {
	background: rgba(255, 255, 255, 0.78);
}

.clean-front-page .cfp-tool-title {
	position: relative;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	padding: 1rem;
	text-align: center;
	font-size: 0.95rem;
	font-weight: 700;
	line-height: 1.28;
	color: #fff;
}

.clean-front-page .cfp-tool-title-text {
	display: block;
	max-width: 92%;
	padding: 0.65rem 0.85rem;
	border-radius: 10px;
	background: rgba(10, 28, 48, 0.68);
	box-shadow: 0 8px 18px rgba(10, 28, 48, 0.18);
	overflow-wrap: anywhere;
	word-break: break-word;
}

.clean-front-page .cfp-tool-card.no-image .cfp-tool-title {
	color: #173b5f;
}

.clean-front-page .cfp-tool-card.no-image .cfp-tool-title-text {
	background: rgba(255, 255, 255, 0.92);
	box-shadow: 0 8px 18px rgba(23, 59, 95, 0.1);
}

@media (max-width: 879px) {
	.clean-front-page .cfp-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.clean-front-page .cfp-post-title {
		font-size: 1.3rem;
	}

	.clean-front-page .cfp-filters {
		gap: 0.75rem;
	}

	.clean-front-page .cfp-posts-info {
		flex-direction: column;
		align-items: flex-start;
	}
}

@media (max-width: 639px) {
	.clean-front-page .cfp-grid {
		grid-template-columns: 1fr;
	}
}

/* Keep original header-info row hidden (tools are in light strip) */
.header-info-widgets-container {
	display: none;
}

.footer-minimal-bar {
	background: var(--header-brand-900);
	color: #fff;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	padding: 0;
	min-height: var(--fixed-light-strip-h);
}

.footer-minimal-inner {
	max-width: none;
	min-height: var(--fixed-light-strip-h);
	margin: 0 auto;
	padding: 0 2rem;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem;
	box-sizing: border-box;
}

.footer-area-site-info.footer-minimal-bar .site-info-inner,
.footer-area-site-info.footer-minimal-bar {
	border: 0;
	box-shadow: none;
}

.footer-area-site-info.footer-minimal-bar,
.footer-area-site-info.footer-minimal-bar .site-info-inner,
.footer-area-site-info.footer-minimal-bar .footer-minimal-inner {
	display: block;
	width: 100%;
}

.footer-area-site-info.footer-minimal-bar .site-info-inner {
	background: transparent;
	padding-top: 0;
	padding-bottom: 0;
}

.footer-minimal-brand,
.footer-minimal-links {
	display: flex;
	align-items: center;
	gap: 0.75rem;
}

.footer-minimal-dot {
	width: 0.55rem;
	height: 0.55rem;
	border-radius: 999px;
	background: var(--header-accent);
	flex: 0 0 auto;
}

.footer-minimal-title {
	margin: 0;
	font-size: 0.94rem;
	font-weight: 600;
	line-height: 1.2;
}

.footer-minimal-links {
	margin-left: auto;
	font-size: 0.88rem;
	line-height: 1.2;
}

.footer-minimal-links a {
	color: rgba(255, 255, 255, 0.95);
	text-decoration: none;
}

.footer-minimal-links a:hover,
.footer-minimal-links a:focus {
	color: #fff;
	text-decoration: underline;
}

.footer-minimal-separator {
	opacity: 0.5;
}

@media (max-width: 900px) {
	.footer-minimal-inner {
		flex-direction: column;
		align-items: flex-start;
	}

	.footer-minimal-links {
		margin-left: 0;
	}
}

@media (max-width: 782px) {
	.header-light-strip-inner,
	.app-header-inner,
	.footer-minimal-inner {
		padding-left: 1rem;
		padding-right: 1rem;
	}
}

/* Contact Page: Group + Supervisor Formatting */
.contact-page-layout {
	width: 100%;
	max-width: 100%;
	margin-left: 0;
	margin-right: 0;
}

.contact-page-layout .entry-content .contact-page-map {
	margin: 0 0 1rem;
}

.contact-page-layout .entry-content .contact-page-map iframe {
	display: block;
	width: 100%;
	height: 420px;
	border: 0;
}

.contact-page-layout .entry-content > ul {
	margin: 0;
	padding: 0;
	list-style: none;
}

.contact-page-layout .entry-content > ul > li.contact-group-header {
	margin: 0 0 1rem;
	padding: 0.75rem 0;
	list-style: none;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.contact-page-layout .entry-content > ul > li.contact-group-header > strong {
	display: inline;
	margin-bottom: 0;
	color: #123c62;
	font-size: 1.15rem;
	line-height: 1.35;
}

.contact-page-layout .entry-content > ul > li.contact-group-header > ul {
	margin: 0.3rem 0 0;
	padding: 0;
	list-style: none;
	border-top: 1px solid #d5deea;
}

.contact-page-layout .entry-content > ul > li.contact-group-header > ul > li {
	margin: 0.35rem 0 0;
	padding: 0.3rem 0 0.05rem 1rem;
	list-style: none;
}

.contact-page-layout .entry-content > ul > li.contact-group-header > ul > li > strong {
	display: inline;
	margin-bottom: 0;
	color: #1f4569;
}

.contact-page-layout .entry-content > ul > li.contact-group-header > ul > li > ul {
	margin: 0.25rem 0 0 1.4rem;
	padding: 0;
	list-style: none;
}

.contact-page-layout .entry-content > ul > li.contact-group-header > ul > li > ul > li {
	margin: 0.2rem 0 0;
	padding: 0;
	list-style: none;
}

.contact-page-layout .entry-content .contact-meta {
	display: grid;
	grid-template-columns: auto 1fr;
	column-gap: 0.35rem;
	row-gap: 0;
	margin: 0.15rem 0;
	font-size: 0.9rem;
	line-height: 1.3;
}

.contact-page-layout .entry-content .contact-meta dt {
	margin: 0;
	font-weight: 700;
}

.contact-page-layout .entry-content .contact-meta dd {
	margin: 0;
}

.contact-page-layout .entry-content p:empty {
	display: none;
	margin: 0;
}





.page-footer{
	background-color: #0b2f5b;
	padding: 3rem 0 2.5rem;
}
.page-copyright{
	background-color: #09284d;
	padding: 1rem 0;
}

.content {
	width: 100%;
	max-width: var(--layout_width_content);
	margin-left: auto;
	margin-right: auto;
}

.page-footer>.content, .page-copyright>.content {
	width: 100%;
	max-width: var(--layout_width_content);
	margin-left: auto;
	margin-right: auto;
	color: rgb(255 255 255 / 0.75);
}

.footer-demo-grid {
	display: grid;
	grid-template-columns: 1.1fr .9fr .9fr 1.15fr;
	gap: 2rem 3rem;
}

.footer-demo-brand h3,
.footer-demo-column h4 {
	margin: 0;
	color: #fff;
}

.footer-demo-brand {
	color: rgba(255, 255, 255, 0.78);
}

.footer-demo-heading {
	display: flex;
	flex-direction: column;
	gap: 0.2rem;
}

.footer-demo-heading p,
.footer-demo-copy,
.footer-demo-column ul,
.footer-demo-column li {
	margin: 0;
}

.footer-demo-badge {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.7rem;
	height: 2.7rem;
	margin-bottom: 1rem;
	border-radius: 0.95rem;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.14);
	color: #fff;
	font-weight: 700;
}

.footer-demo-copy {
	margin-top: 1rem;
	max-width: 26rem;
	line-height: 1.45;
}

.footer-demo-column ul {
	list-style: none;
	padding: 0;
	margin-top: 1rem;
}

.footer-demo-column li + li {
	margin-top: 0.7rem;
}

.footer-demo-column a {
	color: rgba(255, 255, 255, 0.8);
	text-decoration: none;
}

.footer-demo-column a:hover,
.footer-demo-column a:focus {
	color: #fff;
	text-decoration: underline;
}

.footer-demo-social {
	display: flex;
	gap: 0.45rem;
	margin-top: 1.2rem;
}

.footer-demo-social a {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 2.35rem;
	height: 2.35rem;
	border-radius: 0.85rem;
	background: rgba(255, 255, 255, 0.1);
	border: 1px solid rgba(255, 255, 255, 0.12);
	color: #fff;
	text-decoration: none;
}

.page-copyright > .content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1rem 2rem;
}

.copyright-links {
	display: flex;
	align-items: center;
	gap: 1rem;
	margin-left: auto;
	color: rgb(255 255 255 / 0.75)
}

.copyright-links a {
	color: rgba(255, 255, 255, 0.82);
	text-decoration: none;
}

.copyright-links a:hover,
.copyright-links a:focus {
	color: #fff;
	text-decoration: underline;
}

@media (max-width: 900px) {
	.footer-demo-grid {
		grid-template-columns: 1fr;
		gap: 1.75rem;
	}

	.page-copyright > .content {
		flex-direction: column;
		align-items: flex-start;
	}

	.copyright-links {
		margin-left: 0;
		flex-wrap: wrap;
	}
}

@media (max-width: 782px) {
	body.has-mobile-bar {
		padding-bottom: 0 !important;
	}

	.page-footer {
		padding-top: 3.4rem;
		padding-bottom: 2.8rem;
	}

	.page-footer > .content,
	.page-copyright > .content {
		padding-left: 1rem;
		padding-right: 1rem;
	}
}

/* Keep a single underline for content links (some inherited styles add border-bottom too). */
.entry-content a,
.page-content a,
.comment-content a {
	border-bottom: 0 !important;
	box-shadow: none;
	text-decoration: underline;
}

/* Single post layout: override parent's fixed-width entry column. */
@media (min-width: 55em) {
	.single-post .entry {
		float: none !important;
		width: 100% !important;
		max-width: 100% !important;
		margin-left: 0 !important;
		margin-right: 0 !important;
	}
}

/* Archive listing: force 3-column card layout on desktop. */
.archive-three-cols #posts.posts-list {
	display: grid !important;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 1.5rem;
}

.archive-three-cols #posts.posts-list > article {
	float: none;
	width: auto !important;
	margin: 0;
	clear: none !important;
}

@media (max-width: 1100px) {
	.archive-three-cols #posts.posts-list {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 720px) {
	.archive-three-cols #posts.posts-list {
		grid-template-columns: 1fr;
	}
}
