/* Token & Tell: publication styles on top of Kadence */

@font-face {
	font-family: "Archivo";
	src: url("../fonts/archivo-var.woff2") format("woff2-variations"), url("../fonts/archivo-var.woff2") format("woff2");
	font-weight: 100 900;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Source Serif 4";
	src: url("../fonts/source-serif-var.woff2") format("woff2-variations"), url("../fonts/source-serif-var.woff2") format("woff2");
	font-weight: 200 900;
	font-style: normal;
	font-display: swap;
}
@font-face {
	font-family: "Source Serif 4";
	src: url("../fonts/source-serif-var-italic.woff2") format("woff2-variations"), url("../fonts/source-serif-var-italic.woff2") format("woff2");
	font-weight: 200 900;
	font-style: italic;
	font-display: swap;
}

:root {
	--sw-bg: #F4F5F6;
	--sw-surface: #FFFFFF;
	--sw-ink: #15181C;
	--sw-muted: #5B636D;
	--sw-line: #DDE1E5;
	--sw-masthead: #121417;
	--sw-accent: #E4471C;
	--sw-accent-ink: #B8340F;
	--sw-ui: "Archivo", "Helvetica Neue", Arial, sans-serif;
	--sw-serif: "Source Serif 4", Georgia, "Times New Roman", serif;
	--sw-r-sm: 4px;
	--sw-r-md: 6px;
	--sw-gap: 20px;
	--sw-gap-lg: 32px;
	--sw-max: 1240px;
}

/* ---------- Base ---------- */
body.sw {
	background: var(--sw-bg);
	color: var(--sw-ink);
	font-family: var(--sw-ui);
	font-size: 16px;
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
	text-rendering: optimizeLegibility;
}
body.sw #wrapper { background: var(--sw-bg); overflow-x: clip; }
body.sw #inner-wrap { display: block; padding: 0; margin: 0; max-width: none; background: transparent; }
:where(body.sw) :where(h1, h2, h3, h4, h5, h6) { font-family: var(--sw-ui); color: var(--sw-ink); letter-spacing: -0.01em; margin: 0; }
:where(body.sw) :where(p, ul, ol, figure) { margin: 0; }
:where(body.sw) a { color: inherit; text-decoration: none; }
body.sw :where(img) { max-width: 100%; height: auto; display: block; }
body.sw :focus-visible { outline: 3px solid var(--sw-accent); outline-offset: 2px; }
.sw-container { width: 100%; max-width: var(--sw-max); margin-inline: auto; padding-inline: 16px; box-sizing: border-box; }
@media (min-width: 768px) { .sw-container { padding-inline: 24px; } }
.screen-reader-text { position: absolute !important; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }

