/* Artprintable — SuperPrintable-inspired free printables UI */

:root {
	--ap-ink: #1e293b;
	--ap-muted: #64748b;
	--ap-soft: #f8fafc;
	--ap-card: #ffffff;
	--ap-line: #e2e8f0;
	--ap-coral: #f67753;
	--ap-coral-dark: #e85d38;
	--ap-navy: #113954;
	--ap-sky: #e8f4f8;
	--ap-max: 1120px;
	--ap-radius: 18px;
	--ap-shadow: 0 8px 24px rgba(17, 57, 84, 0.08);
}

.ap-wrap {
	width: min(100% - 32px, var(--ap-max));
	margin-inline: auto;
}

.ap-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	gap: 8px;
	padding: 12px 22px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 15px;
	text-decoration: none !important;
	border: 2px solid transparent;
	transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.ap-btn:hover {
	transform: translateY(-1px);
}

.ap-btn--primary {
	background: var(--ap-coral);
	color: #fff !important;
	border-color: var(--ap-coral);
}

.ap-btn--primary:hover {
	background: var(--ap-coral-dark);
	border-color: var(--ap-coral-dark);
	color: #fff !important;
}

.ap-btn--ghost {
	background: #fff;
	color: var(--ap-navy) !important;
	border-color: var(--ap-line);
}

/* Hero */
.ap-hero {
	background: linear-gradient(165deg, #fff7f3 0%, #e8f4f8 55%, #f8fafc 100%);
	padding: 56px 0 48px;
	border-bottom: 1px solid var(--ap-line);
}

.ap-hero__eyebrow {
	margin: 0 0 12px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.04em;
	text-transform: uppercase;
	color: var(--ap-coral);
}

.ap-hero__title {
	margin: 0 0 16px;
	font-size: clamp(2rem, 4vw, 3rem);
	line-height: 1.15;
	letter-spacing: -0.03em;
	color: var(--ap-navy);
	max-width: 16ch;
}

.ap-hero__lead {
	margin: 0 0 24px;
	font-size: 1.125rem;
	line-height: 1.65;
	color: var(--ap-muted);
	max-width: 40rem;
}

.ap-hero__actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	margin-bottom: 28px;
}

.ap-hero__stats {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 18px;
	list-style: none;
	margin: 0;
	padding: 0;
	color: var(--ap-muted);
	font-size: 14px;
}

.ap-hero__stats strong {
	color: var(--ap-navy);
}

/* Category tiles */
.ap-cats {
	padding: 36px 0 12px;
	background: #fff;
}

.ap-cats__grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 14px;
}

.ap-cat-card {
	display: flex;
	flex-direction: column;
	gap: 6px;
	padding: 18px 16px;
	border-radius: var(--ap-radius);
	background: var(--ap-soft);
	border: 1px solid var(--ap-line);
	text-decoration: none !important;
	color: inherit;
	transition: box-shadow 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.ap-cat-card:hover {
	border-color: #fdbaa2;
	box-shadow: var(--ap-shadow);
	transform: translateY(-2px);
	color: inherit;
}

.ap-cat-card__icon {
	font-size: 1.5rem;
	line-height: 1;
}

.ap-cat-card__name {
	font-weight: 700;
	color: var(--ap-navy);
	font-size: 1rem;
}

.ap-cat-card__meta {
	font-size: 12px;
	color: var(--ap-muted);
}

.ap-trust {
	padding: 18px 0 8px;
}

.ap-trust__row {
	display: flex;
	flex-wrap: wrap;
	gap: 10px 22px;
	justify-content: center;
	font-size: 13px;
	font-weight: 600;
	color: var(--ap-muted);
}

/* Sections */
.ap-section {
	padding: 40px 0 16px;
}

.ap-section__head {
	display: grid;
	grid-template-columns: 1fr auto;
	grid-template-rows: auto auto;
	gap: 4px 16px;
	align-items: end;
	margin-bottom: 22px;
}

.ap-section__kicker {
	grid-column: 1 / -1;
	margin: 0;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ap-coral);
}

