:root {
	--font-heading: "Manrope", "Inter", system-ui, sans-serif;
	--font-body: "Inter", system-ui, sans-serif;
	--color-text: #1a1a1a;
	--color-text-soft: #5f5f5f;
	--color-text-muted: #7a7a7a;
	--color-accent: #d94c72;
	--color-accent-hover: #b93b5d;
	--text-base-size: 18px;
	--text-base-line-height: 1.65;
	--text-reading-line-height: 1.75;
	--text-lead-size: 1.25rem;
	--text-lead-line-height: 1.7;
	--h1-size: clamp(2.25rem, 4vw, 4rem);
	--h1-line-height: 0.98;
	--h1-letter-spacing: -0.04em;
	--h2-size: clamp(1.75rem, 2.4vw, 2.5rem);
	--h2-line-height: 1.08;
	--h2-letter-spacing: -0.03em;
	--h3-size: clamp(1.375rem, 1.8vw, 1.75rem);
	--h3-line-height: 1.15;
	--h3-letter-spacing: -0.02em;
	--h4-size: 1.125rem;
	--h4-line-height: 1.3;
	--meta-size: 0.875rem;
	--meta-line-height: 1.5;
	--nav-size: 0.82rem;
	--nav-letter-spacing: 0.03em;
	--odp-black: #050505;
	--odp-text: var(--color-text);
	--odp-muted: var(--color-text-muted);
	--odp-pink: var(--color-accent);
	--odp-blue: #72bfdf;
	--odp-light: #f7f7f7;
	--odp-border: #e5e5e5;
	--odp-wrap: 1180px;
	--odp-wide: 1920px;
}

* {
	box-sizing: border-box;
}

html {
	font-size: 100%;
	-webkit-text-size-adjust: 100%;
}

body {
	margin: 0;
	background: #fff;
	color: var(--color-text);
	font-family: var(--font-body);
	font-size: var(--text-base-size);
	line-height: var(--text-base-line-height);
	font-weight: 400;
	letter-spacing: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}

a {
	color: inherit;
	text-decoration: none;
	transition: color .2s ease, text-decoration-color .2s ease, opacity .2s ease;
}

a:hover,
a:focus {
	color: var(--color-accent-hover);
}

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

h1,
h2,
h3 {
	font-family: var(--font-heading);
	color: var(--color-text);
	margin: 0;
}

h1 {
	font-size: var(--h1-size);
	line-height: var(--h1-line-height);
	font-weight: 800;
	letter-spacing: var(--h1-letter-spacing);
}

h2 {
	font-size: var(--h2-size);
	line-height: var(--h2-line-height);
	font-weight: 800;
	letter-spacing: var(--h2-letter-spacing);
}

h3 {
	font-size: var(--h3-size);
	line-height: var(--h3-line-height);
	font-weight: 700;
	letter-spacing: var(--h3-letter-spacing);
}

h4,
h5,
h6 {
	font-family: var(--font-body);
	font-size: var(--h4-size);
	line-height: var(--h4-line-height);
	font-weight: 700;
	color: var(--color-text);
	margin: 0;
}

.entry-title,
.page-title,
.archive-title,
.wp-block-post-title,
.post-card h2,
.mini-card h3,
.featured-copy h2,
.sidebar-related h2,
.related-inline h2 {
	font-family: var(--font-heading);
}

.main-navigation,
.main-navigation a,
.primary-menu,
.primary-menu a,
.primary-nav,
.primary-nav a {
	font-family: var(--font-body);
}

input,
textarea,
select,
button {
	font: inherit;
}

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

.skip-link:focus {
	left: 1rem;
	top: 1rem;
	z-index: 1000;
	width: auto;
	height: auto;
	padding: .6rem .9rem;
	clip: auto;
	background: #fff;
	border: 2px solid var(--odp-black);
}

.content-wrap {
	width: min(var(--odp-wrap), calc(100% - 48px));
	margin-inline: auto;
}

.home-wrap {
	width: min(1680px, calc(100% - 64px));
	margin-inline: auto;
}

.site-header {
	background: #fff;
}

.header-top {
	border-bottom: 1px solid #f1f1f1;
}

.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	min-height: 108px;
	padding: 8px 36px;
}

.site-brand {
	display: inline-flex;
	align-items: center;
	gap: 32px;
	color: var(--color-text);
}

.site-brand img {
	width: 64px;
	height: 64px;
	object-fit: contain;
}

