/*
Theme Name: Orinoco Light
Theme URI: https://orinocotribune.com/
Author: Orinoco Tribune
Author URI: https://orinocotribune.com/
Description: A fast, highly configurable editorial theme created for Orinoco Tribune. No framework, page builder, slider library, icon font, or remote font dependency.
Version: 0.1.2-alpha
Requires at least: 6.6
Tested up to: 7.1
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: orinoco-light
Tags: news, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, wide-blocks
*/

:root {
	--ot-accent: #ffc934;
	--ot-link: #38a9e8;
	--ot-black: #080808;
	--ot-ink: #151515;
	--ot-paper: #fff;
	--ot-muted: #a8a8a8;
	--ot-rule: #303030;
	--ot-soft: #f2f2f2;
	--ot-max: 1440px;
	--ot-reading: 760px;
	--ot-hero-height: 650px;
	--ot-logo-width: 330px;
	--ot-heading: Roboto, "Segoe UI", Arial, sans-serif;
	--ot-body: Roboto, "Segoe UI", Arial, sans-serif;
	--ot-header-height: 82px;
	--ot-gap: clamp(18px, 2vw, 32px);
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
	margin: 0;
	background: var(--ot-paper);
	color: var(--ot-ink);
	font-family: var(--ot-body);
	font-size: 16px;
	line-height: 1.55;
	text-rendering: optimizeLegibility;
}
body.ot-menu-open, body.ot-modal-open { overflow: hidden; }
img { display: block; max-width: 100%; height: auto; }
figure { margin: 0; }
a { color: inherit; text-decoration: none; }
a:hover { color: var(--ot-link); }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4, h5, h6 {
	font-family: var(--ot-heading);
	line-height: 1.04;
	margin: 0;
}
p { margin: 0 0 1.2em; }