.ap-section__title {
	margin: 0;
	font-size: clamp(1.5rem, 2.5vw, 1.85rem);
	color: var(--ap-navy);
	letter-spacing: -0.02em;
}

.ap-section__more {
	font-weight: 700;
	font-size: 14px;
	color: var(--ap-coral) !important;
	text-decoration: none !important;
	white-space: nowrap;
}

.ap-grid {
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 20px;
}

.ap-card {
	background: var(--ap-card);
	border: 1px solid var(--ap-line);
	border-radius: var(--ap-radius);
	overflow: hidden;
	box-shadow: 0 2px 8px rgba(17, 57, 84, 0.04);
	display: flex;
	flex-direction: column;
	min-width: 0;
}

.ap-card__media {
	position: relative;
	display: block;
	aspect-ratio: 3 / 2;
	background: var(--ap-sky);
	overflow: hidden;
}

.ap-card__media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
	transition: transform 0.35s ease;
}

.ap-card:hover .ap-card__media img {
	transform: scale(1.04);
}

.ap-card__placeholder {
	display: block;
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, #ffe8d6, #e8f4f8);
}

.ap-card__badge {
	position: absolute;
	left: 10px;
	top: 10px;
	background: #fff;
	color: var(--ap-navy);
	font-size: 11px;
	font-weight: 800;
	padding: 4px 10px;
	border-radius: 999px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.ap-card__body {
	padding: 14px 14px 16px;
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 1;
}

.ap-card__cat {
	margin: 0;
	font-size: 12px;
	font-weight: 700;
	color: var(--ap-coral);
}

.ap-card__title {
	margin: 0;
	font-size: 1rem;
	line-height: 1.35;
	font-weight: 700;
}

.ap-card__title a {
	color: var(--ap-navy) !important;
	text-decoration: none !important;
}

.ap-card__title a:hover {
	color: var(--ap-coral) !important;
}

.ap-card__meta {
	margin: 0;
	font-size: 12px;
	color: var(--ap-muted);
}

.ap-card__cta {
	margin-top: auto;
	padding-top: 8px;
	font-size: 13px;
	font-weight: 700;
	color: var(--ap-coral) !important;
	text-decoration: none !important;
}

/* CTA band */
.ap-cta {
	margin: 32px 0 0;
	padding: 48px 0 56px;
	background: linear-gradient(160deg, #113954 0%, #1a4d6e 100%);
	color: #e8f4f8;
}

.ap-cta__inner {
	text-align: center;
	max-width: 640px;
}

.ap-cta h2 {
	margin: 0 0 12px;
	color: #fff;
	font-size: clamp(1.5rem, 3vw, 2rem);
}

.ap-cta p {
	margin: 0 0 18px;
	opacity: 0.9;
	line-height: 1.6;
}

.ap-cta__perks {
	list-style: none;
	margin: 0 0 24px;
	padding: 0;
	display: grid;
	gap: 8px;
	text-align: left;
	max-width: 420px;
	margin-inline: auto  ;
	margin-bottom: 24px;
}

.ap-cta__perks li {
	font-size: 14px;
	opacity: 0.95;
}

.ap-cta .ap-btn--primary {
	background: var(--ap-coral);
}

/* Single printable extras */
.ap-download-box {
	background: linear-gradient(160deg, #fff7f3, #e8f4f8);
	border: 1px solid var(--ap-line);
	border-radius: var(--ap-radius);
	padding: 22px 24px;
	margin: 0 0 28px;
}

.ap-download-box__label {
	margin: 0 0 6px;
	font-size: 12px;
	font-weight: 800;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: var(--ap-coral);
}

.ap-fine {
	font-size: 13px;
	color: var(--ap-muted);
}

/*
 * Home chrome = same as category/archive pages for logo + header.
 *
 * Important: do not target body.home .site-container globally.
 * Kadence places logo and navigation inside .site-container; zeroing
 * max-width/padding there (old full-bleed hack) shifted the logo only on home.
 */
body.home .entry-hero,
body.home article.page > .entry-header,
body.home .page-title-wrap {
	display: none !important;
}

/* Content shell only — never #masthead / #colophon */
body.home #primary.content-area > .content-container.site-container {
	/* match content-width-normal archives (theme var) */
	max-width: var(--global-content-width, 1290px);
	width: 100%;
	box-sizing: border-box;
}

/* “Made for” audience badges (was food media logos) */
body.home .kadence-column81208_ca7e20-0d img,
body.home .kadence-column81208_565b6b-66 img,
body.home .kadence-column81208_30e1f7-3c img,
body.home .kadence-column81208_730f02-8b img,
body.home .kadence-column81208_83f89e-98 img,
body.home .kadence-column81208_90cb40-ba img {
	max-height: 36px;
	width: auto;
	object-fit: contain;
	opacity: 0.75;
	filter: grayscale(1);
	margin-inline: auto;
}

body.home .kadence-column81208_ca7e20-0d img:hover,
body.home .kadence-column81208_565b6b-66 img:hover,
body.home .kadence-column81208_30e1f7-3c img:hover,
body.home .kadence-column81208_730f02-8b img:hover,
body.home .kadence-column81208_83f89e-98 img:hover,
body.home .kadence-column81208_90cb40-ba img:hover {
	opacity: 1;
	filter: none;
}

body.home #primary .content-wrap,
body.home #primary .entry-content-wrap {
	max-width: 100%;
	width: 100%;
}

/* Footer brand strip */
.ap-site-footer-note {
	text-align: center;
	font-size: 13px;
	color: var(--ap-muted);
	padding: 8px 16px 24px;
}

@media (max-width: 1000px) {
	.ap-cats__grid,
	.ap-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}
}