.site-brand span {
	display: grid;
	line-height: 1.04;
}

.site-brand strong,
.site-brand em {
	font-family: var(--font-body);
	font-style: normal;
	font-weight: 700;
	font-size: 21px;
	letter-spacing: -.02em;
}

.header-search {
	display: flex;
	width: min(520px, 36vw);
	height: 39px;
}

.header-search input {
	width: 100%;
	border: 0;
	background: #f6f6f6;
	padding: 0 14px;
	color: var(--color-text);
	font-size: .95rem;
	font-weight: 500;
}

.header-search button {
	position: relative;
	width: 39px;
	border: 0;
	background: var(--odp-blue);
	color: #fff;
	font-weight: 700;
	cursor: pointer;
}

.search-glyph {
	position: absolute;
	left: 14px;
	top: 12px;
	width: 10px;
	height: 10px;
	border: 2px solid #fff;
	border-radius: 50%;
}

.search-glyph::after {
	content: "";
	position: absolute;
	right: -6px;
	bottom: -5px;
	width: 7px;
	height: 2px;
	background: #fff;
	transform: rotate(45deg);
	transform-origin: left center;
}

.primary-nav {
	background: #050505;
	min-height: 39px;
}

.primary-nav .menu {
	display: flex;
	align-items: center;
	gap: 0;
	width: min(var(--odp-wide), 100%);
	margin: 0;
	padding: 0 24px;
	list-style: none;
}

.primary-nav a {
	display: block;
	padding: 13px 25px;
	color: #bdbdbd;
	font-family: var(--font-body);
	font-size: var(--nav-size);
	line-height: 1;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: var(--nav-letter-spacing);
}

.primary-nav a:hover,
.primary-nav .current-menu-item > a {
	color: #fff;
}

.menu-toggle {
	display: none;
	width: 100%;
	border: 0;
	background: #050505;
	color: #fff;
	padding: 14px 24px;
	text-align: left;
	font-family: var(--font-body);
	font-size: var(--nav-size);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: var(--nav-letter-spacing);
}

.home-hero {
	padding: 38px 0 28px;
	background: #fff;
}

.home-topic-focus {
	padding: 38px 0 10px;
	background: #fff;
	--topic-hero-gap: 40px;
}

.archive-header h1,
.page-header h1 {
	margin: 0 0 8px;
}

.featured-post {
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) minmax(380px, .82fr);
	gap: var(--topic-hero-gap);
	align-items: center;
}

.featured-media img,
.post-card-media img,
.mini-media img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.featured-copy h2 {
	margin: 10px 0 14px;
	font-size: clamp(2rem, 3vw, 3rem);
}

.featured-copy h2 a,
.post-card h2 a,
.mini-card h3 a,
.sidebar-post a:first-child {
	color: var(--odp-text);
}

.featured-copy p,
.post-card p,
.sidebar-post p {
	color: var(--color-text-soft);
	font-family: var(--font-body);
}

.section-heading {
	display: flex;
	align-items: center;
	margin: 46px 0 22px;
}

.section-heading h2 {
	margin: 0;
	font-size: clamp(1.625rem, 2vw, 2rem);
}

.section-subheading {
	margin: 0 0 18px;
}

.section-subheading h3 {
	font-size: 1.125rem;
	line-height: 1.2;
}

.topic-focus-related {
	margin-top: 34px;
	display: grid;
	grid-template-columns: minmax(0, 1.6fr) minmax(380px, .82fr);
	gap: var(--topic-hero-gap);
	align-items: start;
}

.topic-focus-posts {
	grid-column: 1;
}

.topic-focus-sidebar {
	grid-column: 2;
}

.topic-focus-sidebar .ad-slot-ad_home_hero {
	margin-top: 0;
}

.home-grid-row + .home-grid-row {
	margin-top: 34px;
}

.post-grid,
.archive-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 34px;
}

.home-latest .post-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 38px 32px;
}

.post-grid-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.post-grid-4 {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 38px 32px;
}

.post-card {
	min-width: 0;
}

.post-card h2 {
	margin: 13px 0 8px;
	font-size: clamp(1.35rem, 1.5vw, 1.6rem);
	line-height: 1.18;
}

.post-card p {
	margin: 0 0 12px;
	font-size: 1rem;
	line-height: 1.68;
}

.entry-tax {
	color: color-mix(in srgb, var(--color-accent) 88%, white);
	font-family: var(--font-body);
	font-size: 0.76rem;
	line-height: var(--meta-line-height);
	font-weight: 500;
	letter-spacing: .06em;
	text-transform: uppercase;
}

