:root {
	--color-sss-red: #e30613;
	--color-sss-red-dark: #b8050f;
	--color-ocean: #005b8f;
	--color-ocean-dark: #003d5c;
	--color-aqua: #00a8cc;
	--color-aqua-light: #e8f7fb;
	--color-navy: #0a2540;
	--color-text: #1a2b3c;
	--color-muted: #5a6b7d;
	--color-bg: #ffffff;
	--color-bg-alt: #f4f9fc;
	--color-border: #d8e6ef;
	--shadow-sm: 0 2px 8px rgba(10, 37, 64, 0.08);
	--shadow-md: 0 8px 24px rgba(10, 37, 64, 0.12);
	--radius: 12px;
	--radius-lg: 20px;
	--container: 1200px;
	--header-height: 80px;
	--font-body: 'Inter', system-ui, sans-serif;
	--font-heading: 'Montserrat', 'Inter', sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
	margin: 0;
	font-family: var(--font-body);
	font-size: 1rem;
	line-height: 1.65;
	color: var(--color-text);
	background: var(--color-bg);
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--color-ocean); text-decoration-thickness: 1px; }
a:hover { color: var(--color-sss-red); }

h1, h2, h3, h4 {
	font-family: var(--font-heading);
	line-height: 1.25;
	color: var(--color-navy);
}

.container {
	width: min(100% - 2rem, var(--container));
	margin-inline: auto;
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	padding: 0;
	margin: -1px;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	border: 0;
}

/* Header */
.site-header-wrap {
	position: sticky;
	top: 0;
	z-index: 9999;
	background: rgba(255, 255, 255, 0.98);
	border-bottom: 1px solid var(--color-border);
	box-shadow: var(--shadow-sm);
}

.site-header {
	background: transparent;
	border-bottom: none;
	box-shadow: none;
	position: static;
	z-index: auto;
	backdrop-filter: none;
}

@media (min-width: 1025px) {
	.site-header-wrap {
		backdrop-filter: blur(8px);
	}

	.site-header-wrap .primary-navigation {
		border-top: 1px solid var(--color-border);
	}

	.site-header-wrap .primary-navigation-inner {
		display: flex;
		justify-content: center;
		padding: 0.35rem 0 0.65rem;
	}
}

.header-inner {
	display: flex;
	align-items: center;
	gap: 1.5rem;
	min-height: var(--header-height);
}

.site-branding a,
.site-logo-text {
	display: flex;
	flex-direction: column;
	text-decoration: none;
	line-height: 1.1;
}

.logo-sss {
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: 1.5rem;
	color: var(--color-sss-red);
	letter-spacing: 0.02em;
}

.logo-sub {
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--color-ocean);
	text-transform: uppercase;
	letter-spacing: 0.06em;
}

.custom-logo-link img { max-height: 56px; width: auto; }

.nav-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	gap: 0.5rem;
	min-width: 3.25rem;
	min-height: 3.25rem;
	padding: 0.5rem 0.85rem;
	margin-left: auto;
	background: var(--color-bg-alt);
	border: 2px solid var(--color-border);
	border-radius: var(--radius);
	cursor: pointer;
	color: var(--color-navy);
	font-family: var(--font-body);
	font-weight: 700;
	font-size: 0.875rem;
	line-height: 1;
}

.nav-toggle-box {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 5px;
	width: 1.5rem;
	height: 1.125rem;
}

.nav-toggle-box span {
	display: block;
	width: 100%;
	height: 3px;
	background: var(--color-navy);
	border-radius: 2px;
	transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle-text {
	display: none;
}

.nav-backdrop {
	display: none;
	position: fixed;
	inset: 0;
	background: rgba(10, 37, 64, 0.45);
	z-index: 9998;
}

.nav-backdrop.is-visible {
	display: block;
}

.primary-navigation {
	flex: 1;
}

.primary-navigation-inner {
	width: 100%;
}

.nav-menu {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 0.25rem 1rem;
	list-style: none;
	margin: 0;
	padding: 0;
}

.nav-menu .menu-item { position: relative; }

.nav-menu a,
.nav-menu .menu-label {
	display: block;
	padding: 0.5rem 0.65rem;
	font-size: 0.875rem;
	font-weight: 600;
	color: var(--color-navy);
	text-decoration: none;
	border-radius: 8px;
	cursor: pointer;
}

.nav-menu a:hover,
.nav-menu .menu-item:hover > .menu-label {
	color: var(--color-sss-red);
	background: var(--color-aqua-light);
}

.nav-menu .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 240px;
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	box-shadow: var(--shadow-md);
	padding: 0.5rem;
	list-style: none;
	z-index: 50;
}