@media (max-width: 600px) {
	.ap-hero {
		padding: 36px 0 32px;
	}

	.ap-cats__grid,
	.ap-grid {
		grid-template-columns: 1fr;
	}

	.ap-section__head {
		grid-template-columns: 1fr;
	}
}

/* —— Category circle row (Kadence blocks on Home) —— */
body.home .ap-cat-circles .wp-block-kadence-column,
body.home .kadence-column81208_64daf8-ae,
body.home .kadence-column81208_fdb6bb-d7,
body.home .kadence-column81208_02d34c-1d,
body.home .kadence-column81208_0adb15-6f,
body.home .kadence-column81208_cb6b38-42,
body.home .kadence-column81208_c7e9cf-35 {
	position: relative;
}

body.home .ap-cat-circle-link {
	display: block;
	border-radius: 50%;
	overflow: hidden;
	line-height: 0;
	text-decoration: none !important;
	transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.home .ap-cat-circle-link:hover,
body.home .ap-cat-circle-link:focus-visible {
	transform: scale(1.04);
	outline: none;
}

body.home .ap-cat-circle-link img {
	display: block;
	width: 100%;
	height: auto;
}

/* Whole column (image + label) clickable via overlay */
body.home .kb-section-has-link .kb-section-link-overlay {
	z-index: 3;
	cursor: pointer;
}

body.home .kb-section-has-link .kt-inside-inner-col {
	position: relative;
	z-index: 1;
}

/* Category circle labels */
body.home .kadence-column81208_64daf8-ae h3,
body.home .kadence-column81208_fdb6bb-d7 h3,
body.home .kadence-column81208_02d34c-1d h3,
body.home .kadence-column81208_0adb15-6f h3,
body.home .kadence-column81208_cb6b38-42 h3,
body.home .kadence-column81208_c7e9cf-35 h3 {
	margin-top: 0.5rem !important;
	pointer-events: none;
}

/* Top category tiles hover */
body.home .kb-section-has-link {
	transition: transform 0.15s ease;
}

body.home .kb-section-has-link:hover {
	transform: translateY(-2px);
}

/* Layout polish: front page content breathing room */
body.home .entry-content > .wp-block-kadence-rowlayout:first-child,
body.home .entry-content > .kb-row-layout-wrap:first-child {
	margin-top: 0;
}

body.home .entry-content {
	padding-top: 0.5rem;
}

/* Keep primary nav readable */
.header-navigation .primary-menu-container > ul > li.menu-item > a {
	white-space: nowrap;
}

@media (max-width: 1100px) {
	.header-navigation .primary-menu-container > ul > li.menu-item > a {
		font-size: 15px;
		padding-left: 0.55em;
		padding-right: 0.55em;
	}
}

/* Archive cards stay tidy */
.entry.loop-entry {
	overflow: hidden;
}

.loop-entry .post-thumbnail img {
	width: 100%;
	height: auto;
	object-fit: cover;
}


/* Hide Limoncella lemon/floral corner decorations sitewide */
.lemon-footer-image:before,
.lemon-optin-image:before,
.floral-footer-image:before,
.floral-optin-image:before {
	content: none !important;
	display: none !important;
	background: none !important;
	width: 0 !important;
	height: 0 !important;
}

/* =========================================================
   Artprintable header chrome + hero v2
   ========================================================= */
:root {
	--ap-pink: #e11d72;
	--ap-pink-soft: #fce7f3;
	--ap-pink-deep: #be185d;
	--ap-ink-2: #0f172a;
	--ap-chip: #f8fafc;
}

/* —— Header: clean product-site chrome —— */
body.artprintable-site #masthead,
body #masthead {
	--ap-header-border: #f1f5f9;
}