.read-more {
	font-family: var(--font-body);
	font-size: var(--meta-size);
	font-weight: 700;
	letter-spacing: .06em;
	text-transform: uppercase;
	color: var(--color-accent);
}

.mini-grid,
.related-grid {
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 26px;
}

.mini-grid-3 {
	grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.mini-grid-5 {
	grid-template-columns: repeat(5, minmax(0, 1fr));
	gap: 28px;
}

.mini-grid-6 {
	grid-template-columns: repeat(6, minmax(0, 1fr));
	gap: 24px;
}

.home-categories .mini-grid {
	grid-template-columns: repeat(4, minmax(0, 1fr));
	gap: 30px;
}

.mini-card h3 {
	margin: 10px 0 0;
	font-size: 1.125rem;
	line-height: 1.25;
}

.home-grid-block .mini-card h3 {
	margin: 13px 0 0;
	font-size: clamp(1.35rem, 1.5vw, 1.6rem);
	line-height: 1.18;
}

.home-categories .mini-card h3 {
	font-size: 1.35rem;
	line-height: 1.16;
}

.article-header {
	padding: 64px 0 56px;
}

.article-header h1 {
	max-width: 1480px;
	margin: 0;
	font-size: var(--h1-size);
	line-height: 1.02;
	letter-spacing: var(--h1-letter-spacing);
}

.article-hero {
	width: 100%;
	margin: 0 0 48px;
}

.article-hero img {
	width: 100%;
	max-height: 1280px;
	object-fit: cover;
	object-position: center;
}

.article-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) minmax(240px, 300px);
	gap: 72px;
	align-items: start;
}

.article-main {
	min-width: 0;
}

.entry-content,
.post-content,
.wp-block-post-content {
	font-family: var(--font-body);
	font-size: 1.125rem;
	line-height: var(--text-reading-line-height);
	color: var(--color-text);
}

.entry-content > *:first-child,
.post-content > *:first-child,
.wp-block-post-content > *:first-child,
.entry-content .elementor-widget-container > *:first-child {
	margin-top: 0;
}

.entry-content p,
.post-content p,
.wp-block-post-content p {
	margin: 0 0 20px;
}

.article-lead {
	margin: 0 0 28px;
	font-family: var(--font-body);
	font-size: var(--text-lead-size);
	line-height: var(--text-lead-line-height);
	font-weight: 400;
	color: var(--color-text-soft);
}

.entry-content h2,
.entry-content h3,
.entry-content h4,
.post-content h2,
.post-content h3,
.post-content h4,
.wp-block-post-content h2,
.wp-block-post-content h3,
.wp-block-post-content h4 {
	margin: 44px 0 16px;
	color: var(--color-text);
}

.entry-content h2,
.post-content h2,
.wp-block-post-content h2 {
	font-size: var(--h2-size);
	line-height: var(--h2-line-height);
	letter-spacing: var(--h2-letter-spacing);
}

.entry-content h3,
.post-content h3,
.wp-block-post-content h3 {
	font-size: var(--h3-size);
	line-height: var(--h3-line-height);
	letter-spacing: var(--h3-letter-spacing);
}

.entry-content h4,
.post-content h4,
.wp-block-post-content h4 {
	font-family: var(--font-body);
	font-size: var(--h4-size);
	line-height: var(--h4-line-height);
	letter-spacing: 0;
}

.entry-content ul,
.entry-content ol,
.post-content ul,
.post-content ol,
.wp-block-post-content ul,
.wp-block-post-content ol {
	margin: 0 0 24px 24px;
	padding: 0;
}

.entry-content li,
.post-content li,
.wp-block-post-content li {
	margin-bottom: 10px;
	font-size: 1.125rem;
	line-height: var(--text-reading-line-height);
}

.entry-content blockquote,
.post-content blockquote,
.wp-block-post-content blockquote {
	margin: 34px 0;
	padding: 24px 28px;
	border-left: 4px solid var(--odp-pink);
	background: #fafafa;
	font-family: var(--font-heading);
	font-size: clamp(1.375rem, 2.3vw, 1.75rem);
	line-height: 1.4;
	font-weight: 700;
	letter-spacing: -0.02em;
}

.entry-content table,
.post-content table,
.wp-block-post-content table {
	width: 100%;
	border-collapse: collapse;
	margin: 28px 0;
	font-size: 15px;
}