.nav-menu .menu-item-has-children > .menu-label::after {
	content: '▾';
	margin-left: 0.35rem;
	font-size: 0.75em;
	opacity: 0.7;
}

/* Desktop dropdowns – hover only on devices with mouse */
@media (hover: hover) and (min-width: 1025px) {
	.nav-menu .menu-item-has-children:hover > .sub-menu,
	.nav-menu .sub-menu .menu-item-has-children:hover > .sub-menu {
		display: block;
	}
}

.nav-menu .sub-menu .sub-menu {
	top: 0;
	left: 100%;
}

.header-cta {
	display: flex;
	gap: 0.5rem;
	align-items: center;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0.75rem 1.25rem;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.9375rem;
	text-decoration: none;
	border: 2px solid transparent;
	transition: transform 0.15s, background 0.15s, color 0.15s;
	cursor: pointer;
}

.btn-sm { padding: 0.5rem 1rem; font-size: 0.8125rem; }

.btn-primary {
	background: var(--color-sss-red);
	color: #fff;
}
.btn-primary:hover {
	background: var(--color-sss-red-dark);
	color: #fff;
	transform: translateY(-1px);
}

.btn-outline {
	background: transparent;
	color: var(--color-ocean);
	border-color: var(--color-ocean);
}
.btn-outline:hover {
	background: var(--color-ocean);
	color: #fff;
}

.btn-outline-light {
	background: transparent;
	color: #fff;
	border-color: rgba(255,255,255,0.8);
}
.btn-outline-light:hover {
	background: #fff;
	color: var(--color-ocean);
}

/* Hero */
.hero {
	position: relative;
	min-height: clamp(280px, 42vw, 480px);
	background-size: cover;
	background-position: center;
	display: flex;
	align-items: flex-end;
}

.hero-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(135deg, rgba(10,37,64,0.82) 0%, rgba(0,91,143,0.55) 55%, rgba(227,6,19,0.25) 100%);
}

.hero-content {
	position: relative;
	padding: 3rem 0;
	color: #fff;
}

.hero-kicker {
	margin: 0 0 0.5rem;
	font-size: 0.875rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	opacity: 0.9;
}

.hero-title {
	margin: 0;
	font-size: clamp(2rem, 5vw, 3.25rem);
	color: #fff;
	text-shadow: 0 2px 12px rgba(0,0,0,0.25);
}

.hero-subtitle {
	margin: 0.75rem 0 0;
	font-size: clamp(1rem, 2vw, 1.25rem);
	max-width: 640px;
	opacity: 0.95;
}

/* Sections */
.section { padding: 4rem 0; }
.section-alt { background: var(--color-bg-alt); }

.section-header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 1rem;
	margin-bottom: 2rem;
	flex-wrap: wrap;
}

.section-header h2 { margin: 0; }

.link-more {
	font-weight: 600;
	text-decoration: none;
	white-space: nowrap;
}

.content-grid {
	display: grid;
	grid-template-columns: 1.2fr 1fr;
	gap: 2.5rem;
	align-items: start;
}

.intro-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 0.75rem;
	margin-top: 1.5rem;
}

.intro-badges {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
}

.badge-card {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	padding: 1.25rem;
	box-shadow: var(--shadow-sm);
	transition: transform 0.15s, box-shadow 0.15s;
}

.badge-card:hover {
	transform: translateY(-3px);
	box-shadow: var(--shadow-md);
}

.badge-icon { font-size: 1.75rem; display: block; margin-bottom: 0.5rem; }
.badge-card h3 { margin: 0 0 0.25rem; font-size: 1rem; }
.badge-card p { margin: 0; color: var(--color-muted); font-size: 0.875rem; }

/* Cards */
.card-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 1.5rem;
}

.card {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	display: flex;
	flex-direction: column;
	transition: transform 0.15s, box-shadow 0.15s;
}

.card:hover {
	transform: translateY(-4px);
	box-shadow: var(--shadow-md);
}

.card-image { overflow: hidden; aspect-ratio: 16/10; }
.card-image img { width: 100%; height: 100%; object-fit: cover; }

.card-image-placeholder {
	background: linear-gradient(135deg, var(--color-ocean), var(--color-aqua));
}

.card-body { padding: 1.25rem; flex: 1; display: flex; flex-direction: column; }

.card-meta {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--color-aqua);
	margin: 0 0 0.5rem;
}

.card-date { color: var(--color-sss-red); }

.card-title {
	margin: 0 0 0.5rem;
	font-size: 1.125rem;
}