body #masthead .site-top-header-wrap .site-header-row-container-inner {
	background: #fff7fb !important;
	border-bottom: 1px solid #fce7f3;
}

body #masthead .site-main-header-wrap .site-header-row-container-inner {
	background: #ffffff !important;
}

body #masthead .site-branding .site-title,
body #masthead .site-title {
	font-family: "Figtree", "Work Sans", system-ui, sans-serif !important;
	font-weight: 800 !important;
	font-size: 1.45rem !important;
	letter-spacing: -0.04em !important;
	text-transform: none !important;
	color: var(--ap-ink-2) !important;
}

body #masthead .site-branding .site-title:hover {
	color: var(--ap-pink) !important;
}

body #masthead .header-navigation .primary-menu-container > ul > li.menu-item > a {
	font-family: "Figtree", "Work Sans", system-ui, sans-serif !important;
	font-weight: 600 !important;
	font-size: 15px !important;
	color: #334155 !important;
	text-transform: none !important;
	letter-spacing: 0 !important;
}

body #masthead .header-navigation .primary-menu-container > ul > li.menu-item > a:hover,
body #masthead .header-navigation .primary-menu-container > ul > li.current-menu-item > a {
	color: var(--ap-pink) !important;
}

body #masthead .header-button.button,
body #masthead .header-button {
	background: var(--ap-pink) !important;
	border-color: var(--ap-pink) !important;
	color: #fff !important;
	border-radius: 999px !important;
	font-weight: 700 !important;
	font-size: 14px !important;
	padding: 10px 18px !important;
	text-transform: none !important;
	letter-spacing: 0 !important;
	box-shadow: 0 8px 20px rgba(225, 29, 114, 0.22);
}

body #masthead .header-button.button:hover,
body #masthead .header-button:hover {
	background: var(--ap-pink-deep) !important;
	border-color: var(--ap-pink-deep) !important;
	color: #fff !important;
}

body #masthead .header-html,
body #masthead .mobile-html {
	font-size: 13px !important;
	font-weight: 600 !important;
	color: #64748b !important;
}

body #masthead .header-html a {
	color: var(--ap-pink) !important;
	font-weight: 700 !important;
}

/* Soften old top yellow bar from Limoncella */
body #masthead .site-top-header-inner-wrap {
	min-height: 40px;
}


/* =========================================================
   Homepage hero — clean light layout
   ========================================================= */
.ap-hero {
	position: relative;
	isolation: isolate;
	padding: 36px 0 48px;
	margin: 0 0 8px;
	background: #ffffff;
	border-bottom: 1px solid #f1f5f9;
	overflow: hidden;
}

