:root {
	--posinfo-primary: #e91e8f;
	--posinfo-secondary: #5b2cff;
	--posinfo-text: #111111;
	--posinfo-muted: #666666;
	--posinfo-border: #e5e5e5;
	--posinfo-soft: #f7f7f9;
	--posinfo-dark: #07111f;
	--posinfo-white: #ffffff;
	--container: 1180px;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	background: var(--posinfo-white);
	color: var(--posinfo-text);
	font-family: Inter, Arial, sans-serif;
	font-size: 15px;
	line-height: 1.6;
	overflow-x: hidden;
}

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

a:hover {
	color: var(--posinfo-primary);
}

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

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

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

.site-header {
	position: relative;
	z-index: 50;
	background: rgba(255, 255, 255, .96);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--posinfo-border);
}

.main-header {
	position: sticky;
	top: 0;
	z-index: 55;
	background:
		radial-gradient(circle at 7% 50%, rgba(233,30,143,.16), transparent 24%),
		radial-gradient(circle at 92% 50%, rgba(91,44,255,.18), transparent 26%),
		linear-gradient(90deg, rgba(233,30,143,.08), rgba(255,255,255,.96) 28%, rgba(255,255,255,.96) 68%, rgba(91,44,255,.12)),
		linear-gradient(180deg, #fff, #fbfcff);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid rgba(91,44,255,.14);
	box-shadow: 0 12px 30px rgba(91, 44, 255, .07);
}

.main-header::before {
	content: "";
	position: absolute;
	inset: 0 0 auto;
	height: 5px;
	background: linear-gradient(90deg, var(--posinfo-primary), #f85bb7 36%, var(--posinfo-secondary));
	pointer-events: none;
}

.admin-bar .main-header {
	top: 32px;
}

.top-bar {
	border-bottom: 1px solid var(--posinfo-border);
	font-size: 12px;
	color: #303846;
	line-height: 1.2;
}

.top-bar-inner {
	min-height: 28px;
}

.top-bar-inner,
.main-header-inner,
.breaking-inner,
.newsletter-inner,
.footer-bottom {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
}

.top-meta,
.top-links,
.top-menu,
.social-links {
	display: flex;
	align-items: center;
	gap: 16px;
}

.top-meta,
.top-menu {
	min-width: 0;
	flex-wrap: wrap;
	gap: 8px 16px;
}

.top-links {
	min-width: 0;
	flex: 1;
	justify-content: flex-end;
}

.top-menu {
	justify-content: flex-end;
}

.social-links {
	flex: 0 0 auto;
	gap: 8px;
}

.social-links a,
.footer-social-links a {
	display: inline-grid;
	place-items: center;
	width: 28px;
	height: 28px;
	border: 1px solid currentColor;
	border-radius: 50%;
	opacity: .82;
}

.social-links a:hover,
.footer-social-links a:hover {
	opacity: 1;
	transform: translateY(-1px);
}

.social-links svg,
.footer-social-links svg {
	width: 15px;
	height: 15px;
	fill: currentColor;
}

.top-menu,
.primary-menu,
.site-footer ul {
	padding: 0;
	margin: 0;
	list-style: none;
}

.top-bar a,
.site-footer a {
	color: inherit;
}

.top-bar a:hover {
	color: var(--posinfo-primary);
}

.main-header-inner {
	position: relative;
	min-height: 86px;
}

.site-branding {
	display: inline-flex;
	align-items: center;
	min-width: 0;
	max-width: min(58vw, 360px);
	padding: 9px 16px 9px 0;
	background: transparent;
	box-shadow: none;
}

.custom-logo {
	max-width: 230px;
	max-height: 72px;
	height: auto;
	object-fit: contain;
}

.site-logo-text {
	display: inline-flex;
	align-items: center;
	min-width: 0;
	max-width: 100%;
	gap: 10px;
	flex-direction: row;
	line-height: 1;
	font-weight: 800;
	font-size: 26px;
	color: var(--posinfo-primary);
}

.site-logo-icon {
	display: inline-grid;
	place-items: center;
	flex: 0 0 auto;
	width: 42px;
	height: 42px;
}

.site-logo-icon img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.site-logo-copy {
	display: inline-flex;
	flex-direction: column;
	min-width: 0;
}

.site-logo-text small {
	margin-top: 4px;
	color: #222;
	font-size: 9px;
	letter-spacing: 0;
	text-align: center;
}

.primary-navigation {
	border-top: 1px solid var(--posinfo-border);
	background: #fff;
	box-shadow: 0 10px 24px rgba(15, 23, 42, .035);
}

.nav-inner {
	display: flex;
	align-items: center;
	min-height: 46px;
	overflow-x: auto;
	scrollbar-width: none;
}

.nav-inner::-webkit-scrollbar {
	display: none;
}

.primary-menu {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 0;
	min-width: max-content;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	white-space: nowrap;
}

.primary-menu > li > a {
	position: relative;
	display: inline-flex;
	align-items: center;
	min-height: 46px;
	padding: 0 15px;
	color: #1f2937;
}

.primary-menu > li:first-child > a {
	padding-left: 0;
}

.primary-menu > li > a::after {
	content: "";
	position: absolute;
	left: 15px;
	right: 15px;
	bottom: 0;
	height: 3px;
	border-radius: 999px 999px 0 0;
	background: linear-gradient(135deg, var(--posinfo-primary), var(--posinfo-secondary));
	opacity: 0;
	transform: scaleX(.35);
	transition: opacity .2s ease, transform .2s ease;
}

.primary-menu > li:first-child > a::after {
	left: 0;
}

.primary-menu > li > a:hover::after,
.primary-menu .current-menu-item > a::after,
.primary-menu .current_page_item > a::after {
	opacity: 1;
	transform: scaleX(1);
}

.primary-menu .current-menu-item > a,
.primary-menu .current_page_item > a {
	color: var(--posinfo-primary);
}

.primary-menu li {
	position: relative;
}

.primary-menu ul {
	position: absolute;
	top: 100%;
	left: 0;
	min-width: 210px;
	padding: 12px 0;
	margin: 0;
	list-style: none;
	background: #fff;
	border: 1px solid var(--posinfo-border);
	box-shadow: 0 18px 50px rgba(15, 23, 42, .12);
	opacity: 0;
	visibility: hidden;
	transform: translateY(8px);
	transition: .2s ease;
}

.primary-menu li:hover > ul {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

.primary-menu ul a {
	display: block;
	padding: 8px 16px;
}

.header-actions {
	display: flex;
	align-items: center;
	gap: 14px;
	flex: 0 0 auto;
}

.search-toggle,
.menu-toggle {
	display: inline-grid;
	place-items: center;
	border: 0;
	background: transparent;
	color: var(--posinfo-text);
	cursor: pointer;
}

.search-toggle {
	width: 44px;
	height: 44px;
	position: relative;
}

.search-toggle span {
	position: relative;
	width: 18px;
	height: 18px;
	border: 2px solid currentColor;
	border-radius: 50%;
}

.search-toggle span::after {
	content: "";
	position: absolute;
	right: -6px;
	bottom: -5px;
	width: 8px;
	height: 2px;
	background: currentColor;
	transform: rotate(45deg);
	transform-origin: center;
}

.login-button,
.newsletter-form button,
.button-link {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 42px;
	padding: 0 22px;
	border-radius: 6px;
	background: linear-gradient(135deg, var(--posinfo-primary), var(--posinfo-secondary));
	color: #fff;
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
}

.login-button:hover,
.newsletter-form button:hover,
.button-link:hover {
	color: #fff;
	opacity: .88;
}

.header-search {
	padding: 0 0 18px;
}

.search-form {
	display: flex;
	gap: 10px;
}

.search-field,
.newsletter-form input {
	width: 100%;
	min-height: 44px;
	border: 1px solid var(--posinfo-border);
	border-radius: 6px;
	padding: 0 14px;
	font: inherit;
}

.search-submit {
	border: 0;
	border-radius: 6px;
	padding: 0 18px;
	background: var(--posinfo-text);
	color: #fff;
	font-weight: 700;
}

.breaking-bar {
	padding: 10px 0;
	border-top: 1px solid var(--posinfo-border);
}

.breaking-inner {
	display: grid;
	grid-template-columns: 126px minmax(0, 1fr);
	align-items: stretch;
	justify-content: flex-start;
	overflow: hidden;
	gap: 0;
	border: 1px solid var(--posinfo-border);
	border-radius: 4px;
	background: #fff;
	min-height: 36px;
}

.breaking-inner strong {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 0 14px;
	background: linear-gradient(135deg, var(--posinfo-primary), var(--posinfo-secondary));
	color: #fff;
	font-size: 12px;
	line-height: 1;
	text-transform: uppercase;
	white-space: nowrap;
}

.breaking-track {
	position: relative;
	min-width: 0;
	overflow: hidden;
	display: flex;
	align-items: center;
}

.breaking-items {
	display: flex;
	align-items: center;
	width: max-content;
	min-width: 100%;
	white-space: nowrap;
	font-size: 13px;
	will-change: transform;
	animation: posinfoTicker 34s linear infinite;
}

.breaking-track:hover .breaking-items {
	animation-play-state: paused;
}

.breaking-group {
	display: flex;
	align-items: center;
	flex: 0 0 auto;
	gap: 24px;
	padding: 0 18px;
}

.breaking-group span::before {
	content: "";
	display: inline-block;
	width: 4px;
	height: 4px;
	margin: 0 12px 2px 0;
	border-radius: 999px;
	background: var(--posinfo-primary);
}

.breaking-group a {
	color: inherit;
}

.breaking-group a:hover {
	color: var(--posinfo-primary);
}

@keyframes posinfoTicker {
	from { transform: translateX(0); }
	to { transform: translateX(-50%); }
}

@media (prefers-reduced-motion: reduce) {
	.breaking-items {
		animation: none;
	}
}

.header-ad,
.sidebar-ad {
	display: grid;
	place-items: center;
	margin-top: 18px;
	margin-bottom: 20px;
	min-height: 90px;
	background: linear-gradient(135deg, #f3f4f6, #e8ebef);
	color: #697180;
	font-size: 13px;
}

.sidebar-ad {
	min-height: var(--posinfo-sidebar-ad-height, 250px);
	margin-top: var(--posinfo-sidebar-widget-gap, 36px);
}

.hero-grid,
.hero-slider,
.hero-with-popular {
	margin-top: 18px;
}

.hero-with-popular {
	display: grid;
	grid-template-columns: minmax(0, 1.65fr) minmax(300px, .75fr);
	gap: 28px;
	align-items: stretch;
}

.hero-with-popular .hero-slider {
	margin-top: 0;
}

.hero-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
}

.hero-slider {
	position: relative;
	height: 470px;
}

.hero-slides {
	position: relative;
	height: 100%;
	overflow: hidden;
	border-radius: 4px;
}

.news-overlay {
	position: relative;
	overflow: hidden;
	min-height: 260px;
	background: #111;
	border-radius: 4px;
}

.news-overlay::after {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 1;
	background: linear-gradient(180deg, rgba(0,0,0,.04), rgba(0,0,0,.18) 35%, rgba(0,0,0,.86));
}

.news-overlay > a,
.news-overlay > .post-image {
	position: absolute;
	inset: 0;
	z-index: 0;
	display: block;
}

.news-overlay .post-image,
.news-overlay > a img {
	width: 100%;
	height: 100%;
	min-height: inherit;
	object-fit: cover;
	object-position: center;
}

.overlay-content {
	position: absolute;
	left: 34px;
	right: 34px;
	bottom: 30px;
	z-index: 2;
	color: #fff;
	text-shadow: 0 1px 2px rgba(0,0,0,.38);
}

.overlay-content h1,
.overlay-content h2 {
	margin: 12px 0 8px;
	line-height: 1.12;
}

.overlay-content h1 {
	max-width: 780px;
	font-size: clamp(28px, 3.2vw, 44px);
}

.overlay-content h2 {
	display: -webkit-box;
	overflow: hidden;
	font-size: 21px;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.overlay-content p {
	max-width: 680px;
	margin: 0 0 12px;
	color: rgba(255,255,255,.88);
}

.hero-main {
	min-height: 450px;
	height: 450px;
}

.hero-slider .hero-main {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	min-height: 0;
	opacity: 0;
	visibility: hidden;
	transform: scale(1.02);
	transition: opacity .7s ease, visibility .7s ease, transform 1.2s ease;
}

.hero-slider .hero-main.is-active {
	opacity: 1;
	visibility: visible;
	transform: scale(1);
}

.hero-slider .overlay-content {
	max-width: var(--posinfo-hero-text-width);
	bottom: 60px;
}

.hero-slider .overlay-content h1 {
	display: -webkit-box;
	overflow: hidden;
	font-size: var(--posinfo-hero-title-size);
	line-height: 1.16;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: var(--posinfo-hero-title-lines);
}

.hero-slider .overlay-content p {
	display: -webkit-box;
	overflow: hidden;
	max-width: 540px;
	font-size: var(--posinfo-hero-excerpt-size);
	-webkit-box-orient: vertical;
	-webkit-line-clamp: var(--posinfo-hero-excerpt-lines);
}

.hero-slider .overlay-content .post-meta {
	font-size: var(--posinfo-hero-meta-size);
}

.hero-slider .overlay-content .category-badge {
	font-size: var(--posinfo-hero-category-size);
}

.hero-slider-controls {
	position: absolute;
	left: 34px;
	right: 34px;
	bottom: 22px;
	z-index: 4;
	display: flex;
	align-items: center;
	gap: 8px;
	width: max-content;
	max-width: calc(100% - 68px);
}

.hero-slider-controls button {
	position: relative;
	width: 44px;
	height: 44px;
	padding: 0;
	border: 0;
	background: transparent;
	cursor: pointer;
}

.hero-slider-controls button::before {
	content: ";
	position: absolute;
	left: 8px;
	right: 8px;
	top: 20px;
	height: 4px;
	border-radius: 999px;
	background: rgba(255,255,255,.42);
	transition: inset .2s ease, background .2s ease;
}

.hero-slider-controls button.is-active::before {
	left: 2px;
	right: 2px;
	background: linear-gradient(135deg, var(--posinfo-primary), var(--posinfo-secondary));
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
	outline: 3px solid var(--posinfo-secondary);
	outline-offset: 3px;
}

.hero-side-grid {
	display: grid;
	gap: 6px;
}

.hero-side {
	min-height: 146px;
	height: 146px;
}

.category-badge {
	display: inline-flex;
	align-items: center;
	width: max-content;
	max-width: 100%;
	min-height: 22px;
	padding: 0 8px;
	border-radius: 4px;
	background: linear-gradient(135deg, var(--posinfo-primary), var(--posinfo-secondary));
	color: #fff;
	font-size: 10px;
	font-weight: 800;
	line-height: 1;
	text-transform: uppercase;
}

.category-badge:hover {
	color: #fff;
}

.post-meta {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 6px 10px;
	color: var(--posinfo-muted);
	font-size: 12px;
}

.overlay-content .post-meta {
	color: rgba(255,255,255,.88);
}

.homepage-columns {
	display: grid;
	grid-template-columns: minmax(0, 1.65fr) minmax(300px, .75fr);
	gap: 28px;
	align-items: start;
	margin-top: 36px;
}

.section-heading {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 14px;
	margin-bottom: 18px;
}

.section-heading h2 {
	position: relative;
	margin: 0;
	padding-left: 10px;
	font-size: 20px;
	line-height: 1.2;
	text-transform: uppercase;
}

.section-heading h2::before {
	content: "";
	position: absolute;
	left: 0;
	top: 2px;
	bottom: 2px;
	width: 4px;
	background: var(--posinfo-primary);
}

.section-heading a {
	font-size: 12px;
	font-weight: 700;
	white-space: nowrap;
}

.stacked-list,
.featured-mini-list,
.popular-list {
	display: grid;
	gap: 16px;
}

.latest-section .stacked-list {
	grid-template-columns: 1fr;
	gap: 0;
}

.post-list-item {
	display: grid;
	grid-template-columns: 116px minmax(0, 1fr);
	gap: 14px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--posinfo-border);
}

.latest-section .post-list-item {
	grid-template-columns: 180px minmax(0, 1fr);
	align-items: start;
	min-width: 0;
	gap: 18px;
	padding: 18px 0;
}

.post-list-image,
.post-list-image img {
	width: 116px;
	height: 78px;
	border-radius: 4px;
	object-fit: cover;
	background: var(--posinfo-soft);
}

.latest-section .post-list-image,
.latest-section .post-list-image img {
	width: 180px;
	height: 112px;
}

.post-list-item h3,
.post-card h3,
.featured-lead h3,
.popular-item h3 {
	margin: 0 0 8px;
	font-size: 15px;
	line-height: 1.35;
}

.latest-section .post-list-item h3 {
	margin-bottom: 10px;
	font-size: 20px;
	line-height: 1.32;
}

.post-list-excerpt {
	display: none;
	margin: 0 0 10px;
	color: var(--posinfo-muted);
	font-size: 14px;
	line-height: 1.55;
}

.latest-section .post-list-excerpt {
	display: -webkit-box;
	overflow: hidden;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.latest-section .post-meta {
	font-size: 13px;
}

.featured-lead {
	display: grid;
	gap: 14px;
	margin-bottom: 18px;
}

.featured-lead .post-image {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 5px;
}

.featured-lead h3 {
	font-size: 24px;
}

.featured-lead p {
	margin: 0 0 10px;
	color: var(--posinfo-muted);
}

.popular-item {
	display: grid;
	grid-template-columns: 48px minmax(0, 1fr);
	gap: 14px;
	padding-bottom: 16px;
	border-bottom: 1px solid var(--posinfo-border);
}

.popular-item > span {
	color: var(--posinfo-primary);
	font-size: 44px;
	font-weight: 800;
	line-height: 1;
}

.popular-item small {
	color: var(--posinfo-muted);
	font-size: 12px;
}

.popular-section-sticky {
	position: sticky;
	top: 104px;
	align-self: start;
	padding: 16px;
	border: 1px solid var(--posinfo-border);
	border-radius: 5px;
	background: #fff;
}

.admin-bar .popular-section-sticky {
	top: 136px;
}

.popular-section-sticky .section-heading {
	margin-bottom: 12px;
}

.popular-section-sticky .section-heading h2 {
	font-size: 18px;
}

.popular-section-sticky .popular-list {
	gap: 0;
}

.popular-section-sticky .popular-item {
	grid-template-columns: 40px minmax(0, 1fr);
	gap: 12px;
	padding: 14px 0;
}

.popular-section-sticky .popular-item > span {
	font-size: 34px;
}

.popular-section-sticky .popular-item h3 {
	margin-bottom: 6px;
	font-size: 14px;
	line-height: 1.34;
}

.popular-section-sticky .post-meta,
.popular-section-sticky .popular-item small {
	font-size: 11px;
}

.sticky-ad-widget {
	position: sticky;
	top: 104px;
	align-self: start;
	margin-bottom: 0;
}

.homepage-widget-area {
	position: sticky;
	top: 104px;
	align-self: start;
	min-width: 0;
}

.admin-bar .homepage-widget-area {
	top: 136px;
}

.homepage-widget-area .widget {
	margin-bottom: var(--posinfo-sidebar-widget-gap, 36px);
}

.homepage-widget-area .widget:last-child {
	margin-bottom: 0;
}

.homepage-ad-stack {
	position: sticky;
	top: 104px;
	display: grid;
	align-self: start;
	gap: var(--posinfo-sidebar-widget-gap, 36px);
	width: 100%;
	min-width: 0;
}

.admin-bar .homepage-ad-stack {
	top: 136px;
}

.homepage-ad-stack .sidebar-ad-widget {
	width: 100%;
	margin: 0;
}

.homepage-ad-stack .sidebar-house-ad {
	width: 100%;
}

.homepage-widget-area img,
.homepage-widget-area iframe,
.homepage-widget-area ins {
	max-width: 100%;
}

.admin-bar .sticky-ad-widget {
	top: 136px;
}

.sticky-ad-label,
.sidebar-ad-label {
	margin-bottom: 8px;
	color: var(--posinfo-muted);
	font-size: 11px;
	font-weight: 800;
	letter-spacing: .08em;
	text-align: center;
	text-transform: uppercase;
}

.sticky-ad-media,
.sidebar-ad-media {
	display: block;
	overflow: hidden;
	width: 100%;
	height: auto;
	min-height: 0;
	border: 1px solid var(--posinfo-border);
	border-radius: 5px;
	background: #fff;
}

.sticky-ad-placeholder,
.sidebar-ad-placeholder {
	display: grid;
	overflow: hidden;
	width: 100%;
	height: var(--posinfo-sidebar-ad-height, 250px);
	min-height: 0;
	border: 1px solid var(--posinfo-border);
	border-radius: 5px;
	background: linear-gradient(135deg, #f3f4f7, #e5e8ee);
	color: #667085;
	text-align: center;
}

.sticky-ad-widget .sidebar-ad-media,
.sticky-ad-widget .sidebar-ad-placeholder {
	height: var(--posinfo-sticky-sidebar-ad-height, 250px);
}

.sticky-ad-widget .sidebar-ad-media {
	height: auto;
}

.sticky-ad-media img,
.sidebar-ad-media img {
	display: block;
	width: 100%;
	height: auto;
	object-fit: contain;
}

.sticky-ad-placeholder,
.sidebar-ad-placeholder {
	place-items: center;
	align-content: center;
	gap: 8px;
	padding: 24px;
}

.sticky-ad-placeholder span,
.sidebar-ad-placeholder span {
	font-size: 12px;
	font-weight: 800;
	letter-spacing: .12em;
	text-transform: uppercase;
}

.sticky-ad-placeholder strong,
.sidebar-ad-placeholder strong {
	color: #475467;
	font-size: 28px;
}

.sticky-ad-placeholder small,
.sidebar-ad-placeholder small {
	color: var(--posinfo-muted);
	font-size: 12px;
}

.sidebar-ad-pdf {
	background: #fff;
	border-style: dashed;
}

.sidebar-ad-pdf span {
	color: var(--posinfo-primary);
}

.sidebar-house-ad {
	display: block;
	width: 100%;
	min-width: 100%;
	max-width: none;
	height: auto !important;
	aspect-ratio: 300 / 250;
	box-sizing: border-box;
	justify-self: stretch;
	margin-inline: 0;
	padding: 0;
	background: #fff;
}

.sidebar-house-ad img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: contain;
}

.popular-section-hero {
	align-self: stretch;
	display: flex;
	flex-direction: column;
	height: 470px;
	margin-top: 0;
	overflow: hidden;
	border: 1px solid var(--posinfo-border);
	border-radius: 4px;
	background: #fff;
}

.popular-section-hero .section-heading {
	flex: 0 0 48px;
	min-height: 48px;
	margin: 0;
	padding: 0 16px;
	border-bottom: 1px solid var(--posinfo-border);
	background: var(--posinfo-soft);
}

.popular-section-hero .section-heading h2 {
	font-size: 18px;
}

.popular-section-hero .popular-list {
	flex: 1;
	display: grid;
	grid-template-rows: repeat(5, minmax(0, 1fr));
	gap: 0;
	min-height: 0;
	padding: 6px 16px 8px;
}

.popular-section-hero .popular-item {
	align-items: center;
	grid-template-columns: 38px minmax(0, 1fr);
	gap: 10px;
	min-height: 0;
	padding: 5px 0;
}

.popular-section-hero .popular-item > span {
	font-size: 30px;
}

.popular-section-hero .popular-item h3 {
	display: -webkit-box;
	overflow: hidden;
	margin-bottom: 4px;
	font-size: 13px;
	line-height: 1.24;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.popular-section-hero .post-meta,
.popular-section-hero .popular-item small {
	font-size: 10px;
	line-height: 1.25;
}

.tiktok-video-section {
	margin-top: 26px;
	padding: 22px 0 4px;
	border-top: 1px solid var(--posinfo-border);
}

.video-with-sidebar {
	display: grid;
	grid-template-columns: minmax(0, 1.65fr) minmax(300px, .75fr);
	gap: 28px;
	align-items: start;
	margin-top: 26px;
}

.video-with-sidebar .youtube-video-section {
	min-width: 0;
	margin-top: 0;
	padding-top: 22px;
}

.video-sidebar-space {
	display: grid;
	grid-template-rows: none;
	align-content: start;
	gap: 18px;
	width: 100%;
	min-width: 100%;
	justify-self: stretch;
	height: auto;
	padding-top: 22px;
	border-top: 1px solid var(--posinfo-border);
}

.video-sidebar-space.has-two-ads {
	grid-template-rows: none;
}

.video-sidebar-ad {
	display: grid;
	grid-template-rows: auto auto;
	gap: 8px;
	min-height: 0;
	width: 100%;
	min-width: 100%;
	max-width: none;
	justify-self: stretch;
	margin: 0;
}

.video-sidebar-ad .sidebar-ad-label {
	margin-bottom: 0;
}

.video-sidebar-ad .sidebar-ad-media,
.video-sidebar-ad .sidebar-ad-placeholder {
	width: 100%;
	height: auto !important;
	min-height: 0;
	margin: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
}

.video-sidebar-ad .sidebar-ad-media img {
	width: 100%;
	height: auto;
	object-fit: initial;
}

.video-sidebar-ad .sidebar-house-ad {
	height: auto !important;
	aspect-ratio: 300 / 250;
	background: transparent;
}

.video-sidebar-ad .sidebar-house-ad img {
	object-fit: cover;
}

.homepage-stack-ad .sidebar-ad-media,
.homepage-stack-ad .sidebar-ad-placeholder {
	border: 0;
	border-radius: 0;
	background: transparent;
}

.homepage-stack-ad .sidebar-ad-media img {
	width: 100%;
	height: auto;
	object-fit: initial;
}

.tiktok-video-section .section-heading {
	margin-bottom: 14px;
}

.tiktok-video-grid {
	display: grid;
	grid-template-columns: minmax(0, 1fr);
	gap: 0;
}

.tiktok-video-card {
	min-width: 0;
	overflow: hidden;
	border: 1px solid var(--posinfo-border);
	border-radius: 6px;
	background: #fff;
}

.tiktok-video-thumb {
	position: relative;
	display: block;
	overflow: hidden;
	height: 470px;
	background: #111827;
}

.tiktok-video-thumb::after {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,.02), rgba(0,0,0,.18) 48%, rgba(0,0,0,.58));
}

.tiktok-video-thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform .25s ease;
}

.tiktok-video-card:hover .tiktok-video-thumb img {
	transform: scale(1.04);
}

.play-badge {
	position: absolute;
	left: 12px;
	bottom: 12px;
	z-index: 2;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	background: linear-gradient(135deg, var(--posinfo-primary), var(--posinfo-secondary));
	box-shadow: 0 10px 20px rgba(15,23,42,.22);
}

.play-badge::before {
	content: "";
	position: absolute;
	left: 13px;
	top: 9px;
	width: 0;
	height: 0;
	border-top: 8px solid transparent;
	border-bottom: 8px solid transparent;
	border-left: 12px solid #fff;
}

.tiktok-video-body {
	padding: 16px 18px 18px;
}

.tiktok-video-body .category-badge {
	min-height: 20px;
	padding-inline: 7px;
	font-size: 10px;
}

.tiktok-video-body h3 {
	display: -webkit-box;
	overflow: hidden;
	margin: 10px 0 8px;
	font-size: 24px;
	line-height: 1.22;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.tiktok-video-body .post-meta {
	font-size: 12px;
	gap: 4px 12px;
}

.youtube-video-section .tiktok-video-card {
	position: relative;
	height: 470px;
}

.youtube-video-section .tiktok-video-thumb {
	height: 100%;
}

.youtube-video-section .tiktok-video-thumb::after {
	background:
		radial-gradient(circle at 50% 43%, rgba(233,30,143,.24), transparent 32%),
		linear-gradient(180deg, rgba(8,13,24,.12), rgba(8,13,24,.26) 42%, rgba(3,7,18,.88));
}

.youtube-play-visual {
	position: absolute;
	inset: 0;
	z-index: 1;
	display: grid;
	place-items: center;
	background:
		linear-gradient(135deg, rgba(233,30,143,.88), rgba(91,44,255,.9)),
		#111827;
}

.youtube-play-visual::before {
	content: "";
	width: 128px;
	height: 128px;
	border-radius: 50%;
	background: rgba(255,255,255,.18);
	box-shadow: 0 24px 60px rgba(0,0,0,.24);
}

.youtube-play-visual::after {
	content: "";
	position: absolute;
	left: 50%;
	top: 50%;
	width: 0;
	height: 0;
	margin-left: -16px;
	margin-top: -26px;
	border-top: 28px solid transparent;
	border-bottom: 28px solid transparent;
	border-left: 44px solid #fff;
	filter: drop-shadow(0 8px 16px rgba(0,0,0,.2));
}

.youtube-video-section .tiktok-video-body {
	position: absolute;
	left: 34px;
	right: 34px;
	bottom: 30px;
	z-index: 3;
	max-width: 760px;
	padding: 0;
	color: #fff;
	text-shadow: 0 1px 2px rgba(0,0,0,.38);
}

.youtube-video-section .tiktok-video-body h3 {
	max-width: 720px;
	font-size: var(--posinfo-hero-title-size);
	line-height: 1.16;
}

.youtube-video-section .tiktok-video-body h3 a,
.youtube-video-section .tiktok-video-body .post-meta {
	color: #fff;
}

.youtube-video-section .play-badge {
	left: 34px;
	bottom: 104px;
	width: 42px;
	height: 42px;
}

.youtube-video-section .play-badge::before {
	left: 16px;
	top: 11px;
	border-top-width: 10px;
	border-bottom-width: 10px;
	border-left-width: 14px;
}

@media (max-width: 900px) {
	.youtube-video-section .tiktok-video-card,
	.youtube-video-section .tiktok-video-thumb {
		height: 380px;
	}
}

@media (max-width: 860px) {
	.video-with-sidebar {
		grid-template-columns: 1fr;
	}

	.video-sidebar-space,
	.video-sidebar-ad,
	.video-sidebar-ad .sidebar-house-ad {
		width: 100%;
		min-width: 100%;
		max-width: none;
		justify-self: stretch;
		margin-inline: 0;
	}

	.video-sidebar-space {
		grid-template-rows: none;
		height: auto;
		gap: 24px;
	}

	.video-sidebar-ad .sidebar-house-ad {
		height: auto !important;
		aspect-ratio: 300 / 250;
	}

	.homepage-ad-stack {
		position: static;
		top: auto;
	}

	.video-sidebar-ad .sidebar-ad-placeholder,
	.video-sidebar-ad .sidebar-ad-media,
	.video-sidebar-ad .sidebar-ad-media img {
		max-height: none;
	}
}

@media (max-width: 600px) {
	.youtube-video-section .tiktok-video-card,
	.youtube-video-section .tiktok-video-thumb {
		height: 320px;
	}

	.youtube-video-section .tiktok-video-body {
		left: 20px;
		right: 20px;
		bottom: 22px;
	}

	.youtube-video-section .tiktok-video-body h3 {
		font-size: 24px;
	}

	.youtube-video-section .play-badge {
		left: 20px;
		bottom: 92px;
	}

	.youtube-play-visual::before {
		width: 96px;
		height: 96px;
	}

	.youtube-play-visual::after {
		margin-left: -12px;
		margin-top: -21px;
		border-top-width: 22px;
		border-bottom-width: 22px;
		border-left-width: 34px;
	}
}

.tiktok-video-source {
	display: inline-flex;
	margin-top: 10px;
	color: var(--posinfo-primary);
	font-size: 12px;
	font-weight: 800;
}

.single-video-embed {
	margin: 22px 0;
	padding: 14px;
	border: 1px solid var(--posinfo-border);
	border-radius: 6px;
	background: var(--posinfo-soft);
}

.single-video-embed iframe,
.single-video-embed blockquote,
.single-video-embed .tiktok-embed {
	width: 100% !important;
	max-width: 100% !important;
	margin: 0 auto !important;
}

.editor-picks {
	margin-top: 48px;
	margin-bottom: 34px;
	padding-top: 28px;
	border-top: 1px solid var(--posinfo-border);
}

.card-grid {
	display: grid;
	gap: 20px;
}

.card-grid.four {
	grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

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

.post-card-image img {
	width: 100%;
	aspect-ratio: 16 / 9;
	object-fit: cover;
	border-radius: 5px;
}

.post-card-body {
	padding-top: 10px;
}

.newsletter-section {
	margin-top: 34px;
	background: linear-gradient(135deg, var(--posinfo-primary), var(--posinfo-secondary));
	color: #fff;
}

.newsletter-inner {
	min-height: 96px;
	padding: 22px 0;
}

.newsletter-section h2,
.newsletter-section p {
	margin: 0;
}

.newsletter-section h2 {
	font-size: 22px;
}

.newsletter-form {
	display: grid;
	grid-template-columns: minmax(260px, 1fr) auto;
	gap: 10px;
	width: min(520px, 100%);
}

.newsletter-form button {
	border: 1px solid rgba(255,255,255,.75);
	background: transparent;
	cursor: pointer;
}

.site-footer {
	background: var(--posinfo-footer-bg, var(--posinfo-dark));
	color: var(--posinfo-footer-text, rgba(255,255,255,.78));
}

.footer-grid {
	display: grid;
	grid-template-columns: 1.5fr repeat(3, 1fr);
	gap: var(--posinfo-footer-column-gap, 38px);
	padding: var(--posinfo-footer-padding-top, 42px) 0 var(--posinfo-footer-padding-bottom, 28px);
}

.footer-logo-image {
	display: inline-block;
	max-width: var(--posinfo-footer-logo-width, 180px);
	margin-bottom: 14px;
}

.footer-logo-image img {
	width: 100%;
	height: auto;
	object-fit: contain;
}

.footer-profile {
	max-width: 300px;
	margin-top: 14px !important;
	line-height: 1.65;
}

.footer-social-links {
	display: flex;
	flex-wrap: wrap;
	gap: 9px;
	margin-top: 18px;
}

.site-footer .site-logo-text small {
	color: var(--posinfo-footer-text, rgba(255,255,255,.68));
}

.site-footer h3 {
	margin: 0 0 14px;
	color: var(--posinfo-footer-heading, #fff);
	font-size: 14px;
	text-transform: uppercase;
}

.site-footer a {
	color: var(--posinfo-footer-link, #fff);
}

.site-footer p,
.site-footer li {
	margin: 0 0 8px;
	font-size: 14px;
}

.footer-bottom {
	padding: 18px 0;
	border-top: 1px solid rgba(255,255,255,.12);
	font-size: 13px;
}

.footer-bottom p {
	margin: 0;
}

.footer-bottom div {
	display: flex;
	gap: 18px;
}

.content-with-sidebar {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 320px;
	gap: 44px;
	margin-top: 34px;
}

.post-list-large .post-list-item {
	grid-template-columns: 220px minmax(0, 1fr);
}

.post-list-large .post-list-image,
.post-list-large .post-list-image img {
	width: 220px;
	height: 140px;
}

.post-list-large h3 {
	font-size: 22px;
}

.widget {
	margin-bottom: var(--posinfo-sidebar-widget-gap, 36px);
}

.sidebar-ad-widget {
	margin-bottom: var(--posinfo-sidebar-widget-gap, 36px);
}

.sticky-ad-widget.sidebar-ad-widget {
	margin-bottom: 0;
}

.widget,
.wp-block-search,
.sidebar .wp-block-group {
	color: var(--posinfo-text);
	font-size: 14px;
}

.widget-title,
.sidebar .wp-block-heading,
.sidebar h2,
.sidebar h3 {
	position: relative;
	margin: 0 0 16px;
	padding-left: 10px;
	font-family: inherit;
	font-size: 18px;
	font-weight: 800;
	line-height: 1.2;
	text-transform: uppercase;
}

.widget-title::before,
.sidebar .wp-block-heading::before,
.sidebar h2::before,
.sidebar h3::before {
	content: "";
	position: absolute;
	left: 0;
	top: 2px;
	bottom: 2px;
	width: 4px;
	background: var(--posinfo-primary);
}

.sidebar ul,
.sidebar ol {
	padding: 0;
	margin: 0;
	list-style: none;
}

.sidebar li {
	padding: 10px 0;
	border-bottom: 1px solid var(--posinfo-border);
	line-height: 1.35;
}

.sidebar li a {
	font-weight: 700;
}

.sidebar .wp-block-search__inside-wrapper,
.sidebar .search-form {
	display: grid;
	grid-template-columns: minmax(0, 1fr) auto;
	gap: 8px;
}

.sidebar .wp-block-search__input,
.sidebar .search-field {
	width: 100%;
	min-height: 38px;
	border: 1px solid #cfd3da;
	border-radius: 3px;
	padding: 0 10px;
	font: inherit;
}

.sidebar .wp-block-search__button,
.sidebar .search-submit {
	min-height: 38px;
	border: 0;
	border-radius: 3px;
	padding: 0 14px;
	background: var(--posinfo-text);
	color: #fff;
	font: inherit;
	font-weight: 700;
}

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

.breadcrumb {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 18px;
	color: var(--posinfo-muted);
	font-size: 13px;
}

.single-title {
	margin: 10px 0 12px;
	font-size: clamp(28px, 4.2vw, 44px);
	line-height: 1.12;
}

.single-featured {
	margin: 24px 0;
}

.single-featured img {
	width: 100%;
	border-radius: 6px;
}

.single-featured figcaption,
.wp-caption-text,
.blocks-gallery-caption {
	padding: 10px 2px 0;
	color: var(--posinfo-muted);
	font-size: 12px;
	line-height: 1.55;
}

.share-row,
.tag-list {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 10px;
	margin: 18px 0;
}

.share-row a,
.tag-list a {
	padding: 6px 10px;
	border: 1px solid var(--posinfo-border);
	border-radius: 4px;
	font-size: 13px;
	font-weight: 700;
}

.entry-content {
	font-size: 17px;
	line-height: 1.78;
}

.entry-content a {
	color: var(--posinfo-primary);
	text-decoration: underline;
}

.entry-content blockquote {
	margin: 28px 0;
	padding: 18px 24px;
	border-left: 4px solid var(--posinfo-primary);
	background: var(--posinfo-soft);
}

.entry-content figure {
	margin-top: 26px;
	margin-bottom: 26px;
}

.entry-content figure img {
	margin-right: auto;
	margin-left: auto;
}

.entry-content figcaption,
.entry-content .wp-element-caption {
	margin-top: 8px;
	color: var(--posinfo-muted);
	font-size: 12px;
	line-height: 1.5;
}

.related-posts {
	margin-top: 42px;
	margin-bottom: 46px;
	padding-bottom: 18px;
}

.related-posts .section-heading {
	margin-bottom: 24px;
}

.related-posts .card-grid {
	gap: 28px;
}

.related-posts .post-card-body {
	padding-top: 14px;
}

.related-posts .post-card h3 {
	margin-top: 8px;
	margin-bottom: 10px;
}

.narrow-page {
	width: min(100% - 40px, 820px);
	margin-top: 34px;
}

.not-found-page {
	min-height: 420px;
	padding-top: 60px;
	text-align: center;
}

.not-found-page .search-form {
	margin: 24px auto;
	max-width: 560px;
}

.menu-toggle {
	display: none;
	width: 44px;
	height: 44px;
	gap: 5px;
}

.menu-toggle span:not(.screen-reader-text) {
	display: block;
	width: 22px;
	height: 2px;
	background: var(--posinfo-text);
}

.nav-open {
	overflow: hidden;
}