.entry-content th,
.entry-content td,
.post-content th,
.post-content td,
.wp-block-post-content th,
.wp-block-post-content td {
	border: 1px solid var(--odp-border);
	padding: 10px 12px;
	text-align: left;
}

.entry-content th,
.post-content th,
.wp-block-post-content th {
	background: #f7f7f7;
}

.entry-content img,
.post-content img,
.wp-block-post-content img {
	margin: 30px auto;
}

.entry-content a,
.post-content a,
.wp-block-post-content a,
.archive-description a,
.not-found p a {
	color: var(--color-text);
	text-decoration: underline;
	text-decoration-color: rgb(217 76 114 / 35%);
	text-underline-offset: .14em;
}

.entry-content a:hover,
.post-content a:hover,
.wp-block-post-content a:hover,
.archive-description a:hover,
.not-found p a:hover {
	color: var(--color-accent);
	text-decoration-color: var(--color-accent);
}

.entry-content .elementor,
.entry-content .elementor-section,
.entry-content .elementor-container,
.entry-content .elementor-column,
.entry-content .elementor-widget-wrap,
.entry-content .elementor-widget-container {
	display: block;
	width: auto;
	max-width: none;
	margin: 0;
	padding: 0;
}

.entry-content .elementor-widget {
	margin: 0 0 20px;
}

.elementor-toggle {
	margin-top: 38px;
	border-top: 1px solid var(--odp-border);
}

.elementor-tab-title,
.elementor-toggle-title {
	display: block;
	padding: 18px 0;
	color: #111;
	font-weight: 800;
	cursor: pointer;
}

.elementor-tab-content {
	display: block;
	padding-bottom: 18px;
	color: var(--color-text-soft);
}

.article-sidebar {
	position: sticky;
	top: 20px;
	padding-top: 4px;
}

.article-sidebar .entry-tax {
	margin-bottom: 18px;
}

.share-links,
.footer-social {
	display: flex;
	align-items: center;
	gap: 9px;
	margin: 16px 0 48px;
}

.share-link,
.footer-social a {
	display: inline-grid;
	place-items: center;
	width: 36px;
	height: 36px;
	border-radius: 999px;
	color: #fff;
	font-size: 14px;
	font-weight: 800;
}

.share-facebook,
.footer-social a:nth-of-type(1) {
	background: #32599d;
}

.share-twitter,
.footer-social a:nth-of-type(3) {
	background: #1da1f2;
}

.share-pinterest,
.footer-social a:nth-of-type(2) {
	background: #cc092f;
}

.sidebar-related h2,
.related-inline h2 {
	margin: 0 0 24px;
	font-size: clamp(1.5rem, 1.8vw, 1.85rem);
}

.sidebar-post {
	display: grid;
	grid-template-columns: 1fr;
	gap: 10px;
	margin-bottom: 38px;
}

.sidebar-post-media {
	display: block;
}

.sidebar-post-img {
	width: 100%;
	aspect-ratio: 16 / 10;
	object-fit: cover;
}

.sidebar-post-title {
	color: var(--color-text);
	font-family: var(--font-heading);
	font-size: 1.05rem;
	line-height: 1.32;
	font-weight: 700;
}

.sidebar-post p {
	margin: 0;
	font-size: 0.95rem;
	line-height: 1.6;
}

.related-inline {
	margin-top: 48px;
	padding-top: 26px;
	border-top: 1px solid var(--odp-border);
}

.ad-slot {
	margin: 32px 0;
	text-align: center;
}

.ad-slot-empty {
	display: grid;
	place-items: center;
	min-height: 120px;
	border: 1px dashed #c8c8c8;
	background: #fafafa;
	color: #aaa;
	font-size: 12px;
	text-transform: uppercase;
	letter-spacing: .08em;
}

.archive-wrap,
.page-wrap {
	padding-block: 58px 80px;
}

.archive-header {
	margin-bottom: 34px;
}

.archive-description {
	max-width: 720px;
	color: var(--color-text-soft);
	font-family: var(--font-body);
}

.navigation.pagination {
	margin: 52px 0 0;
}

.nav-links {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 12px;
	background: #f5f5f5;
	color: #222;
	font-family: var(--font-body);
	font-size: var(--meta-size);
	font-weight: 600;
}

.page-numbers.current {
	background: #050505;
	color: #fff;
}

.site-footer {
	margin-top: 90px;
	border-top: 1px solid #111;
}