.ap-hero__glow {
	position: absolute;
	inset: 0;
	z-index: 0;
	pointer-events: none;
	background:
		radial-gradient(ellipse 50% 45% at 15% 20%, rgba(255, 236, 230, 0.55), transparent 70%),
		radial-gradient(ellipse 40% 40% at 90% 15%, rgba(232, 242, 252, 0.5), transparent 65%);
}

.ap-hero__shell {
	position: relative;
	z-index: 1;
	width: min(100% - 40px, 1120px);
	margin-inline: auto;
	display: grid;
	grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
	gap: 40px 48px;
	align-items: start;
}

/* Brand wordmark only (no logo icon — header already has logo) */
.ap-hero__wordmark {
	display: block;
	margin: 0 0 18px;
	font-family: "Figtree", "Work Sans", system-ui, sans-serif;
	font-weight: 800;
	font-size: clamp(2.75rem, 6.5vw, 4.25rem);
	letter-spacing: -0.05em;
	line-height: 0.95;
}

.ap-hero__wordmark-art { color: #113954; }
.ap-hero__wordmark-print { color: #f67753; }

.ap-hero__eyebrow {
	margin: 0 0 12px;
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 0.06em;
	text-transform: uppercase;
	color: #94a3b8;
}

.ap-hero__title {
	margin: 0 0 14px;
	font-family: "Figtree", "Work Sans", system-ui, sans-serif;
	font-size: clamp(2.1rem, 4.2vw, 3rem);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: -0.04em;
	color: #0f172a;
}

.ap-hero__title-em {
	color: #f67753;
	background: linear-gradient(180deg, transparent 60%, rgba(253, 227, 103, 0.45) 60%);
	padding: 0 0.05em;
}

.ap-hero__lead {
	margin: 0 0 22px;
	max-width: 34rem;
	font-size: 1.05rem;
	line-height: 1.65;
	color: #64748b;
}

.ap-hero__cta {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 16px;
}

.ap-hero__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 13px 20px;
	border-radius: 999px;
	font-weight: 700;
	font-size: 14.5px;
	text-decoration: none !important;
	transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.ap-hero__btn:hover { transform: translateY(-1px); }

.ap-hero__btn--main {
	background: #f67753;
	color: #fff !important;
	box-shadow: 0 10px 24px rgba(246, 119, 83, 0.28);
}

.ap-hero__btn--main:hover {
	background: #e85d38;
	color: #fff !important;
}

.ap-hero__btn--alt {
	background: #fff;
	color: #113954 !important;
	border: 1px solid #e2e8f0;
}

.ap-hero__btn--alt:hover {
	border-color: #fdbaa2;
	color: #f67753 !important;
}

.ap-hero__search {
	display: flex;
	align-items: center;
	gap: 8px;
	max-width: 420px;
	margin: 0 0 18px;
	padding: 5px 5px 5px 16px;
	background: #fff;
	border: 1px solid #e8eef5;
	border-radius: 999px;
	box-shadow: 0 4px 14px rgba(15, 23, 42, 0.04);
}

.ap-hero__search input {
	flex: 1;
	min-width: 0;
	border: 0 !important;
	outline: none;
	background: transparent;
	padding: 10px 0;
	font-size: 14px;
	box-shadow: none !important;
}

.ap-hero__search button {
	border: 0;
	border-radius: 999px;
	background: #113954;
	color: #fff;
	font-weight: 700;
	font-size: 13px;
	padding: 10px 16px;
	cursor: pointer;
}

.ap-hero__search button:hover {
	background: #f67753;
	transform: none;
}

.ap-hero__meta {
	display: flex;
	flex-wrap: wrap;
	gap: 8px 16px;
	list-style: none;
	margin: 0;
	padding: 0;
	font-size: 13px;
	color: #64748b;
}

.ap-hero__meta strong {
	color: #113954;
	font-weight: 800;
}

/* Equal category cards — 2×3 grid, never broken spans */
.ap-hero__grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 12px;
}

.ap-hero-card {
	display: flex;
	align-items: flex-start;
	gap: 12px;
	padding: 16px 14px;
	border-radius: 18px;
	background: #ffffff;
	border: 1px solid #eef2f7;
	box-shadow: 0 4px 16px rgba(15, 23, 42, 0.035);
	text-decoration: none !important;
	color: inherit;
	transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
	position: relative;
	min-height: 88px;
}

.ap-hero-card:hover {
	transform: translateY(-2px);
	border-color: #fdc9b5;
	box-shadow: 0 10px 28px rgba(15, 23, 42, 0.07);
	color: inherit;
}

.ap-hero-card__icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 42px;
	height: 42px;
	border-radius: 12px;
	background: #fff7f3;
	font-size: 1.15rem;
	font-weight: 800;
	color: #113954;
	flex-shrink: 0;
}