.card-title a { color: var(--color-navy); text-decoration: none; }
.card-title a:hover { color: var(--color-sss-red); }

.card-excerpt {
	margin: 0 0 1rem;
	color: var(--color-muted);
	font-size: 0.9375rem;
	flex: 1;
}

.card-link {
	font-weight: 700;
	font-size: 0.875rem;
	text-decoration: none;
	margin-top: auto;
}

/* Page content */
.page-content .content-area,
.page-content .entry-content {
	max-width: 780px;
}

.page-content .entry-content > *:first-child { margin-top: 0; }

.entry-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 1.5rem 0;
}

.entry-content th,
.entry-content td {
	padding: 0.75rem 1rem;
	border: 1px solid var(--color-border);
	text-align: left;
}

.entry-content th {
	background: var(--color-ocean);
	color: #fff;
}

.event-date-badge {
	display: inline-block;
	background: var(--color-sss-red);
	color: #fff;
	padding: 0.35rem 0.85rem;
	border-radius: 999px;
	font-weight: 700;
	font-size: 0.875rem;
	margin-bottom: 1rem;
}

.back-link { margin-top: 2rem; }

/* Contact & Dons */
.contact-grid { grid-template-columns: 1.5fr 1fr; }

.info-box,
.donation-box {
	background: var(--color-bg-alt);
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	padding: 1.5rem;
	margin-top: 1.5rem;
}

.donation-box { max-width: 640px; }

.social-links { list-style: none; padding: 0; margin: 0; }
.social-links li { margin-bottom: 0.5rem; }

.text-muted { color: var(--color-muted); font-size: 0.875rem; }

/* CTA banner */
.section-cta { padding-bottom: 5rem; }

.cta-banner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 2rem;
	flex-wrap: wrap;
	background: linear-gradient(135deg, var(--color-ocean-dark), var(--color-ocean));
	color: #fff;
	padding: 2.5rem;
	border-radius: var(--radius-lg);
	box-shadow: var(--shadow-md);
}

.cta-banner h2 { color: #fff; margin: 0 0 0.5rem; }
.cta-banner p { margin: 0; opacity: 0.92; }

.cta-actions { display: flex; flex-wrap: wrap; gap: 0.75rem; }

.empty-state {
	color: var(--color-muted);
	font-style: italic;
	grid-column: 1 / -1;
}

/* Footer */
.site-footer {
	position: relative;
	background: var(--color-navy);
	color: rgba(255,255,255,0.88);
	margin-top: 0;
}

.footer-wave {
	height: 4px;
	background: linear-gradient(90deg, var(--color-sss-red), var(--color-aqua), var(--color-ocean));
}

.footer-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 2rem;
	padding: 3rem 0 2rem;
}

.footer-grid h3 {
	color: #fff;
	font-size: 1rem;
	margin: 0 0 0.75rem;
}

.footer-grid a { color: rgba(255,255,255,0.9); }
.footer-grid a:hover { color: var(--color-aqua); }

.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { margin-bottom: 0.4rem; }

.footer-bottom {
	border-top: 1px solid rgba(255,255,255,0.12);
	padding: 1rem 0 1.5rem;
	font-size: 0.875rem;
	opacity: 0.75;
}

/* Pagination */
.pagination {
	display: flex;
	justify-content: center;
	gap: 0.5rem;
	margin-top: 2rem;
}

.pagination .page-numbers {
	padding: 0.5rem 0.85rem;
	border-radius: 8px;
	border: 1px solid var(--color-border);
	text-decoration: none;
}

.pagination .current {
	background: var(--color-ocean);
	color: #fff;
	border-color: var(--color-ocean);
}

/* Legacy imported content styling */
.entry-content strong {
	color: var(--color-navy);
}

.entry-content ul,
.entry-content ol {
	padding-left: 1.25rem;
	margin: 1rem 0;
}

.entry-content li {
	margin-bottom: 0.35rem;
}

.entry-content hr {
	border: none;
	border-top: 2px solid var(--color-border);
	margin: 2rem 0;
}