.footer-main {
	display: grid;
	grid-template-columns: repeat(2, minmax(0, 1fr));
	gap: 80px;
	padding: 54px 0 46px;
}

.footer-tags h2,
.footer-newsletter h2 {
	margin: 0 0 20px;
	font-family: var(--font-body);
	font-size: 1.125rem;
	line-height: 1.4;
	letter-spacing: 0;
}

.footer-tags .tag-cloud-link {
	display: inline-block;
	margin: 0 8px 8px 0;
	color: var(--color-accent);
	font-family: var(--font-body);
	font-weight: 600;
	line-height: 1.1;
}

.footer-kicker {
	display: inline-block;
	margin-bottom: 8px;
	color: var(--color-accent);
	font-family: var(--font-body);
	font-size: var(--meta-size);
	font-weight: 700;
	letter-spacing: .08em;
	text-transform: uppercase;
}

.newsletter-form {
	display: flex;
	max-width: 760px;
	height: 46px;
	margin-top: 16px;
}

.newsletter-form input {
	flex: 1;
	border: 0;
	background: #f6f6f6;
	padding: 0 18px;
	color: var(--color-text);
	font-size: 0.95rem;
	font-weight: 500;
}

.newsletter-form button {
	width: 220px;
	border: 0;
	background: #050505;
	color: #fff;
	font-family: var(--font-body);
	font-size: var(--nav-size);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: var(--nav-letter-spacing);
}

.footer-social {
	margin: 46px 0 0;
	justify-content: center;
}

.footer-social span {
	margin-right: 10px;
	color: var(--color-text-muted);
	font-family: var(--font-body);
	font-size: var(--meta-size);
	font-weight: 500;
}

.footer-bottom {
	background: #050505;
	color: #aaa;
}

.footer-bottom-inner {
	display: grid;
	grid-template-columns: 130px 1fr auto;
	align-items: center;
	gap: 30px;
	padding: 16px 0;
	font-family: var(--font-body);
	font-size: var(--meta-size);
}

.footer-logo img {
	width: 106px;
	height: 106px;
	object-fit: contain;
}

.footer-bottom .menu {
	display: flex;
	justify-content: center;
	gap: 70px;
	margin: 0;
	padding: 0;
	list-style: none;
}

.footer-bottom a {
	color: #aaa;
	font-family: var(--font-body);
	text-transform: uppercase;
	letter-spacing: var(--nav-letter-spacing);
}

.footer-bottom p {
	margin: 0;
}

.widget {
	margin-bottom: 34px;
}

.widget-title {
	margin: 0 0 14px;
	font-family: var(--font-body);
	font-size: 1.125rem;
	font-weight: 700;
	line-height: 1.4;
	letter-spacing: 0;
}

.search-form {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-top: 18px;
}

.search-form .search-field {
	flex: 1 1 260px;
	min-height: 46px;
	border: 1px solid var(--odp-border);
	padding: 0 16px;
	background: #fff;
	color: var(--color-text);
}

.search-form .search-submit {
	min-height: 46px;
	padding: 0 18px;
	border: 0;
	background: var(--color-accent);
	color: #fff;
	font-family: var(--font-body);
	font-size: var(--nav-size);
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: var(--nav-letter-spacing);
	cursor: pointer;
}

.meta,
.entry-meta,
.breadcrumbs,
.excerpt,
.wp-caption-text,
.search-form label,
.search-form .search-field::placeholder,
.header-search input::placeholder,
.newsletter-form input::placeholder {
	font-family: var(--font-body);
	font-size: var(--meta-size);
	line-height: var(--meta-line-height);
	font-weight: 500;
	color: var(--color-text-muted);
}

@media (max-width: 1180px) {
	.site-brand {
		gap: 48px;
	}

	.home-wrap {
		width: min(100% - 48px, 1440px);
	}

	.article-layout {
		gap: 64px;
	}

	.primary-nav a {
		padding-inline: 16px;
	}
}