.ap-hero-card:nth-child(2) .ap-hero-card__icon { background: #eef6fc; }
.ap-hero-card:nth-child(3) .ap-hero-card__icon { background: #eefaf3; }
.ap-hero-card:nth-child(4) .ap-hero-card__icon { background: #fff8e8; }
.ap-hero-card:nth-child(5) .ap-hero-card__icon { background: #f3eefe; }
.ap-hero-card:nth-child(6) .ap-hero-card__icon { background: #fceef5; }

.ap-hero-card__body {
	display: flex;
	flex-direction: column;
	gap: 2px;
	min-width: 0;
	padding-top: 2px;
}

.ap-hero-card__name {
	font-family: "Figtree", "Work Sans", system-ui, sans-serif;
	font-weight: 800;
	font-size: 1rem;
	letter-spacing: -0.02em;
	color: #0f172a;
}

.ap-hero-card__meta {
	font-size: 12.5px;
	color: #94a3b8;
	line-height: 1.35;
}

.ap-hero-card__badge {
	position: absolute;
	top: 10px;
	right: 10px;
	padding: 3px 8px;
	border-radius: 999px;
	font-size: 10px;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-transform: uppercase;
}

.ap-hero-card__badge--hot {
	background: #fff1eb;
	color: #e85d38;
}

.ap-hero-card__badge--new {
	background: #ecfdf5;
	color: #059669;
}

/* Full-bleed hero on home */
body.home #primary .entry-content > .ap-hero:first-child {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(50% - 50vw);
	margin-right: calc(50% - 50vw);
	margin-top: 0;
}

/* Hide broken legacy hero if cached */
.ap-hero-v2,
.ap-sp-hero {
	display: none !important;
}

@media (max-width: 900px) {
	.ap-hero__shell {
		grid-template-columns: 1fr;
		gap: 28px;
	}

	.ap-hero__grid {
		grid-template-columns: 1fr 1fr;
	}
}

@media (max-width: 560px) {
	.ap-hero {
		padding: 24px 0 32px;
	}

	.ap-hero__cta {
		flex-direction: column;
	}

	.ap-hero__btn {
		width: 100%;
	}

	.ap-hero__search {
		max-width: none;
	}

	.ap-hero__grid {
		grid-template-columns: 1fr;
	}
}


/* Kill multi-line blue decorative rules sitewide (Limoncella leftovers) */
.site-main-header-wrap .site-header-row-container-inner,
.site-top-header-wrap .site-header-row-container-inner,
.site-bottom-header-wrap .site-header-row-container-inner,
#masthead .site-header-row-container-inner {
	border-bottom: none !important;
	border-top: none !important;
	box-shadow: none !important;
	background-image: none !important;
}

.wp-block-kadence-spacer .kt-divider,
hr.kt-divider,
.kt-block-spacer .kt-divider,
.kt-divider {
	display: none !important;
	border: 0 !important;
	height: 0 !important;
	background: none !important;
	opacity: 0 !important;
}

/* Columns that only existed as double-line borders */
body.home .wp-block-kadence-column[class*="kadence-column"] > .kt-inside-inner-col:empty {
	display: none;
}

/* Prevent leftover Kadence column top/bottom blue double-lines */
body.home .entry-content .wp-block-kadence-column > .kt-inside-inner-col {
	border-top: none !important;
	border-bottom: none !important;
}
body .kt-inside-inner-col {
	/* only kill pure decorative 1px palette6 pairs via specificity if needed */
}
/* Dynamic CSS from blocks still injects borders — override common selectors */
[class*="kadence-column"] > .kt-inside-inner-col {
	border-image: none !important;
}

/* =========================================================
   Header search — fix clipped "Sear" button
   ========================================================= */
#masthead [data-section="kadence_customizer_header_search"],
#masthead .site-header-item[data-section*="header_search"] {
	display: flex;
	align-items: center;
	margin-left: 8px;
}

#masthead .search-form {
	display: flex !important;
	align-items: center;
	position: relative;
	width: min(240px, 28vw);
	margin: 0 !important;
	padding: 4px 4px 4px 14px !important;
	background: #ffffff !important;
	border: 1px solid #e8eef5 !important;
	border-radius: 999px !important;
	box-shadow: 0 2px 10px rgba(15, 23, 42, 0.04);
	overflow: visible;
}

#masthead .search-form label {
	flex: 1 1 auto;
	min-width: 0;
	margin: 0 !important;
	padding: 0 !important;
	display: block;
	width: auto !important;
}