/* ---------- Buttons ---------- */
.sw-btn {
	display: inline-flex; align-items: center; justify-content: center; gap: 8px;
	font: 700 13px/1 var(--sw-ui); text-transform: uppercase; letter-spacing: 0.06em;
	background: var(--sw-accent); color: #fff; border: 0; border-radius: var(--sw-r-sm);
	padding: 12px 18px; cursor: pointer; transition: background-color .15s;
}
.sw-btn:hover { background: var(--sw-accent-ink); color: #fff; }
.sw-btn--ghost { background: transparent; color: var(--sw-ink) !important; box-shadow: inset 0 0 0 2px var(--sw-ink); }
.sw-btn--ghost:hover { background: var(--sw-ink); color: #fff !important; }
.sw-iconbtn { display: inline-grid; place-items: center; width: 40px; height: 40px; background: transparent; border: 0; color: #fff; border-radius: var(--sw-r-sm); cursor: pointer; padding: 0; }
.sw-iconbtn:hover { background: rgba(255,255,255,.1); }
.sw-textlink { color: var(--sw-accent-ink) !important; font-weight: 700; border-bottom: 2px solid currentColor; }
.sw-center { text-align: center; margin-top: var(--sw-gap-lg) !important; }

/* ---------- Masthead ---------- */
#masthead.sw-masthead, .sw-masthead { background: var(--sw-masthead); color: #fff; position: sticky; top: 0; z-index: 50; border-bottom: 3px solid var(--sw-accent); }
body.admin-bar .sw-masthead { top: 32px; }
@media (max-width: 782px) { body.admin-bar .sw-masthead { top: 0; } }
.sw-masthead__bar { display: flex; align-items: center; gap: 16px; height: 64px; }
.sw-logo { margin: 0; font-size: inherit; line-height: 1; }
.sw-logo a { display: inline-flex; align-items: center; gap: 10px; color: #fff !important; }
.sw-logo__word { font: 800 25px/1 var(--sw-ui); letter-spacing: -0.03em; }
.sw-mark { flex: none; display: block; }
.sw-nav { margin-left: auto; }
.sw-menu { display: flex; gap: 2px; list-style: none; margin: 0; padding: 0; }
.sw-menu a { display: block; padding: 8px 11px; font: 600 14.5px/1 var(--sw-ui); color: #E7E9EC; border-radius: var(--sw-r-sm); white-space: nowrap; }
.sw-menu a:hover, .sw-menu .current-menu-item > a, .sw-menu .current-post-ancestor > a, .sw-menu .current-category-ancestor > a { color: #fff; background: rgba(255,255,255,.1); }
.sw-menu-toggle { display: none; }
@media (max-width: 1100px) {
	.sw-nav { display: none; }
	.sw-menu-toggle { display: inline-grid; margin-left: -8px; }
	.sw-search-toggle { margin-left: auto; }
}
.sw-searchbar { background: #1C1F23; border-top: 1px solid #2A2E34; padding: 14px 0; }
.sw-searchform { display: flex; gap: 8px; }
.sw-searchform input[type="search"] {
	flex: 1; min-width: 0; font: 500 16px/1.2 var(--sw-ui); padding: 12px 14px; border-radius: var(--sw-r-sm);
	border: 1px solid var(--sw-line); background: #fff; color: var(--sw-ink);
}
.sw-searchbar input[type="search"] { border-color: #3A3F46; background: #121417; color: #fff; }
.sw-searchbar input::placeholder { color: #9AA2AB; }
.sw-searchform--inline { max-width: 560px; margin-top: 18px; }

/* Drawer */
.sw-drawer { position: fixed; inset: 0; z-index: 100; background: rgba(18,20,23,.55); }
.sw-drawer[hidden] { display: none; }
.sw-drawer__panel { background: var(--sw-masthead); color: #fff; width: min(360px, 88vw); height: 100%; overflow-y: auto; padding: 16px 20px 32px; box-sizing: border-box; }
.sw-drawer__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 18px; }
.sw-drawer .sw-searchform input { background: #1C1F23; border-color: #3A3F46; color: #fff; }
.sw-drawer__menu, .sw-drawer__sub { list-style: none; margin: 20px 0 0; padding: 0; }
.sw-drawer__menu a { display: block; padding: 12px 0; font: 700 19px/1.2 var(--sw-ui); color: #fff; border-bottom: 1px solid #2A2E34; }
.sw-drawer__sub a { display: block; padding: 8px 0; font: 500 15px/1.3 var(--sw-ui); color: #B9C0C8; }

/* ---------- Stories ---------- */
.sw-kicker { display: inline-block; font: 700 12px/1 var(--sw-ui); text-transform: uppercase; letter-spacing: 0.08em; color: var(--sw-accent-ink) !important; margin-bottom: 8px; }
.sw-kicker:hover { text-decoration: underline; }
.sw-meta { display: flex; flex-wrap: wrap; gap: 4px 10px; font: 500 13px/1.3 var(--sw-ui); color: var(--sw-muted); margin-top: 10px; }
.sw-meta-updated { color: var(--sw-accent-ink); font-weight: 600; }
.sw-dark .sw-meta-updated { color: #FFB59E; }
.sw-start__intro { font: 400 16px/1.5 var(--sw-serif); color: var(--sw-muted); margin: -4px 0 20px; max-width: 640px; }
.sw-meta-author { color: var(--sw-ink); font-weight: 600; }
.sw-story { position: relative; }
.sw-story__media { display: block; overflow: hidden; border-radius: var(--sw-r-md); background: #D9DDE1; aspect-ratio: 16 / 9; }
.sw-story__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.sw-story:hover .sw-story__media img { transform: scale(1.03); }
.sw-story__title { font-weight: 800; line-height: 1.15; }
.sw-story__title a:hover { color: var(--sw-accent-ink); }
.sw-story__dek { font: 400 16px/1.5 var(--sw-serif); color: #3A4048; margin-top: 8px; }
.sw-img-fallback { display: block; width: 100%; height: 100%; background: linear-gradient(135deg, #1C1F23, #3A3F46); }

.sw-story--lead .sw-story__body { padding-top: 16px; }
.sw-story--lead .sw-story__title { font-size: clamp(26px, 3.4vw, 40px); line-height: 1.08; letter-spacing: -0.02em; }
.sw-story--lead .sw-story__dek { font-size: 18px; max-width: 62ch; }

.sw-story--card { display: flex; flex-direction: column; }
.sw-story--card .sw-story__body { padding-top: 12px; }
.sw-story--card .sw-story__title { font-size: 20px; }

.sw-story--list { display: grid; grid-template-columns: 1fr 112px; gap: 14px; align-items: start; padding: 14px 0; border-top: 1px solid var(--sw-line); }
.sw-story--list .sw-story__media { aspect-ratio: 3 / 2; border-radius: var(--sw-r-sm); }
.sw-story--list .sw-story__title { font-size: 16.5px; line-height: 1.22; }
.sw-story--list .sw-kicker { margin-bottom: 6px; font-size: 11px; }
.sw-story--list .sw-meta { margin-top: 6px; font-size: 12.5px; }

.sw-story--wide { display: grid; grid-template-columns: 1fr; gap: 12px; padding-bottom: 6px; }
.sw-story--wide .sw-story__title { font-size: 23px; }

.sw-story--mini .sw-story__title { font-size: 15.5px; line-height: 1.28; font-weight: 700; }
.sw-story--mini .sw-meta { margin-top: 4px; font-size: 12.5px; }

/* ---------- Grids & sections ---------- */
.sw-grid { display: grid; gap: var(--sw-gap-lg) var(--sw-gap); }
.sw-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.sw-grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.sw-grid--tight .sw-story__title { font-size: 17px; }
.sw-grid__full { grid-column: 1 / -1; padding-bottom: 8px; border-bottom: 1px solid var(--sw-line); }
@media (max-width: 1024px) { .sw-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 640px) { .sw-grid--2, .sw-grid--4 { grid-template-columns: 1fr; } }

.sw-section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; border-top: 3px solid var(--sw-ink); padding-top: 12px; margin-bottom: 20px; }
.sw-section-title { font: 800 22px/1.1 var(--sw-ui); letter-spacing: -0.015em; }
.sw-more { font: 700 13px/1 var(--sw-ui); text-transform: uppercase; letter-spacing: 0.06em; color: var(--sw-accent-ink) !important; white-space: nowrap; }
.sw-more:hover { text-decoration: underline; }
.sw-band { margin-top: 56px; }

/* Home: top */
.sw-top { display: grid; grid-template-columns: minmax(0, 2fr) minmax(0, 1fr); gap: var(--sw-gap-lg); padding-top: 28px; }
.sw-top__side > .sw-story--card { padding-bottom: 6px; }
.sw-top__side > .sw-story--card .sw-story__title { font-size: 19px; }
.sw-top__side > .sw-story--card + .sw-story--list { margin-top: 14px; }
@media (max-width: 900px) { .sw-top { grid-template-columns: 1fr; } }

/* Split with rail */
.sw-split { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 40px; margin-top: 56px; align-items: start; }
.sw-archive .sw-split { margin-top: 28px; }
@media (max-width: 1024px) { .sw-split { grid-template-columns: 1fr; } }
.sw-rail { position: sticky; top: 92px; display: grid; gap: 28px; }
@media (max-width: 1024px) { .sw-rail { position: static; } }
.sw-rail__block { background: var(--sw-surface); border: 1px solid var(--sw-line); border-radius: var(--sw-r-md); padding: 18px 20px; }
.sw-rail__title { font: 800 13px/1 var(--sw-ui); text-transform: uppercase; letter-spacing: 0.08em; color: var(--sw-accent-ink); margin-bottom: 12px !important; }
.sw-rail__about p { font: 400 15px/1.55 var(--sw-serif); color: #3A4048; margin-bottom: 12px; }
.sw-numbered { list-style: none; counter-reset: sw; padding: 0; margin: 0; }
.sw-numbered li { counter-increment: sw; display: grid; grid-template-columns: 30px 1fr; padding: 12px 0; border-top: 1px solid var(--sw-line); }
.sw-numbered li:first-child { border-top: 0; padding-top: 2px; }
.sw-numbered li::before { content: counter(sw); font: 800 22px/1 var(--sw-ui); color: var(--sw-line); }
.sw-topics { list-style: none; padding: 0; margin: 0; display: flex; flex-wrap: wrap; gap: 8px; }
.sw-topics a { display: inline-block; font: 600 13.5px/1 var(--sw-ui); padding: 9px 12px; border-radius: var(--sw-r-sm); background: var(--sw-bg); border: 1px solid var(--sw-line); }
.sw-topics a:hover { border-color: var(--sw-ink); }

/* Dark band */
.sw-dark { background: var(--sw-masthead); color: #fff; margin-top: 64px; padding: 44px 0 52px; }
.sw-dark .sw-section-head { border-top-color: var(--sw-accent); }
.sw-dark .sw-section-title, .sw-dark .sw-story__title { color: #fff; }
.sw-dark .sw-story__title a:hover { color: #FFB39E; }
.sw-dark .sw-kicker, .sw-dark .sw-more { color: #FF8A66 !important; }
.sw-dark .sw-story__dek { color: #C3C9D0; }
.sw-dark .sw-meta, .sw-dark .sw-meta-author { color: #9AA2AB; }
.sw-dark .sw-story--list { border-top-color: #2A2E34; }
.sw-feature { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: var(--sw-gap-lg); }
.sw-feature .sw-story--lead .sw-story__title { font-size: clamp(24px, 2.8vw, 34px); }
.sw-feature__list > .sw-story--list:first-child { border-top: 0; padding-top: 0; }
@media (max-width: 900px) { .sw-feature { grid-template-columns: 1fr; } }

/* Duo columns */
.sw-duo { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 40px; margin-top: 56px; }
@media (max-width: 900px) { .sw-duo { grid-template-columns: 1fr; } }

/* ---------- Article ---------- */
.sw-article__head { padding-top: 28px; max-width: 900px; margin-left: max(0px, calc((100% - var(--sw-max)) / 2)); }
.sw-article__head { margin-inline: auto; max-width: var(--sw-max); }
.sw-article__head > * { max-width: 860px; }
.sw-crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0 0 18px; font: 500 13px/1.3 var(--sw-ui); color: var(--sw-muted); }
.sw-crumbs li + li::before { content: "/"; margin-right: 6px; color: #A8AFB7; }
.sw-crumbs a:hover { color: var(--sw-accent-ink); }
.sw-article__title { font: 800 clamp(30px, 4.4vw, 50px)/1.07 var(--sw-ui) !important; letter-spacing: -0.025em !important; }
.sw-article__dek { font: 400 clamp(18px, 2vw, 21px)/1.5 var(--sw-serif); color: #3A4048; margin-top: 14px !important; }
.sw-byline { display: flex; flex-wrap: wrap; gap: 6px 18px; font: 500 14px/1.4 var(--sw-ui); color: var(--sw-muted); margin-top: 18px; padding-top: 14px; border-top: 1px solid var(--sw-line); }
.sw-byline a { color: var(--sw-ink); font-weight: 700; }
.sw-byline a:hover { color: var(--sw-accent-ink); }
.sw-article__hero { margin-top: 24px !important; }
.sw-article__hero > img, .sw-article__hero > figcaption { max-width: 1000px; }
.sw-article__hero img { width: 100%; border-radius: var(--sw-r-md); aspect-ratio: 16 / 9; object-fit: cover; }
.sw-article__hero figcaption, .sw-prose figcaption { font: 500 12.5px/1.4 var(--sw-ui); color: var(--sw-muted); margin-top: 8px; }
.sw-article__hero figcaption a, .sw-prose figcaption a { text-decoration: underline; }
.sw-article__layout { display: grid; grid-template-columns: minmax(0, 1fr) 320px; gap: 56px; margin-top: 32px; align-items: start; }
@media (max-width: 1024px) { .sw-article__layout { grid-template-columns: 1fr; gap: 40px; } }
.sw-article__main { max-width: 720px; }

/* Prose */
.sw-prose { font: 400 19px/1.65 var(--sw-serif); color: #22262B; }
.sw-prose > * + * { margin-top: 1.1em !important; }
.sw-prose h2 { font: 800 27px/1.15 var(--sw-ui); letter-spacing: -0.015em; margin-top: 1.8em !important; }
.sw-prose h3 { font: 750 21px/1.2 var(--sw-ui); margin-top: 1.6em !important; }
.sw-prose a { color: var(--sw-accent-ink); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; }
.sw-prose a:hover { text-decoration-thickness: 2px; }
.sw-prose ul, .sw-prose ol { padding-left: 1.3em; }
.sw-prose li + li { margin-top: .45em; }
.sw-prose li::marker { color: var(--sw-accent); font-weight: 700; }
.sw-prose strong { font-weight: 700; color: var(--sw-ink); }
.sw-prose blockquote { margin: 1.6em 0 !important; padding: 0 0 0 20px; border: 0; border-left: 4px solid var(--sw-accent); font-style: italic; font-size: 21px; color: var(--sw-ink); }
.sw-prose blockquote p { margin: 0; }
.sw-prose .sw-callout { background: var(--sw-surface); border: 1px solid var(--sw-line); border-left: 4px solid var(--sw-ink); border-radius: var(--sw-r-sm); padding: 18px 20px; font-size: 17px; }
.sw-prose .sw-callout p + p { margin-top: .6em; }
.sw-prose .sw-callout strong:first-child { font-family: var(--sw-ui); text-transform: uppercase; letter-spacing: .06em; font-size: 13px; color: var(--sw-accent-ink); display: block; margin-bottom: 6px; }
.sw-prose table { width: 100%; border-collapse: collapse; font: 400 15.5px/1.45 var(--sw-ui); background: var(--sw-surface); border: 1px solid var(--sw-line); }
.sw-prose th, .sw-prose td { text-align: left; padding: 10px 12px; border-bottom: 1px solid var(--sw-line); vertical-align: top; }
.sw-prose th { background: #ECEEF0; font-weight: 700; }
.sw-prose .wp-block-table { overflow-x: auto; }
.sw-prose figure img { border-radius: var(--sw-r-md); }
.sw-prose code { font-size: .85em; background: #E9ECEE; padding: 2px 5px; border-radius: 3px; }
.sw-prose hr { border: 0; border-top: 1px solid var(--sw-line); margin: 2em 0 !important; }

.sw-tags { list-style: none; padding: 0; margin: 36px 0 0; display: flex; flex-wrap: wrap; gap: 8px; }
.sw-tags a { display: inline-block; font: 600 13px/1 var(--sw-ui); padding: 8px 11px; background: var(--sw-surface); border: 1px solid var(--sw-line); border-radius: var(--sw-r-sm); }
.sw-tags a:hover { border-color: var(--sw-ink); }
.sw-share { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 24px; padding: 16px 0; border-top: 1px solid var(--sw-line); border-bottom: 1px solid var(--sw-line); }
.sw-share__label { font: 800 12px/1 var(--sw-ui); text-transform: uppercase; letter-spacing: .08em; margin-right: 6px; }
.sw-share a { font: 700 13.5px/1 var(--sw-ui); padding: 9px 12px; border-radius: var(--sw-r-sm); background: var(--sw-ink); color: #fff; }
.sw-share a:hover { background: var(--sw-accent-ink); }
.sw-authorbox { display: grid; grid-template-columns: 48px 1fr; gap: 16px; margin-top: 28px; background: var(--sw-surface); border: 1px solid var(--sw-line); border-radius: var(--sw-r-md); padding: 20px; }
.sw-authorbox .sw-mark { width: 48px; height: 48px; }
.sw-authorbox p { font: 400 15.5px/1.55 var(--sw-serif); color: #3A4048; }
.sw-authorbox p + p { margin-top: 8px; }
.sw-authorbox__name { font: 800 17px/1.2 var(--sw-ui) !important; color: var(--sw-ink) !important; }
.sw-related { margin-bottom: 8px; }

/* ---------- Archives & pages ---------- */
.sw-archive__head, .sw-page__head { padding-top: 28px; }
.sw-archive__title, .sw-page__title { font: 800 clamp(30px, 4vw, 46px)/1.08 var(--sw-ui) !important; letter-spacing: -0.025em !important; }
.sw-archive__page { font-weight: 500; color: var(--sw-muted); font-size: .55em; letter-spacing: 0; }
.sw-archive__intro { font: 400 19px/1.55 var(--sw-serif); color: #3A4048; max-width: 68ch; margin-top: 10px !important; }
.sw-archive__head { padding-bottom: 20px; border-bottom: 1px solid var(--sw-line); }
.sw-page__updated { font: 500 14px/1.4 var(--sw-ui); color: var(--sw-muted); margin-top: 10px !important; }
.sw-page__body { max-width: 720px; margin-top: 28px; }
.sw-empty h2 { font-size: 24px; font-weight: 800; }
.sw-empty p { font: 400 18px/1.55 var(--sw-serif); margin: 8px 0 28px; }

.sw-pagination { margin-top: 44px; }
.sw-pagination ul { list-style: none; display: flex; flex-wrap: wrap; gap: 6px; padding: 0; margin: 0; }
.sw-pagination a, .sw-pagination span { display: inline-block; font: 700 14px/1 var(--sw-ui); padding: 11px 14px; border-radius: var(--sw-r-sm); background: var(--sw-surface); border: 1px solid var(--sw-line); }
.sw-pagination .current { background: var(--sw-ink); color: #fff; border-color: var(--sw-ink); }
.sw-pagination a:hover { border-color: var(--sw-ink); }

.sw-404 { padding-top: 48px; }
.sw-404__code { font: 800 clamp(80px, 14vw, 160px)/0.9 var(--sw-ui); color: var(--sw-accent); letter-spacing: -0.05em; }
.sw-404__text { font: 400 19px/1.55 var(--sw-serif); max-width: 60ch; margin-top: 14px !important; }

/* ---------- Footer ---------- */
.sw-footer { background: var(--sw-masthead); color: #B9C0C8; margin-top: 80px; padding-top: 52px; }
.sw-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; }
@media (max-width: 900px) { .sw-footer__grid { grid-template-columns: 1fr 1fr; } .sw-footer__brand { grid-column: 1 / -1; } }
.sw-footer__brand p { font: 400 15px/1.6 var(--sw-serif); margin-top: 16px; max-width: 42ch; }
.sw-footer__rss { display: inline-flex; align-items: center; gap: 8px; margin-top: 16px; font: 700 13px/1 var(--sw-ui); color: #fff !important; }
.sw-footer__heading, .sw-rail__title { margin-top: 0; }
.sw-footer h2, .sw-footer__heading { font: 800 12.5px/1 var(--sw-ui); text-transform: uppercase; letter-spacing: .1em; color: #fff; margin-bottom: 14px; }
.sw-footer ul { list-style: none; padding: 0; margin: 0; }
.sw-footer li + li { margin-top: 9px; }
.sw-footer__col a { font: 500 14.5px/1.3 var(--sw-ui); color: #B9C0C8; }
.sw-footer__col a:hover { color: #fff; }
.sw-footer__base { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; border-top: 1px solid #2A2E34; padding-top: 18px; padding-bottom: 24px; font: 500 13px/1.4 var(--sw-ui); color: #8A929B; }

/* Kadence leftovers */
body.sw .site-header, body.sw .site-footer { display: none; }
body.sw #kt-scroll-up { background: var(--sw-ink); }

@media (prefers-reduced-motion: reduce) {
	.sw-story__media img { transition: none; }
	.sw-story:hover .sw-story__media img { transform: none; }
}
@media print {
	.sw-masthead, .sw-footer, .sw-rail, .sw-share, .sw-related { display: none !important; }
}

/* Forms */
.sw-form { display: grid; gap: 4px; margin-top: 8px; }
.sw-form label { display: block; font: 700 14px/1.3 var(--sw-ui); margin-bottom: 6px; }
.sw-form input[type=text], .sw-form input[type=email], .sw-form select, .sw-form textarea { width: 100%; box-sizing: border-box; font: 400 16px/1.4 var(--sw-ui); padding: 12px 14px; border: 1px solid #C7CDD3; border-radius: var(--sw-r-sm); background: #fff; color: var(--sw-ink); }
.sw-form textarea { resize: vertical; }
.sw-form__note { font: 400 14px/1.5 var(--sw-ui) !important; color: var(--sw-muted); }
.sw-hp { position: absolute !important; left: -9999px; }
.sw-notice { padding: 14px 16px; border-radius: var(--sw-r-sm); font: 600 15px/1.5 var(--sw-ui) !important; }
.sw-notice--ok { background: #E7F4EC; color: #1D5B35; }
.sw-notice--error { background: #FBEAE5; color: #8E2A0E; }

.sw-dark .sw-story__media { background: #2A2E34; }

/* Link color resets over Kadence defaults */
body.sw .sw-story__title a, body.sw .sw-crumbs a, body.sw .sw-topics a, body.sw .sw-tags a, body.sw .sw-authorbox__name a, body.sw .sw-pagination a, body.sw .sw-drawer__menu a { color: inherit; }
body.sw .sw-byline a { color: var(--sw-ink); }
body.sw .sw-story__title a:hover, body.sw .sw-byline a:hover, body.sw .sw-crumbs a:hover { color: var(--sw-accent-ink); }
body.sw .sw-dark .sw-story__title a:hover { color: #FFB39E; }
body.sw .sw-prose a { color: var(--sw-accent-ink); }
.sw-prose h2, .sw-prose h3, .sw-share, [id] { scroll-margin-top: 90px; }

body.sw .sw-page__body { margin-top: 28px; }

.sw-numbered li::before { color: #B9C0C8; }