@media (max-width: 900px) {
	.header-inner {
		flex-direction: column;
		align-items: stretch;
		padding: 18px 24px;
	}

	.site-brand {
		gap: 18px;
	}

	.header-search {
		width: 100%;
	}

	.menu-toggle {
		display: block;
	}

	.primary-nav .menu {
		display: none;
		flex-direction: column;
		align-items: stretch;
		padding: 0;
	}

	.primary-nav .menu.is-open {
		display: flex;
	}

	.primary-nav a {
		padding: 15px 24px;
		border-top: 1px solid #1d1d1d;
	}

	.featured-post,
	.topic-focus-related,
	.article-layout,
	.footer-main,
	.footer-bottom-inner {
		grid-template-columns: 1fr;
	}

	.article-sidebar {
		position: static;
	}

	.post-grid,
	.archive-grid,
	.mini-grid,
	.related-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.home-latest .post-grid,
	.home-categories .mini-grid {
		grid-template-columns: repeat(2, minmax(0, 1fr));
	}

	.footer-bottom-inner {
		text-align: center;
		justify-items: center;
	}

	.footer-bottom .menu {
		flex-wrap: wrap;
		gap: 18px 28px;
	}
}

@media (max-width: 767px) {
	body {
		font-size: 17px;
	}

	.content-wrap {
		width: min(100% - 28px, var(--odp-wrap));
	}

	.home-wrap {
		width: min(100% - 28px, 100%);
	}

	.site-brand img {
		width: 54px;
		height: auto;
	}

	.site-brand strong,
	.site-brand em {
		font-size: 17px;
	}

	.article-header {
		padding: 38px 0 34px;
	}

	.article-hero {
		margin-bottom: 32px;
	}

	.article-hero img {
		min-height: 320px;
	}

	.entry-content {
		font-size: 1.0625rem;
	}

	.article-lead {
		font-size: 1.125rem;
	}

	.entry-content h2 {
		font-size: 27px;
	}

	.post-grid,
	.archive-grid,
	.mini-grid,
	.related-grid {
		grid-template-columns: 1fr;
	}

	.home-latest .post-grid,
	.home-categories .mini-grid {
		grid-template-columns: 1fr;
	}

	.newsletter-form {
		height: auto;
		flex-direction: column;
		gap: 8px;
	}

	.newsletter-form input,
	.newsletter-form button {
		width: 100%;
		min-height: 46px;
	}

	.footer-bottom-inner {
		padding: 22px;
	}
}

/* Ad Slots - Homepage */
.ad-slot-ad_home_hero {
	margin-top: 24px;
	min-height: 250px;
	display: flex;
	align-items: flex-start;
	justify-content: center;
	background: #fafafa;
}

.home-ad-interstitial {
	margin: 40px auto;
	padding: 20px 0;
	border-top: 1px solid var(--odp-border);
	border-bottom: 1px solid var(--odp-border);
	min-height: 120px;
	display: flex;
	justify-content: center;
	align-items: center;
}

.ad-slot-ad_home_inter {
	width: 100%;
	display: flex;
	justify-content: center;
}

/* Informacja o reklamie dla debugowania */
.ad-slot-empty {
	background: #eee;
	color: #999;
	font-size: 11px;
	text-transform: uppercase;
	padding: 10px;
	text-align: center;
	border: 1px dashed #ccc;
}

/* Grid Block with Sidebar Ad */
.has-ad-sidebar .grid-block-content {
	display: grid;
	gap: 32px;
}

.ad-ad-on-right .grid-block-content {
	grid-template-columns: minmax(0, 1fr) 300px;
}

.ad-ad-on-left .grid-block-content {
	grid-template-columns: 300px minmax(0, 1fr);
}

.ad-ad-on-left .grid-block-rows {
	grid-column: 2;
}

.ad-ad-on-left .grid-block-ad {
	grid-column: 1;
	grid-row: 1;
}

.grid-block-ad {
	display: flex;
	flex-direction: column;
}

.grid-block-ad .ad-slot {
	height: 100%;
	min-height: 600px; /* Miejsce na dwa posty pionowo */
	background: #fafafa;
}

/* Responsywność - na mobile reklama ląduje pod lub nad treścią */
@media (max-width: 1024px) {
	.has-ad-sidebar .grid-block-content {
		grid-template-columns: 1fr !important;
	}
	
	.ad-ad-on-left .grid-block-rows,
	.ad-ad-on-left .grid-block-ad {
		grid-column: 1;
	}
	
	.grid-block-ad .ad-slot {
		min-height: 250px;
	}
}

/* Fix for Category Feed with Ad Sidebar */
.grid-block-rows {
	min-width: 0; /* Zapobiega wypychaniu kontenera przez szerokie siatki */
	width: 100%;
}

.category-strip .grid-block-content {
	display: grid;
	gap: 32px;
}

/* Upewnienie się, że siatki postów wewnątrz rzędów zawsze zajmują 100% szerokości */
.grid-block-rows > div {
	width: 100%;
}