#masthead .search-form .search-field,
#masthead .search-form input[type="search"] {
	width: 100% !important;
	max-width: none !important;
	min-height: 36px !important;
	height: 36px !important;
	margin: 0 !important;
	padding: 0 8px 0 0 !important;
	border: 0 !important;
	border-radius: 0 !important;
	background: transparent !important;
	box-shadow: none !important;
	outline: none !important;
	font-size: 14px !important;
	line-height: 1.2 !important;
	color: #0f172a !important;
}

#masthead .search-form .search-field::placeholder {
	color: #94a3b8 !important;
	opacity: 1;
}

/* Submit is a round icon button — hide the "Search" label text */
#masthead .search-form .search-submit,
#masthead .search-form input[type="submit"] {
	position: relative !important;
	flex: 0 0 40px !important;
	width: 40px !important;
	min-width: 40px !important;
	max-width: 40px !important;
	height: 40px !important;
	margin: 0 !important;
	padding: 0 !important;
	border: 0 !important;
	border-radius: 50% !important;
	background: #113954 !important;
	color: transparent !important;
	font-size: 0 !important;
	line-height: 0 !important;
	letter-spacing: 0 !important;
	text-indent: 0 !important;
	text-transform: none !important;
	overflow: hidden !important;
	cursor: pointer;
	box-shadow: none !important;
	transform: none !important;
	appearance: none;
	-webkit-appearance: none;
}

#masthead .search-form .search-submit:hover,
#masthead .search-form input[type="submit"]:hover {
	background: #f67753 !important;
	color: transparent !important;
	transform: none !important;
}

/* Icon sits on top of the round submit */
#masthead .search-form .kadence-search-icon-wrap {
	position: absolute !important;
	right: 4px !important;
	top: 50% !important;
	transform: translateY(-50%) !important;
	width: 40px !important;
	height: 40px !important;
	display: flex !important;
	align-items: center !important;
	justify-content: center !important;
	margin: 0 !important;
	padding: 0 !important;
	pointer-events: none !important;
	color: #ffffff !important;
	z-index: 3;
	opacity: 1 !important;
}

#masthead .search-form .kadence-search-icon-wrap .kadence-svg-icon,
#masthead .search-form .kadence-search-icon-wrap svg {
	width: 16px !important;
	height: 16px !important;
	fill: #ffffff !important;
	color: #ffffff !important;
	display: block !important;
}

@media (max-width: 1100px) {
	#masthead .search-form {
		width: min(180px, 22vw);
	}
}

@media (max-width: 900px) {
	/* On tighter desktops keep usable field */
	#masthead .search-form {
		width: 160px;
	}
}