.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}
.screen-reader-text:focus {
	background: var(--ot-paper);
	clip: auto !important;
	clip-path: none;
	color: var(--ot-black);
	display: block;
	font-weight: 700;
	height: auto;
	left: 8px;
	padding: 12px 18px;
	top: 8px;
	width: auto;
	z-index: 100000;
}
:focus-visible { outline: 3px solid var(--ot-accent); outline-offset: 3px; }
.ot-shell { width: min(100% - 40px, var(--ot-max)); margin-inline: auto; }
.ot-placeholder { display: block; width: 100%; height: 100%; min-height: 120px; background: linear-gradient(135deg, #252525, #111); }

/* Header: one uninterrupted white surface. */
.ot-site-header {
	position: relative;
	z-index: 1000;
	background: #fff;
	color: #111;
	border-bottom: 1px solid #d7d7d7;
	box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}
.ot-has-sticky-header .ot-site-header { position: sticky; top: 0; }
.admin-bar.ot-has-sticky-header .ot-site-header { top: 32px; }
.ot-header-inner {
	width: min(100% - 36px, var(--ot-max));
	min-height: var(--ot-header-height);
	margin-inline: auto;
	display: grid;
	grid-template-columns: minmax(200px, var(--ot-logo-width)) minmax(330px, 1fr) auto;
	align-items: center;
	gap: clamp(18px, 2.3vw, 40px);
}
.ot-branding { min-width: 0; }
.ot-branding .custom-logo-link { display: inline-flex; align-items: center; }
.ot-branding .custom-logo { width: min(100%, var(--ot-logo-width)); max-height: 68px; object-fit: contain; object-position: left center; }
.ot-text-logo { display: flex; flex-direction: column; width: max-content; max-width: 100%; }
.ot-text-logo strong { font: 900 clamp(25px, 2.5vw, 44px)/.9 var(--ot-heading); letter-spacing: -.03em; text-transform: uppercase; }
.ot-text-logo small { color: #9c7600; font-size: 10px; font-weight: 800; letter-spacing: .06em; text-transform: uppercase; }
.ot-primary-menu, .ot-drawer-menu, .ot-footer-column ul { list-style: none; margin: 0; padding: 0; }
.ot-primary-menu { display: flex; align-items: stretch; gap: clamp(15px, 2.2vw, 38px); }
.ot-primary-menu > li { display: flex; align-items: stretch; position: relative; }
.ot-primary-menu > li > a {
	display: flex;
	align-items: center;
	min-height: var(--ot-header-height);
	font: 800 15px/1 var(--ot-heading);
	letter-spacing: .035em;
	text-transform: uppercase;
	white-space: nowrap;
}
.ot-primary-menu > .current-menu-item::after,
.ot-primary-menu > .current_page_item::after,
.home .ot-primary-menu > li:first-child::after {
	content: "";
	position: absolute;
	left: 0;
	right: 0;
	bottom: 0;
	height: 4px;
	background: var(--ot-accent);
}
.ot-menu-limit-3 .ot-primary-menu > li:nth-child(n+4),
.ot-menu-limit-4 .ot-primary-menu > li:nth-child(n+5),
.ot-menu-limit-5 .ot-primary-menu > li:nth-child(n+6),
.ot-menu-limit-6 .ot-primary-menu > li:nth-child(n+7) { display: none; }
.ot-header-actions { display: flex; align-items: center; justify-content: flex-end; gap: 10px; }
.ot-header-social { display: flex; align-items: center; gap: 8px; padding-right: 5px; }
.ot-header-social a, .ot-footer-social a {
	display: grid;
	place-items: center;
	width: 25px;
	height: 25px;
	color: #111;
}
.ot-header-social svg, .ot-footer-social svg { width: 17px; height: 17px; fill: currentColor; }
.ot-icon-button, .ot-menu-toggle {
	border: 0;
	background: transparent;
	color: #111;
	min-height: 44px;
}
.ot-theme-toggle { display: inline-flex; align-items: center; gap: 10px; min-height: 44px; padding: 0; border: 0; background: transparent; color: currentColor; font: 800 12px/1 var(--ot-body); letter-spacing: .04em; text-transform: uppercase; }
.ot-theme-toggle__track { position: relative; display: inline-flex; align-items: center; justify-content: space-between; width: 48px; height: 26px; padding: 0 5px; border: 1px solid currentColor; border-radius: 99px; }
.ot-theme-toggle__track svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.ot-theme-toggle__track i { position: absolute; left: 3px; top: 3px; width: 18px; height: 18px; border-radius: 50%; background: #111; transition: transform .18s ease, background .18s ease; }
.ot-theme-toggle[aria-pressed="true"] .ot-theme-toggle__track i { transform: translateX(22px); background: var(--ot-accent); }
.ot-theme-toggle--compact { width: 50px; justify-content: center; }
.ot-icon-button { display: grid; place-items: center; width: 42px; padding: 0; }
.ot-icon-button svg { width: 22px; height: 22px; fill: none; stroke: currentColor; stroke-width: 2; }
.ot-menu-toggle { display: inline-flex; align-items: center; gap: 8px; padding: 0 6px; font: 800 14px/1 var(--ot-heading); letter-spacing: .04em; text-transform: uppercase; }
.ot-menu-toggle__bars { width: 18px; display: grid; gap: 3px; }
.ot-menu-toggle__bars i { display: block; height: 2px; background: currentColor; }
.ot-support-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 46px;
	padding: 0 19px;
	background: var(--ot-accent);
	border: 1px solid #111;
	color: #111 !important;
	font: 900 14px/1 var(--ot-heading);
	letter-spacing: .04em;
	text-transform: uppercase;
	white-space: nowrap;
	transition: background .15s ease, color .15s ease;
}
.ot-support-button:hover { background: #111; color: var(--ot-accent) !important; }
.ot-search-panel {
	position: absolute;
	left: 0;
	right: 0;
	top: 100%;
	background: #fff;
	border-top: 1px solid #ddd;
	border-bottom: 3px solid var(--ot-accent);
	box-shadow: 0 12px 28px rgba(0,0,0,.18);
}
.ot-search-panel__inner { width: min(100% - 40px, 900px); margin: 0 auto; padding: 24px 0; display: flex; gap: 10px; }
.ot-search-form { display: flex; flex: 1; gap: 8px; }
.ot-search-form label { flex: 1; }
.ot-search-form input { width: 100%; min-height: 48px; border: 1px solid #aaa; padding: 10px 14px; }
.ot-search-form button, .ot-search-close, .ot-button { min-height: 48px; border: 1px solid #111; background: #111; color: #fff; padding: 0 20px; font-weight: 800; text-transform: uppercase; }
.ot-search-close { background: #fff; color: #111; }

/* Off-canvas sections menu. */
.ot-drawer { position: fixed; inset: 0; z-index: 2000; visibility: hidden; pointer-events: none; }
.ot-drawer.is-open { visibility: visible; pointer-events: auto; }
.ot-drawer__backdrop { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: rgba(0,0,0,.72); opacity: 0; transition: opacity .2s ease; }
.ot-drawer.is-open .ot-drawer__backdrop { opacity: 1; }
.ot-drawer__panel {
	position: absolute;
	right: 0;
	top: 0;
	bottom: 0;
	width: min(92vw, 460px);
	overflow-y: auto;
	background: #0b0b0b;
	color: #fff;
	padding: 28px;
	transform: translateX(102%);
	transition: transform .25s ease;
}
.ot-drawer.is-open .ot-drawer__panel { transform: translateX(0); }
.ot-drawer__header { display: flex; align-items: center; justify-content: space-between; padding-bottom: 22px; border-bottom: 4px solid var(--ot-accent); font: 900 28px/1 var(--ot-heading); text-transform: uppercase; }
.ot-drawer__close { width: 44px; height: 44px; border: 1px solid #555; background: transparent; color: #fff; font-size: 34px; line-height: 1; }
.ot-drawer-menu { padding-top: 18px; }
.ot-drawer-menu li { border-bottom: 1px solid #333; }
.ot-drawer-menu a { display: block; padding: 14px 2px; font: 800 20px/1.1 var(--ot-heading); text-transform: uppercase; }
.ot-drawer-menu .sub-menu { list-style: none; padding: 0 0 10px 18px; }
.ot-drawer-menu .sub-menu a { color: #bbb; font-size: 16px; }
.ot-drawer-social { display: flex; flex-wrap: wrap; gap: 8px 16px; margin-top: 30px; }
.ot-drawer-social a { color: var(--ot-accent); font-size: 13px; font-weight: 800; text-transform: uppercase; }
.ot-drawer__theme { margin-top: 24px; padding: 14px 0; border-top: 1px solid #333; border-bottom: 1px solid #333; }
.ot-drawer__theme .ot-theme-toggle { width: 100%; justify-content: space-between; color: #fff; }

/* Homepage canvas and section identities. */
.ot-home-main { overflow: hidden; background: var(--ot-black); color: #fff; padding-bottom: 68px; }
.ot-home-section { padding-top: clamp(42px, 5vw, 76px); }
.ot-section-heading { flex: 1; display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 22px; padding-bottom: 12px; border-bottom: 1px solid var(--ot-rule); }
.ot-section-heading__copy { display: flex; align-items: flex-end; gap: 14px; }
.ot-section-heading__identity { display: inline-flex; align-items: center; min-height: 28px; padding: 0 10px; font: 900 11px/1 var(--ot-body); letter-spacing: .08em; text-transform: uppercase; }
.ot-section-heading h2 { font-size: clamp(28px, 3vw, 44px); letter-spacing: -.015em; text-transform: uppercase; }
.ot-section-heading__link { color: var(--ot-accent); font-size: 12px; font-weight: 800; letter-spacing: .04em; text-transform: uppercase; white-space: nowrap; }
.ot-section-heading__link:hover { color: var(--ot-accent); text-decoration: underline; text-underline-offset: 4px; }
.ot-section-heading--analysis .ot-section-heading__identity { border: 1px solid var(--ot-accent); color: var(--ot-accent); background: transparent; }
.ot-section-heading--analysis h2 { position: relative; }
.ot-section-heading--analysis h2::before { content: ""; display: inline-block; width: 5px; height: .8em; margin-right: 10px; background: var(--ot-accent); }
.ot-section-heading--specials .ot-section-heading__identity { background: var(--ot-accent); color: #111; }
.ot-section-heading--videos .ot-section-heading__identity { background: var(--ot-accent); color: #111; }
.ot-section-heading--stories .ot-section-heading__identity { color: #111; background: var(--ot-accent); }
.ot-heading-with-controls { display: flex; align-items: flex-end; gap: 15px; }
.ot-heading-with-controls .ot-section-heading { margin-bottom: 22px; }
.ot-carousel-controls { display: flex; gap: 6px; }
.ot-heading-with-controls > .ot-carousel-controls { margin-bottom: 34px; }
.ot-carousel-controls button { display: grid; place-items: center; width: 42px; height: 42px; padding: 0; border: 1px solid #707070; background: transparent; color: currentColor; font-size: 20px; }
.ot-carousel-controls button:hover:not(:disabled) { border-color: var(--ot-accent); color: var(--ot-accent); }
.ot-carousel-controls button:disabled { opacity: .35; cursor: default; }

/* Latest News: filled newsroom marker and photographic stage. */
.ot-hero { position: relative; width: min(100%, var(--ot-max)); margin-inline: auto; background: #050505; border-bottom: 1px solid #252525; }
.ot-hero__identity {
	position: absolute;
	top: 24px;
	left: 30px;
	z-index: 6;
	display: flex;
	align-items: stretch;
	box-shadow: 0 2px 9px rgba(0,0,0,.28);
}
.ot-hero__identity span, .ot-hero__identity strong { display: flex; align-items: center; padding: 9px 12px; font: 900 12px/1 var(--ot-body); letter-spacing: .09em; text-transform: uppercase; }
.ot-hero__identity span { background: var(--ot-accent); color: #111; }
.ot-hero__identity strong { background: #111; color: #fff; border: 1px solid #333; }
.ot-hero__slides { position: relative; height: var(--ot-hero-height); }
.ot-hero-slide { display: none; position: relative; height: 100%; isolation: isolate; }
.ot-hero-slide.is-active { display: block; }
.ot-hero-slide__image { position: absolute; inset: 0; z-index: -2; }
.ot-hero-slide__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 30%, rgba(0,0,0,.18) 58%, rgba(0,0,0,.92) 100%); }
.ot-hero-slide__image img, .ot-hero-slide__image .ot-placeholder { width: 100%; height: 100%; object-fit: cover; }
.ot-hero-slide__panel { position: absolute; left: 30px; right: 28%; bottom: 28px; z-index: 2; padding: 26px 28px 22px; background: rgba(0,0,0,.88); border-left: 5px solid var(--ot-accent); }
.ot-hero-slide__panel h1 { max-width: 1050px; margin: 10px 0 12px; font-size: clamp(38px, 4.2vw, 68px); letter-spacing: -.025em; text-transform: uppercase; }
.ot-hero-slide__panel h1 a:hover { color: #fff; text-decoration: underline; text-decoration-color: var(--ot-accent); text-decoration-thickness: 3px; text-underline-offset: 6px; }
.ot-hero-slide__deck { max-width: 820px; color: #ddd; font-size: clamp(14px, 1.3vw, 18px); }
.ot-categories { display: flex; flex-wrap: wrap; gap: 4px; }
.ot-categories a { display: inline-flex; padding: 4px 7px; background: var(--ot-accent); color: #111 !important; font: 900 10px/1 var(--ot-body); letter-spacing: .055em; text-transform: uppercase; }
.ot-meta { display: flex; flex-wrap: wrap; gap: 8px 20px; margin-top: 14px; color: #bbb; font-size: 11px; font-weight: 700; letter-spacing: .035em; text-transform: uppercase; }
.ot-meta time::before { content: "◷"; margin-right: 5px; color: var(--ot-accent); }
.ot-hero__status { position: absolute; right: 24px; bottom: 24px; z-index: 7; display: flex; align-items: center; gap: 6px; padding: 7px 8px 7px 12px; border: 1px solid #665316; background: rgba(5,5,5,.92); color: #fff; font: 900 14px/1 var(--ot-heading); box-shadow: 0 4px 18px rgba(0,0,0,.32); }
.ot-hero__current { color: var(--ot-accent); font-size: 30px; }
.ot-hero__status .ot-carousel-controls { margin-left: 8px; }
.ot-hero__status .ot-carousel-controls button { width: 36px; height: 36px; border-color: var(--ot-accent); background: var(--ot-accent); color: #111; }
.ot-hero__status .ot-carousel-controls button:hover:not(:disabled) { border-color: #fff; background: #111; color: var(--ot-accent); }
.ot-hero__filmstrip { display: flex; gap: 1px; overflow-x: auto; scrollbar-width: thin; scrollbar-color: var(--ot-accent) #242424; scroll-snap-type: x mandatory; border-top: 1px solid #303030; }
.ot-hero-thumb { position: relative; flex: 0 0 25%; min-width: 250px; min-height: 132px; display: grid; grid-template-columns: 132px 1fr; gap: 12px; align-items: center; padding: 10px; border: 1px solid #303030; border-top: 0; background: #0b0b0b; color: #fff; text-align: left; scroll-snap-align: start; }
.ot-hero-thumb.is-active { border: 2px solid var(--ot-accent); padding: 9px; }
.ot-hero-thumb__image { height: 80px; position: relative; }
.ot-hero-thumb__image img, .ot-hero-thumb__image .ot-placeholder { width: 100%; height: 100%; object-fit: cover; }
.ot-hero-thumb__number { position: absolute; left: 10px; bottom: 10px; z-index: 2; padding: 4px 7px; background: var(--ot-accent); color: #111; font: 900 13px/1 var(--ot-heading); }
.ot-hero-thumb__title { font: 800 16px/1.12 var(--ot-heading); }

/* Alternate split hero remains available without another template or library. */
.ot-hero--split .ot-hero__slides { height: min(var(--ot-hero-height), 680px); }
.ot-hero--split .ot-hero-slide.is-active { display: grid; grid-template-columns: 42% 58%; }
.ot-hero--split .ot-hero-slide__image { position: relative; grid-column: 2; z-index: 0; }
.ot-hero--split .ot-hero-slide__panel { position: relative; inset: auto; grid-column: 1; grid-row: 1; display: flex; flex-direction: column; justify-content: center; padding: 80px 42px 110px; border-left: 0; border-top: 5px solid var(--ot-accent); background: #070707; }
.ot-hero--split .ot-hero-slide__panel h1 { font-size: clamp(36px, 3.7vw, 62px); }
.ot-hero--split .ot-hero__status { left: 42px; right: auto; bottom: 36px; }
.ot-hero--split .ot-hero__identity { left: 42px; }

/* Latest Analysis: outlined identity and independent horizontal rhythm. */
.ot-analysis__track, .ot-videos__track { display: flex; gap: 20px; overflow-x: auto; padding: 0 0 16px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.ot-analysis__track::-webkit-scrollbar, .ot-videos__track::-webkit-scrollbar { display: none; }
.ot-card { min-width: 0; background: #111; border: 1px solid #303030; color: #fff; }
.ot-card__image { display: block; overflow: hidden; aspect-ratio: 16/9; background: #222; }
.ot-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .25s ease; }
.ot-card:hover .ot-card__image img { transform: scale(1.025); }
.ot-card__body { padding: 14px 15px 16px; }
.ot-card h3 { margin: 10px 0 0; font-size: clamp(20px, 1.8vw, 28px); }
.ot-card h3 a:hover { color: var(--ot-accent); }
.ot-analysis-card { flex: 0 0 calc((100% - 44px) / 3.25); scroll-snap-align: start; }
.ot-analysis--focus .ot-analysis-card { flex-basis: 42%; opacity: .68; transform: scale(.94); transform-origin: center; transition: opacity .2s, transform .2s; }
.ot-analysis--focus .ot-analysis-card.is-carousel-focus { opacity: 1; transform: scale(1); }
.ot-carousel-progress { height: 3px; margin-top: 7px; background: #2d2d2d; }
.ot-carousel-progress i { display: block; width: 22%; height: 100%; background: var(--ot-accent); transform-origin: left; }

/* OT Specials asymmetric module. */
.ot-specials__layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(380px, 1fr); gap: clamp(28px, 4vw, 62px); }
.ot-special-feature { position: relative; min-height: 520px; overflow: hidden; border: 1px solid #333; }
.ot-special-feature__image { position: absolute; inset: 0; }
.ot-special-feature__image::after { content: ""; position: absolute; inset: 0; background: linear-gradient(transparent 30%, rgba(0,0,0,.95)); }
.ot-special-feature__image img, .ot-special-feature__image .ot-placeholder { width: 100%; height: 100%; object-fit: cover; }
.ot-special-feature__body { position: absolute; left: 28px; right: 28px; bottom: 26px; z-index: 2; }
.ot-special-feature__body > span, .ot-special-item__kicker { color: var(--ot-accent); font-size: 11px; font-weight: 900; letter-spacing: .06em; text-transform: uppercase; }
.ot-special-feature__body h3 { margin: 9px 0 12px; font-size: clamp(30px, 3vw, 48px); }
.ot-special-feature__body p { max-width: 700px; margin: 0; color: #ddd; }
.ot-special-item { display: grid; grid-template-columns: 72px 150px 1fr; gap: 18px; align-items: center; min-height: 150px; padding: 14px 0; border-bottom: 1px solid #444; }
.ot-special-item__number { color: var(--ot-accent); font: 900 54px/.9 var(--ot-heading); }
.ot-special-item__image { height: 92px; overflow: hidden; }
.ot-special-item__image img, .ot-special-item__image .ot-placeholder { width: 100%; height: 100%; object-fit: cover; }
.ot-special-item h3 { margin-top: 6px; font-size: clamp(19px, 1.6vw, 25px); }

/* Newsletter: strong yellow envelope, MailPoet-compatible form. */
.ot-newsletter__inner { display: grid; grid-template-columns: 150px minmax(240px, .8fr) minmax(380px, 1.25fr); gap: clamp(24px, 4vw, 56px); align-items: center; padding: clamp(28px, 4vw, 52px); border: 1px solid #7e6714; border-top: 5px solid var(--ot-accent); background: #080808; color: #fff; }
.ot-newsletter__icon svg { width: 130px; max-width: 100%; fill: var(--ot-accent); stroke: #050505; stroke-width: 2; }
.ot-newsletter__copy h2 { font-size: clamp(34px, 3.4vw, 52px); text-transform: uppercase; }
.ot-newsletter__copy p { max-width: 470px; margin: 8px 0 0; color: #ddd; }
.ot-newsletter__form { min-width: 0; }
.ot-newsletter__button { display: inline-flex; align-items: center; justify-content: center; min-height: 50px; padding: 0 28px; background: var(--ot-accent); color: #111 !important; font-weight: 900; text-transform: uppercase; }
.ot-newsletter__privacy { margin: 8px 0 0; color: #aaa; font-size: 11px; font-style: italic; }
.ot-newsletter .mailpoet_form { margin: 0 !important; padding: 0 !important; background: transparent !important; border-radius: 0 !important; }
.ot-newsletter .mailpoet_form form, .ot-newsletter form.mailpoet_form { display: grid; grid-template-columns: 1fr auto; gap: 8px; padding: 0 !important; margin: 0 !important; }
.ot-newsletter .mailpoet_paragraph, .ot-newsletter p.mailpoet_form_paragraph { margin: 0 !important; }
.ot-newsletter input.mailpoet_text, .ot-newsletter input[type="email"] { width: 100% !important; min-height: 50px !important; border: 1px solid #fff !important; border-radius: 0 !important; padding: 10px 14px !important; background: #fff !important; color: #111 !important; font-family: var(--ot-body) !important; }
.ot-newsletter input.mailpoet_submit, .ot-newsletter input[type="submit"] { min-height: 50px !important; border: 1px solid var(--ot-accent) !important; border-radius: 0 !important; padding: 0 26px !important; background: var(--ot-accent) !important; color: #111 !important; font: 900 14px/1 var(--ot-heading) !important; text-transform: uppercase; }
.ot-newsletter .mailpoet_message, .ot-newsletter .parsley-errors-list { grid-column: 1 / -1; font-size: 12px; }

/* Lightweight video rail: thumbnails only until interaction. */
.ot-video-card { flex: 0 0 calc((100% - 44px) / 3.25); scroll-snap-align: start; }
.ot-video-card__media { position: relative; overflow: hidden; aspect-ratio: 16/9; background: #222; }
.ot-video-card__media img, .ot-video-card__media .ot-placeholder { width: 100%; height: 100%; object-fit: cover; }
.ot-video-play { position: absolute; left: 18px; bottom: 16px; display: grid; place-items: center; width: 54px; height: 38px; border: 0; background: var(--ot-accent); color: #111 !important; font-size: 18px; box-shadow: 0 3px 12px rgba(0,0,0,.35); }
.ot-video-card h3 { margin: 12px 0 0; font-size: clamp(19px, 1.7vw, 26px); }
.ot-video-modal { position: fixed; inset: 0; z-index: 3000; display: none; place-items: center; padding: 30px; }
.ot-video-modal.is-open { display: grid; }
.ot-video-modal__backdrop { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; background: rgba(0,0,0,.9); }
.ot-video-modal__dialog { position: relative; z-index: 1; width: min(1100px, 100%); background: #000; box-shadow: 0 20px 80px #000; }
.ot-video-modal__player { aspect-ratio: 16/9; }
.ot-video-modal iframe { width: 100%; height: 100%; border: 0; }
.ot-video-modal__close { position: absolute; right: 0; bottom: 100%; width: 46px; height: 46px; border: 0; background: var(--ot-accent); color: #111; font-size: 30px; }

/* Latest Stories and single native Most Read rail. */
.ot-stories { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(32px, 4vw, 64px); }
.ot-stories__items--grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.ot-stories__items--list { display: grid; gap: 1px; }
.ot-stories__items--list .ot-story-card { display: grid; grid-template-columns: 260px 1fr; border-width: 0 0 1px; }
.ot-stories__items--list .ot-card__image { aspect-ratio: 3/2; }
.ot-story-card { background: transparent; }
.ot-story-card .ot-card__body { padding-inline: 0; }
.ot-story-card h3 { font-size: clamp(19px, 1.55vw, 25px); }
.ot-most-read { align-self: start; margin-top: 0; padding: 22px; border: 1px solid #3a3a3a; background: #101010; position: sticky; top: calc(var(--ot-header-height) + 18px); }
.admin-bar .ot-most-read { top: calc(var(--ot-header-height) + 50px); }
.ot-most-read h2 { margin-bottom: 12px; padding-bottom: 12px; border-bottom: 4px solid var(--ot-accent); font-size: 30px; text-transform: uppercase; }
.ot-most-read h2 span { display: block; color: var(--ot-accent); font: 900 10px/1 var(--ot-body); letter-spacing: .08em; }
.ot-most-read ul, .ot-most-read ol { list-style: none; counter-reset: mostread; margin: 0; padding: 0; }
.ot-most-read li { counter-increment: mostread; position: relative; min-height: 76px; padding: 13px 0 13px 42px; border-bottom: 1px solid #333; }
.ot-most-read li::before { content: counter(mostread, decimal-leading-zero); position: absolute; left: 0; top: 14px; color: var(--ot-accent); font: 900 25px/1 var(--ot-heading); }
.ot-most-read li > a, .ot-most-read .tptn_after_thumb > a { font: 800 15px/1.18 var(--ot-heading); }
.ot-most-read .tptn_link > img, .ot-most-read img.tptn_thumb { display: none !important; }
.ot-most-read .tptn_after_thumb { margin: 0 !important; }
.ot-most-read .tptn_date, .ot-most-read time { display: block; margin-top: 6px; color: #888; font-size: 10px; text-transform: uppercase; }

/* Paper-mode homepage preserves the same structure with a light canvas. */
.ot-scheme-paper .ot-home-main { background: #f7f7f5; color: #111; }
.ot-scheme-paper .ot-card, .ot-scheme-paper .ot-most-read { background: #fff; border-color: #d9d9d9; color: #111; }
.ot-scheme-paper .ot-section-heading { border-color: #cfcfcf; }
.ot-scheme-paper .ot-special-item { border-color: #ccc; }
.ot-scheme-paper .ot-meta { color: #666; }
.ot-scheme-paper .ot-carousel-progress { background: #ddd; }
.ot-scheme-paper .ot-section-heading--videos .ot-section-heading__identity { background: var(--ot-accent); color: #111; }

/* Archives, pages, and articles. */
.ot-archive, .ot-article-shell, .ot-single, .ot-not-found { padding-top: clamp(42px, 6vw, 90px); padding-bottom: clamp(60px, 8vw, 110px); }
.ot-page-header { max-width: 920px; margin-bottom: 38px; padding-bottom: 22px; border-bottom: 5px solid var(--ot-accent); }
.ot-page-header > span { color: #746000; font-size: 12px; font-weight: 900; letter-spacing: .08em; text-transform: uppercase; }
.ot-page-header h1 { margin-top: 6px; font-size: clamp(44px, 6vw, 88px); text-transform: uppercase; }
.ot-archive-description { margin-top: 16px; max-width: 760px; font-size: 18px; }
.ot-archive-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 30px 24px; }
.ot-archive-card { background: #fff; color: #111; border-color: #ddd; }
.pagination { margin-top: 52px; }
.nav-links { display: flex; flex-wrap: wrap; gap: 6px; }
.page-numbers { display: grid; place-items: center; min-width: 42px; min-height: 42px; padding: 0 12px; border: 1px solid #bbb; font-weight: 800; }
.page-numbers.current { border-color: var(--ot-accent); background: var(--ot-accent); color: #111; }
.ot-article { max-width: 1280px; margin-inline: auto; }
.ot-article-header { max-width: 1050px; margin: 0 auto 36px; text-align: center; }
.ot-article-header .ot-categories { justify-content: center; }
.ot-article-header h1 { margin: 14px 0; font-size: clamp(44px, 6vw, 82px); }
.ot-article-deck { max-width: 850px; margin: 0 auto; color: #555; font-size: clamp(18px, 2vw, 25px); }
.ot-article-header .ot-meta { justify-content: center; color: #666; }
.ot-article-featured { max-width: 1280px; margin: 0 auto 42px; }
.ot-article-featured img { width: 100%; max-height: 760px; object-fit: cover; }
.ot-article-featured figcaption { padding-top: 8px; color: #666; font-size: 12px; }
.ot-article-layout { display: grid; grid-template-columns: minmax(0, var(--ot-reading)) minmax(250px, 340px); justify-content: center; gap: clamp(40px, 6vw, 90px); }
.ot-article-layout:has(.ot-article-sidebar:empty), .ot-article-layout:not(:has(.ot-article-sidebar)) { grid-template-columns: minmax(0, var(--ot-reading)); }
.ot-entry-content { min-width: 0; font-size: clamp(17px, 1.45vw, 20px); line-height: 1.72; }
.ot-entry-content > * { max-width: var(--ot-reading); margin-left: auto; margin-right: auto; }
.ot-entry-content > .alignwide { max-width: 1100px; }
.ot-entry-content > .alignfull { max-width: none; width: 100vw; margin-left: calc(50% - 50vw); }
.ot-entry-content h2, .ot-entry-content h3, .ot-entry-content h4 { margin-top: 1.6em; margin-bottom: .55em; }
.ot-entry-content h2 { font-size: clamp(30px, 3.5vw, 46px); }
.ot-entry-content h3 { font-size: clamp(25px, 2.7vw, 36px); }
.ot-entry-content a { color: #087fb9; text-decoration: underline; text-underline-offset: 2px; }
.ot-entry-content blockquote { margin-top: 1.7em; margin-bottom: 1.7em; padding: 20px 0 20px 28px; border-left: 5px solid var(--ot-accent); font-size: 1.2em; font-weight: 650; }
.ot-entry-content iframe { max-width: 100%; }
.ot-entry-content table { width: 100%; border-collapse: collapse; }
.ot-entry-content th, .ot-entry-content td { padding: 10px; border: 1px solid #ccc; text-align: left; }
.ot-article-sidebar .widget { margin-bottom: 30px; padding: 20px; border-top: 4px solid var(--ot-accent); background: #f3f3f3; }
.widget-title { margin-bottom: 15px; font-size: 24px; text-transform: uppercase; }
.ot-article-tags { margin-top: 40px; padding-top: 20px; border-top: 1px solid #ccc; }
.ot-article-tags > span { margin-right: 8px; font-weight: 800; }
.ot-single-share,
.scriptlesssocialsharing,
.scriptless-social-sharing { margin: 42px auto 0; padding: 18px; border: 1px solid #111; background: var(--ot-accent); color: #111; }
.ot-single-share > strong,
.scriptlesssocialsharing > strong,
.scriptless-social-sharing > strong { display: block; margin-bottom: 12px; font: 900 13px/1 var(--ot-body); letter-spacing: .07em; text-transform: uppercase; }
.ot-single-share__buttons,
.scriptlesssocialsharing__buttons,
.scriptless-social-sharing__buttons { display: flex; flex-wrap: wrap; gap: 7px; }
.ot-single-share__buttons a,
.scriptlesssocialsharing a.button,
.scriptlesssocialsharing__buttons a,
.scriptless-social-sharing a { display: inline-grid; place-items: center; width: 44px; height: 44px; margin: 0 !important; padding: 0 !important; border: 1px solid #111 !important; border-radius: 0 !important; background: var(--ot-accent) !important; color: #111 !important; text-decoration: none !important; box-shadow: none !important; }
.ot-single-share__buttons a:hover,
.scriptlesssocialsharing a.button:hover,
.scriptlesssocialsharing__buttons a:hover,
.scriptless-social-sharing a:hover { background: #111 !important; color: var(--ot-accent) !important; }
.ot-single-share__buttons svg { width: 21px; height: 21px; fill: currentColor; }
.ot-single-share__buttons .ot-share-email { flex: 1 1 100%; width: 100%; }
.ot-post-promotions { max-width: 1000px; margin: 38px auto 0; display: grid; gap: 18px; }
.ot-post-promo { position: relative; display: block; overflow: hidden; border: 1px solid #242424; background: #080808; }
.ot-post-promo img { position: relative; z-index: 1; width: 100%; max-height: 360px; object-fit: cover; }
.ot-post-promo--primary { min-height: 170px; }
.ot-post-promo__fallback { position: absolute; inset: 0; display: grid; grid-template-columns: repeat(3, 1fr); color: var(--ot-accent); }
.ot-post-promo__fallback > span { display: grid; place-content: center; justify-items: center; gap: 12px; border-right: 1px solid #303030; }
.ot-post-promo__fallback > span:last-child { border-right: 0; }
.ot-post-promo__fallback svg { width: 42px; height: 42px; fill: currentColor; }
.ot-post-promo__fallback strong { font: 900 15px/1 var(--ot-body); letter-spacing: .05em; text-transform: uppercase; }
.ot-post-promo__map { position: absolute; inset: 0; z-index: 2; display: grid; grid-template-columns: repeat(3, 1fr); }
.ot-post-promo__map a { position: relative; border-right: 1px solid transparent; }
.ot-post-promo__map a:last-child { border-right: 0; }
.ot-post-promo__map a:focus-visible { outline: 4px solid var(--ot-accent); outline-offset: -5px; }
.ot-post-promo__map span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.ot-post-promo--secondary img { aspect-ratio: 16/7; }
.ot-post-navigation { max-width: 1000px; margin: 60px auto 0; padding-top: 26px; border-top: 1px solid #ccc; }
.ot-post-navigation .nav-links { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.ot-post-navigation a { font: 800 20px/1.15 var(--ot-heading); }
.ot-post-navigation a span { display: block; margin-bottom: 5px; color: #777; font: 800 10px/1 var(--ot-body); text-transform: uppercase; }
.ot-comments { max-width: var(--ot-reading); margin: 60px auto 0; }
.comment-list { padding-left: 25px; }
.comment-body { padding: 18px 0; border-bottom: 1px solid #ddd; }
.ot-error-code { margin: 0; color: var(--ot-accent); font: 900 clamp(90px, 18vw, 240px)/.8 var(--ot-heading); }
.ot-not-found h1 { font-size: clamp(40px, 6vw, 80px); }
.ot-not-found .ot-search-form { max-width: 700px; margin: 30px 0; }

/* Footer. */
.ot-site-footer { background: #111; color: #ddd; border-top: 5px solid var(--ot-accent); }
.ot-site-footer > .ot-shell { padding-top: 50px; padding-bottom: 22px; }
.ot-footer-brand { display: flex; align-items: center; justify-content: space-between; gap: 30px; padding-bottom: 28px; border-bottom: 1px solid #383838; }
.ot-footer-wordmark { color: #fff !important; font: 900 clamp(32px, 4vw, 54px)/.95 var(--ot-body); letter-spacing: -.035em; text-transform: uppercase; }
.ot-footer-brand p { margin: 0; color: var(--ot-accent); font-size: 13px; }
.ot-footer-widgets { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; padding: 38px 0; }
.ot-footer-column h2, .ot-footer-column .widget-title { margin-bottom: 14px; color: var(--ot-accent); font-size: 22px; text-transform: uppercase; }
.ot-footer-column li { padding: 5px 0; }
.ot-footer-column a { color: #eee; }
.ot-footer-community { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; padding: 36px 0 24px; }
.ot-community-card { display: grid; grid-template-columns: 54px 1fr; gap: 16px; align-items: start; min-height: 150px; padding: 22px; border: 1px solid #333; background: #161616; color: #fff !important; transition: border-color .15s ease, background .15s ease; }
.ot-community-card:hover { border-color: var(--ot-accent); background: #1d1d1d; }
.ot-community-card__icon { display: grid; place-items: center; width: 54px; height: 54px; border: 1px solid var(--ot-accent); color: var(--ot-accent); }
.ot-community-card__icon svg { width: 29px; height: 29px; fill: currentColor; }
.ot-community-card strong { display: block; color: var(--ot-accent); font: 900 18px/1.1 var(--ot-body); text-transform: uppercase; }
.ot-community-card small { display: block; margin-top: 12px; color: #c9c9c9; font-size: 13px; line-height: 1.45; }
.ot-footer-license { display: flex; align-items: center; gap: 12px; padding: 0 0 28px; color: #bbb; font-size: 13px; }
.ot-footer-license a { color: var(--ot-accent); text-decoration: underline; text-underline-offset: 3px; }
.ot-license-marks { display: inline-flex; flex: 0 0 auto; gap: 4px; }
.ot-license-marks b { display: grid; place-items: center; width: 28px; height: 28px; border: 2px solid #fff; border-radius: 50%; color: #fff; font: 900 9px/1 var(--ot-body); }
.ot-footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 20px; padding-top: 18px; border-top: 1px solid #383838; color: #aaa; font-size: 12px; }
.ot-footer-social { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 5px; }
.ot-footer-social a { width: 34px; height: 34px; border: 1px solid var(--ot-accent); background: var(--ot-accent); color: #111; }
.ot-footer-social a:hover { background: #111; color: var(--ot-accent); }
.ot-footer-social svg { width: 18px; height: 18px; }

/* Sitewide color mode. The white masthead remains deliberately unchanged. */
body.ot-scheme-night { background: #090909; color: #f4f4f4; }
body.ot-scheme-night .ot-single,
body.ot-scheme-night .ot-article-shell,
body.ot-scheme-night .ot-archive,
body.ot-scheme-night .ot-not-found { color: #f4f4f4; }
body.ot-scheme-night .ot-article-deck,
body.ot-scheme-night .ot-article-header .ot-meta,
body.ot-scheme-night .ot-article-featured figcaption { color: #b8b8b8; }
body.ot-scheme-night .ot-entry-content a { color: var(--ot-accent); }
body.ot-scheme-night .ot-article-sidebar .widget { background: #151515; color: #eee; }
body.ot-scheme-night .ot-article-tags,
body.ot-scheme-night .ot-post-navigation { border-color: #3a3a3a; }
body.ot-scheme-night .ot-archive-card { background: #141414; border-color: #333; color: #fff; }
body.ot-scheme-paper { color-scheme: light; }
body.ot-scheme-night { color-scheme: dark; }

/* Motion preferences. */
@media (prefers-reduced-motion: reduce) {
	*, *::before, *::after { scroll-behavior: auto !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
.ot-force-reduced-motion *, .ot-force-reduced-motion *::before, .ot-force-reduced-motion *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }

@media (max-width: 1180px) {
	:root { --ot-header-height: 74px; }
	.ot-header-inner { grid-template-columns: minmax(190px, 270px) 1fr auto; gap: 16px; }
	.ot-header-social { display: none; }
	.ot-primary-menu { gap: 20px; }
	.ot-primary-menu > li > a { font-size: 13px; }
	.ot-analysis-card, .ot-video-card { flex-basis: calc((100% - 22px) / 2.35); }
	.ot-stories { grid-template-columns: minmax(0, 1fr) 300px; }
	.ot-stories__items--grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
	.admin-bar.ot-has-sticky-header .ot-site-header { top: 46px; }
	.ot-shell { width: min(100% - 28px, var(--ot-max)); }
	.ot-header-inner { width: min(100% - 24px, var(--ot-max)); grid-template-columns: minmax(170px, 1fr) auto; }
	.ot-primary-nav { display: none; }
	.ot-branding .custom-logo { max-height: 58px; }
	.ot-menu-toggle > span:last-child { display: none; }
	.ot-support-button { min-height: 42px; padding-inline: 13px; font-size: 12px; }
	.ot-hero__slides { height: min(72vh, 650px); min-height: 500px; }
	.ot-hero-slide__panel { left: 18px; right: 18px; bottom: 18px; padding: 20px; }
	.ot-hero-slide__panel h1 { font-size: clamp(34px, 7vw, 54px); }
	.ot-hero-slide__deck { display: none; }
	.ot-hero__status { right: 18px; bottom: 18px; }
	.ot-hero__filmstrip { padding-inline: 14px; }
	.ot-hero-thumb { flex-basis: 55%; }
	.ot-hero--split .ot-hero-slide.is-active { display: block; }
	.ot-hero--split .ot-hero-slide__image { position: absolute; }
	.ot-hero--split .ot-hero-slide__panel { position: absolute; left: 18px; right: 18px; bottom: 18px; top: auto; padding: 24px; border-left: 5px solid var(--ot-accent); border-top: 0; background: rgba(0,0,0,.9); }
	.ot-hero--split .ot-hero__status { left: auto; right: 32px; bottom: 38px; }
	.ot-specials__layout { grid-template-columns: 1fr; }
	.ot-special-feature { min-height: 480px; }
	.ot-newsletter__inner { grid-template-columns: 100px 1fr; }
	.ot-newsletter__form { grid-column: 1 / -1; }
	.ot-newsletter__icon svg { width: 90px; }
	.ot-stories { grid-template-columns: 1fr; }
	.ot-most-read { position: static; }
	.ot-article-layout { grid-template-columns: 1fr; }
	.ot-article-sidebar { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
	.ot-archive-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 600px) {
	:root { --ot-header-height: 66px; }
	.ot-header-inner { min-height: var(--ot-header-height); grid-template-columns: minmax(120px, 1fr) auto; gap: 4px; }
	.ot-branding .custom-logo { width: min(100%, 185px); max-height: 51px; }
	.ot-text-logo strong { font-size: 25px; }
	.ot-text-logo small { font-size: 8px; }
	.ot-icon-button { width: 34px; }
	.ot-support-button { min-width: 78px; padding: 0 9px; font-size: 10px; }
	.ot-header-actions { gap: 4px; }
	.ot-search-panel__inner { width: calc(100% - 24px); flex-direction: column; }
	.ot-search-close { width: 100%; }
	.ot-drawer__panel { padding: 20px; }
	.ot-hero__identity { top: 14px; left: 14px; }
	.ot-hero__identity span, .ot-hero__identity strong { padding: 7px 8px; font-size: 9px; }
	.ot-hero__slides { height: 530px; min-height: 0; }
	.ot-hero-slide__panel { left: 0; right: 0; bottom: 0; border-left: 0; border-top: 4px solid var(--ot-accent); }
	.ot-hero-slide__panel h1 { margin-bottom: 8px; font-size: clamp(30px, 9vw, 42px); }
	.ot-hero-slide__panel .ot-meta span { display: none; }
	.ot-hero__status { top: 58px; right: 14px; bottom: auto; padding: 5px; }
	.ot-hero__current { font-size: 22px; }
	.ot-hero__status .ot-hero__total { font-size: 12px; }
	.ot-hero__status .ot-carousel-controls { gap: 3px; margin-left: 0; }
	.ot-hero__status .ot-carousel-controls button { width: 38px; height: 38px; background: var(--ot-accent); color: #111; }
	.ot-hero-thumb { flex-basis: 78%; min-width: 250px; grid-template-columns: 110px 1fr; min-height: 112px; }
	.ot-hero-thumb__title { font-size: 14px; }
	.ot-section-heading__copy { display: block; }
	.ot-section-heading__identity { margin-bottom: 8px; }
	.ot-section-heading h2 { font-size: 30px; }
	.ot-section-heading__link { display: none; }
	.ot-heading-with-controls > .ot-carousel-controls { margin-bottom: 31px; }
	.ot-carousel-controls button { width: 38px; height: 38px; }
	.ot-analysis-card, .ot-analysis--focus .ot-analysis-card, .ot-video-card { flex-basis: 84%; transform: none; opacity: 1; }
	.ot-special-feature { min-height: 420px; }
	.ot-special-feature__body { left: 18px; right: 18px; bottom: 18px; }
	.ot-special-feature__body p { display: none; }
	.ot-special-item { grid-template-columns: 48px 105px 1fr; gap: 10px; min-height: 115px; }
	.ot-special-item__number { font-size: 38px; }
	.ot-special-item__image { height: 72px; }
	.ot-special-item h3 { font-size: 17px; }
	.ot-special-item .ot-meta { display: none; }
	.ot-newsletter__inner { display: block; text-align: center; padding: 28px 18px; }
	.ot-newsletter__icon svg { width: 92px; margin: 0 auto 16px; }
	.ot-newsletter__copy h2 { font-size: 36px; }
	.ot-newsletter__copy p { margin: 8px auto 20px; }
	.ot-newsletter .mailpoet_form form, .ot-newsletter form.mailpoet_form { grid-template-columns: 1fr; }
	.ot-newsletter input.mailpoet_submit, .ot-newsletter input[type="submit"] { width: 100% !important; }
	.ot-stories__items--grid { grid-template-columns: 1fr; }
	.ot-stories__items--list .ot-story-card { grid-template-columns: 125px 1fr; }
	.ot-stories__items--list .ot-card__body { padding: 0 0 0 12px; }
	.ot-stories__items--list .ot-card h3 { margin-top: 6px; font-size: 17px; }
	.ot-stories__items--list .ot-categories { display: none; }
	.ot-archive-grid { grid-template-columns: 1fr; }
	.ot-page-header h1 { font-size: 43px; }
	.ot-article-header { text-align: left; }
	.ot-article-header .ot-categories, .ot-article-header .ot-meta { justify-content: flex-start; }
	.ot-article-header h1 { font-size: clamp(38px, 12vw, 56px); }
	.ot-article-layout { display: block; }
	.ot-article-sidebar { display: block; margin-top: 40px; }
	.ot-post-navigation .nav-links { grid-template-columns: 1fr; }
	.ot-footer-brand { display: block; }
	.ot-footer-brand p { margin-top: 18px; }
	.ot-footer-widgets { grid-template-columns: 1fr; gap: 24px; }
	.ot-footer-community { grid-template-columns: 1fr; }
	.ot-community-card { min-height: 0; }
	.ot-footer-license { align-items: flex-start; }
	.ot-footer-bottom { align-items: flex-start; flex-direction: column; }
	.ot-footer-social { justify-content: flex-start; }
}