/* Coach cards from imported content */
.page-coach .entry-content strong:first-child {
	display: block;
	margin-top: 1.5rem;
	padding: 1rem 1.25rem;
	background: linear-gradient(135deg, var(--color-bg-alt), #fff);
	border-left: 4px solid var(--color-sss-red);
	border-radius: 0 var(--radius) var(--radius) 0;
}

/* Comité page */
.page-comite .content-area,
.page-template-page-templates-comite-php .content-area,
.page-comite-section .comite-grid {
	max-width: none;
}

.page-comite .comite-grid,
.page-template-page-templates-comite-php .comite-grid,
.page-comite-section .comite-grid {
	grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
	gap: 1.25rem;
	margin: 0;
}

@media (min-width: 900px) {
	.page-comite .comite-grid,
	.page-template-page-templates-comite-php .comite-grid,
	.page-comite-section .comite-grid {
		grid-template-columns: repeat(3, 1fr);
	}
}

.page-comite .intro-lead,
.page-template-page-templates-comite-php .intro-lead,
.page-comite-section .intro-lead {
	font-size: 1.125rem;
	color: var(--color-muted);
	margin: 0 0 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--color-border);
}

.coach-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
	gap: 1.5rem;
	margin-top: 1rem;
}

.coach-intro {
	font-size: 1.125rem;
	color: var(--color-muted);
	margin: 0 0 2rem;
	padding-bottom: 1.5rem;
	border-bottom: 1px solid var(--color-border);
	max-width: 720px;
}

.coach-card {
	--coach-accent-color: var(--color-ocean);
	position: relative;
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius-lg);
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
	animation: coachFadeIn 0.55s ease-out both;
	animation-delay: var(--coach-delay, 0s);
}

.coach-card::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: var(--coach-accent-color);
}

.coach-card--ocean { --coach-accent-color: var(--color-ocean); }
.coach-card--aqua  { --coach-accent-color: var(--color-aqua); }
.coach-card--red   { --coach-accent-color: var(--color-sss-red); }
.coach-card--navy  { --coach-accent-color: var(--color-navy); }

.coach-card:hover {
	transform: translateY(-6px);
	box-shadow: var(--shadow-md);
	border-color: color-mix(in srgb, var(--coach-accent-color) 35%, var(--color-border));
}

.coach-card-header {
	display: flex;
	align-items: center;
	gap: 1rem;
	padding: 1.5rem 1.5rem 0.75rem;
}

.coach-avatar {
	flex-shrink: 0;
	width: 3.25rem;
	height: 3.25rem;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: var(--font-heading);
	font-weight: 800;
	font-size: 0.9375rem;
	color: #fff;
	background: linear-gradient(135deg, var(--coach-accent-color), color-mix(in srgb, var(--coach-accent-color) 60%, #fff));
	box-shadow: 0 4px 12px color-mix(in srgb, var(--coach-accent-color) 35%, transparent);
	transition: transform 0.3s ease;
}

.coach-card:hover .coach-avatar {
	transform: scale(1.08);
}

.coach-card h3 {
	margin: 0;
	font-size: 1.125rem;
	color: var(--color-navy);
	line-height: 1.3;
}

.coach-card-body {
	padding: 0 1.5rem 1.5rem;
}

.coach-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 0.4rem;
	margin-bottom: 1rem;
}

.coach-tag {
	display: inline-block;
	padding: 0.3rem 0.65rem;
	font-size: 0.75rem;
	font-weight: 600;
	color: var(--color-ocean-dark);
	background: var(--color-aqua-light);
	border-radius: 999px;
	border: 1px solid color-mix(in srgb, var(--color-aqua) 25%, transparent);
}

.coach-label {
	margin: 0 0 0.5rem;
	font-size: 0.75rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.06em;
	color: var(--color-muted);
}

.coach-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 0.35rem;
}

.coach-badge {
	display: inline-block;
	padding: 0.35rem 0.7rem;
	font-size: 0.8125rem;
	font-weight: 500;
	color: var(--color-navy);
	background: var(--color-bg-alt);
	border-left: 3px solid var(--coach-accent-color);
	border-radius: 0 6px 6px 0;
	transition: background 0.2s ease, transform 0.2s ease;
}

.coach-card:hover .coach-badge {
	background: color-mix(in srgb, var(--coach-accent-color) 8%, #fff);
}

@keyframes coachFadeIn {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@media (prefers-reduced-motion: reduce) {
	.coach-card {
		animation: none;
	}
	.coach-card:hover {
		transform: none;
	}
}

/* Legacy coach styles (imported content fallback) */
.coach-roles,
.coach-certs {
	margin: 0.5rem 0 0;
	padding-left: 1.1rem;
	font-size: 0.9375rem;
}

.comite-member {
	background: #fff;
	border: 1px solid var(--color-border);
	border-radius: var(--radius);
	padding: 1.25rem;
	border-top: 3px solid var(--color-sss-red);
	box-shadow: var(--shadow-sm);
}

.comite-member p {
	margin: 0;
}

.comite-member .role {
	font-size: 0.8125rem;
	font-weight: 600;
	color: var(--color-muted);
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.comite-member .name {
	font-size: 1.125rem;
	font-weight: 700;
	color: var(--color-navy);
	margin: 0.35rem 0 0.5rem;
}

.comite-member a {
	font-size: 0.875rem;
	word-break: break-all;
}

/* Dates cours – better list layout */
.page-dates-prochains-cours .entry-content ul {
	list-style: none;
	padding: 0;
}

.page-dates-prochains-cours .entry-content > ul > li,
.page-dates-prochains-cours .entry-content strong {
	background: var(--color-bg-alt);
	padding: 0.75rem 1rem;
	border-radius: var(--radius);
	margin-bottom: 0.5rem;
	display: block;
}

/* Animations */
@keyframes fadeUp {
	from { opacity: 0; transform: translateY(16px); }
	to { opacity: 1; transform: translateY(0); }
}

.section-intro,
.section-news,
.section-events {
	animation: fadeUp 0.6s ease-out both;
}

.section-news { animation-delay: 0.1s; }
.section-events { animation-delay: 0.2s; }

/* Improved hero on mobile */
@media (max-width: 640px) {
	.hero-content { padding: 2rem 0; }
	.header-inner { gap: 0.75rem; }
	.logo-sub { display: none; }
	.intro-badges { grid-template-columns: 1fr; }
	.section { padding: 2.5rem 0; }
}

@media (max-width: 1024px) {
	.site-header-wrap {
		backdrop-filter: none;
	}

	.site-header {
		backdrop-filter: none;
	}

	.header-cta { display: none; }

	.header-inner {
		gap: 0.75rem;
	}

	.nav-toggle {
		display: inline-flex;
		position: relative;
		z-index: 10001;
	}

	.nav-toggle-text {
		display: inline;
	}

	.nav-toggle[aria-expanded="true"] .nav-toggle-box span:nth-child(1) {
		transform: translateY(8px) rotate(45deg);
	}
	.nav-toggle[aria-expanded="true"] .nav-toggle-box span:nth-child(2) {
		opacity: 0;
	}
	.nav-toggle[aria-expanded="true"] .nav-toggle-box span:nth-child(3) {
		transform: translateY(-8px) rotate(-45deg);
	}

	.primary-navigation {
		position: fixed;
		top: 0;
		right: 0;
		bottom: 0;
		left: auto;
		width: min(100vw - 3rem, 360px);
		z-index: 10000;
		flex: none;
		background: #fff;
		padding: calc(var(--header-height) + 0.5rem) 1rem 2rem;
		overflow-y: auto;
		-webkit-overflow-scrolling: touch;
		transform: translateX(100%);
		transition: transform 0.28s ease;
		box-shadow: -8px 0 32px rgba(10, 37, 64, 0.18);
		visibility: hidden;
	}

	.primary-navigation.is-open {
		transform: translateX(0);
		visibility: visible;
	}

	body.nav-open {
		overflow: hidden;
	}

	body.nav-open .site-header {
		box-shadow: none;
	}

	.nav-menu {
		flex-direction: column;
		align-items: stretch;
		gap: 0.25rem;
	}

	.nav-menu a,
	.nav-menu .menu-label {
		padding: 0.85rem 1rem;
		font-size: 1rem;
		border-radius: var(--radius);
	}

	.nav-menu .menu-item-has-children > .menu-label {
		display: flex;
		align-items: center;
		justify-content: space-between;
		width: 100%;
		background: var(--color-bg-alt);
	}

	.nav-menu .menu-item-has-children > .menu-label::after {
		content: '+';
		font-size: 1.25rem;
		font-weight: 700;
		opacity: 0.6;
		margin-left: auto;
	}

	.nav-menu .menu-item-has-children.is-expanded > .menu-label::after {
		content: '−';
	}

	.nav-menu .sub-menu {
		position: static;
		display: none;
		box-shadow: none;
		border: none;
		padding: 0.25rem 0 0.25rem 0.75rem;
		margin: 0.25rem 0 0.5rem;
		background: transparent;
		border-left: 2px solid var(--color-aqua);
		border-radius: 0;
		min-width: 0;
	}

	.nav-menu .menu-item-has-children.is-expanded > .sub-menu {
		display: block;
	}

	.nav-menu .sub-menu .menu-label {
		background: transparent;
		font-size: 0.9375rem;
		padding: 0.65rem 0.85rem;
	}

	.nav-menu .sub-menu a {
		font-size: 0.9375rem;
		padding: 0.65rem 0.85rem;
	}

	.content-grid,
	.contact-grid {
		grid-template-columns: 1fr;
	}
}
