﻿/*
Theme Name: Premium Marathi News
Theme URI: https://example.com/premium-marathi-news
Author: Codex
Author URI: https://example.com
Description: A dark, premium Marathi news WordPress theme converted from static HTML screens with dynamic home, archive, single, header, footer, and shortcode-powered sections.
Version: 1.0.3
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: premium-marathi-news
Tags: news, blog, custom-logo, featured-images, translation-ready, one-column, two-columns
*/
:root {
	--pmn-background: #131315;
	--pmn-surface: #1f1f21;
	--pmn-surface-low: #1b1b1d;
	--pmn-surface-high: #2a2a2b;
	--pmn-surface-highest: #353436;
	--pmn-text: #e4e2e4;
	--pmn-muted: #c6c6cd;
	--pmn-outline: #45464d;
	--pmn-primary: #bec6e0;
	--pmn-primary-container: #0f172a;
	--pmn-tertiary: #dec29a;
	--pmn-red: #e31e24;
	--pmn-green: #25d366;
	--pmn-radius: 12px;
	--pmn-container: 1280px;
	--pmn-shadow: 0 18px 50px rgba(0, 0, 0, 0.28);
}

* {
	box-sizing: border-box;
}

html {
	background: var(--pmn-background);
	overflow-x: hidden;
}

body.pmn-body {
	margin: 0;
	min-height: 100dvh;
	overflow-x: hidden;
	background: var(--pmn-background);
	color: var(--pmn-text);
	font-family: "Mukta", "Hanken Grotesk", system-ui, sans-serif;
	font-size: 16px;
	line-height: 1.6;
}

a {
	color: inherit;
	text-decoration: none;
}

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

button,
input {
	font: inherit;
}

.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;
}

.material-symbols-outlined {
	font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 24;
	line-height: 1;
}

.pmn-site-header {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 50;
	width: 100%;
	background: rgba(19, 19, 21, 0.82);
	border-bottom: 1px solid rgba(69, 70, 77, 0.45);
	backdrop-filter: blur(20px);
	box-shadow: 0 8px 28px rgba(0, 0, 0, 0.22);
}

.pmn-breaking {
	display: flex;
	align-items: center;
	width: 100%;
	padding: 4px 16px;
	overflow: hidden;
	background: var(--pmn-red);
	color: #fff;
	white-space: nowrap;
}

.pmn-breaking strong {
	position: relative;
	z-index: 2;
	flex: 0 0 auto;
	padding-right: 10px;
	background: var(--pmn-red);
	font-size: 12px;
	font-weight: 800;
	text-transform: uppercase;
	letter-spacing: 0.04em;
}

.pmn-breaking-track {
	flex: 1 1 auto;
	min-width: 0;
	overflow: hidden;
}

.pmn-breaking-track span {
	display: block;
	min-width: max-content;
	font-size: 14px;
	animation: pmnTicker 28s linear infinite;
}

@keyframes pmnTicker {
	from {
		transform: translateX(22%);
	}
	to {
		transform: translateX(-100%);
	}
}

.pmn-topbar-spacer {
	width: 44px;
	height: 44px;
}

.pmn-topbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: var(--pmn-container);
	height: 64px;
	margin: 0 auto;
	padding: 0 16px;
}

.pmn-brand {
	color: var(--pmn-primary);
	font-family: "Hanken Grotesk", "Mukta", sans-serif;
	font-size: clamp(24px, 5vw, 32px);
	font-weight: 800;
	line-height: 1.1;
	letter-spacing: 0;
}

.pmn-brand .custom-logo {
	width: auto;
	max-height: 44px;
}

.pmn-icon-button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	color: var(--pmn-primary);
	background: transparent;
	border: 0;
	border-radius: 999px;
	cursor: pointer;
	transition: background 180ms ease, transform 180ms ease;
}

.pmn-icon-button:hover {
	background: rgba(53, 52, 54, 0.62);
}

.pmn-icon-button:active {
	transform: scale(0.95);
}

.pmn-desktop-menu {
	display: none;
	max-width: var(--pmn-container);
	margin: 0 auto;
	padding: 0 16px 12px;
}

.pmn-desktop-menu ul {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.pmn-desktop-menu a {
	display: block;
	padding: 8px 14px;
	color: var(--pmn-muted);
	background: var(--pmn-surface);
	border: 1px solid rgba(69, 70, 77, 0.55);
	border-radius: 999px;
	font-size: 14px;
	font-weight: 700;
}

.pmn-desktop-menu a:hover,
.pmn-desktop-menu .current-menu-item a {
	color: #fff;
	background: var(--pmn-red);
	border-color: var(--pmn-red);
}

.pmn-desktop-menu.is-open {
	display: block;
}

.pmn-main {
	width: 100%;
	max-width: var(--pmn-container);
	overflow: hidden;
	min-height: calc(100dvh - 80px);
	margin: 0 auto;
	padding: 112px 0 112px;
}

.pmn-home,
.pmn-content-col,
.pmn-page,
.pmn-search-page {
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.pmn-layout {
	display: grid;
	grid-template-columns: 1fr;
	gap: 24px;
	padding: 0 16px;
}

.pmn-chip-row,
.pmn-trending,
.pmn-shorts-row,
.pmn-scroll-cards {
	display: flex;
	gap: 12px;
	padding: 0 16px 4px;
	overflow-x: auto;
	scrollbar-width: none;
}

.pmn-chip-row::-webkit-scrollbar,
.pmn-trending::-webkit-scrollbar,
.pmn-shorts-row::-webkit-scrollbar,
.pmn-scroll-cards::-webkit-scrollbar {
	display: none;
}

.pmn-chip {
	flex: 0 0 auto;
	display: inline-flex;
	align-items: center;
	gap: 8px;
	padding: 9px 16px;
	color: var(--pmn-text);
	background: var(--pmn-surface-high);
	border: 1px solid rgba(69, 70, 77, 0.65);
	border-radius: 999px;
	font-size: 14px;
	font-weight: 700;
	line-height: 1.2;
}

.pmn-chip-live {
	color: #fff;
	background: var(--pmn-red);
	border-color: var(--pmn-red);
}

.pmn-chip-live span,
.pmn-live-badge i {
	width: 8px;
	height: 8px;
	background: currentColor;
	border-radius: 999px;
	animation: pmnPulse 1.2s ease-in-out infinite;
}

@keyframes pmnPulse {
	50% {
		opacity: 0.4;
		transform: scale(0.75);
	}
}

.pmn-hero-grid {
	display: grid;
	grid-template-columns: 1fr;
	gap: 16px;
	height: 442px;
	min-height: 400px;
	padding: 0 16px;
}

.pmn-hero-card {
	position: relative;
	display: block;
	overflow: hidden;
	min-height: 0;
	background: var(--pmn-surface);
	border-radius: var(--pmn-radius);
	box-shadow: var(--pmn-shadow);
}

.pmn-hero-card img,
.pmn-short-card img,
.pmn-news-tile img,
.pmn-single-hero > img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 700ms ease;
}

.pmn-hero-card:hover img,
.pmn-short-card:hover img,
.pmn-news-tile:hover img {
	transform: scale(1.05);
}

.pmn-image-overlay {
	position: absolute;
	inset: 0;
	background: linear-gradient(to top, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.35), transparent);
	pointer-events: none;
}

.pmn-card-copy {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 10px;
	padding: 24px;
}

.pmn-badge,
.pmn-soft-badge,
.pmn-live-badge {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	padding: 5px 10px;
	border-radius: 6px;
	font-size: 12px;
	font-weight: 800;
	line-height: 1.1;
}

.pmn-badge {
	color: #fff;
	background: var(--pmn-red);
}

.pmn-soft-badge {
	color: var(--pmn-text);
	background: rgba(53, 52, 54, 0.86);
	border: 1px solid rgba(69, 70, 77, 0.6);
}

.pmn-live-badge {
	color: #ffb4ab;
	background: rgba(227, 30, 36, 0.18);
	border: 1px solid rgba(227, 30, 36, 0.55);
}

.pmn-hero-title,
.pmn-side-title {
	display: -webkit-box;
	overflow: hidden;
	color: #fff;
	font-weight: 800;
	line-height: 1.2;
	-webkit-box-orient: vertical;
}

.pmn-hero-title {
	font-size: clamp(22px, 4.8vw, 30px);
	-webkit-line-clamp: 3;
}

.pmn-side-title {
	font-size: 18px;
	-webkit-line-clamp: 3;
}

.pmn-meta {
	color: var(--pmn-muted);
	font-size: 13px;
	font-weight: 600;
}

.pmn-section {
	padding: 0 0 4px;
}

.pmn-section-head {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	padding: 0 16px;
	margin-bottom: 12px;
}

.pmn-section-head h2,
.pmn-page-head h1,
.pmn-section-title {
	margin: 0;
	color: var(--pmn-text);
	font-family: "Hanken Grotesk", "Mukta", sans-serif;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.25;
}

.pmn-section-head h2 {
	display: flex;
	align-items: center;
	gap: 8px;
}

.pmn-section-head h2 .material-symbols-outlined {
	color: var(--pmn-red);
	font-variation-settings: "FILL" 1, "wght" 600, "GRAD" 0, "opsz" 24;
}

.pmn-section-head a {
	flex: 0 0 auto;
	color: var(--pmn-primary);
	font-size: 13px;
	font-weight: 800;
}

.pmn-short-card {
	position: relative;
	flex: 0 0 140px;
	overflow: hidden;
	aspect-ratio: 9 / 16;
	background: var(--pmn-surface);
	border-radius: 10px;
	box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
}

.pmn-short-duration {
	position: absolute;
	top: 8px;
	right: 8px;
	z-index: 1;
	display: inline-flex;
	align-items: center;
	gap: 3px;
	padding: 4px 7px;
	color: #fff;
	background: rgba(0, 0, 0, 0.48);
	border-radius: 6px;
	font-size: 12px;
}

.pmn-short-duration .material-symbols-outlined {
	font-size: 15px;
}

.pmn-short-title {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	display: -webkit-box;
	overflow: hidden;
	padding: 10px;
	color: #fff;
	font-size: 14px;
	font-weight: 800;
	line-height: 1.2;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.pmn-news-tile {
	flex: 0 0 240px;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.pmn-news-tile img {
	aspect-ratio: 16 / 9;
	height: auto;
	overflow: hidden;
	background: var(--pmn-surface-high);
	border-radius: 10px;
}

.pmn-news-tile strong {
	display: -webkit-box;
	overflow: hidden;
	color: var(--pmn-text);
	font-size: 15px;
	font-weight: 800;
	line-height: 1.3;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
}

.pmn-news-tile span {
	color: var(--pmn-muted);
	font-size: 12px;
	font-weight: 700;
}

.pmn-trending {
	align-items: center;
	padding-top: 2px;
}

.pmn-trending strong,
.pmn-trending a {
	flex: 0 0 auto;
}

.pmn-trending strong {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	color: var(--pmn-red);
	font-size: 14px;
}

.pmn-trending strong .material-symbols-outlined {
	font-size: 17px;
}

.pmn-trending a {
	padding: 4px 10px;
	color: var(--pmn-muted);
	background: var(--pmn-surface);
	border-radius: 6px;
	font-size: 12px;
	font-weight: 700;
}

.pmn-feed-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.pmn-feed-item {
	display: flex;
	width: 100%;
	min-width: 0;
	gap: 12px;
	padding: 12px;
	background: var(--pmn-surface);
	border: 1px solid rgba(69, 70, 77, 0.4);
	border-radius: 10px;
	transition: background 180ms ease;
}

.pmn-feed-item:hover {
	background: var(--pmn-surface-high);
}

.pmn-feed-copy {
	flex: 1 1 auto;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.pmn-feed-copy strong {
	overflow-wrap: anywhere;
	display: -webkit-box;
	overflow: hidden;
	color: var(--pmn-text);
	font-size: 18px;
	font-weight: 800;
	line-height: 1.35;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 3;
}

.pmn-feed-copy small {
	display: none;
	color: var(--pmn-muted);
	font-size: 13px;
}

.pmn-feed-item img {
	flex: 0 0 96px;
	width: 96px;
	height: 96px;
	object-fit: cover;
	border-radius: 8px;
}

.navigation.pagination {
	margin-top: 20px;
}

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

.nav-links .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 12px;
	color: var(--pmn-muted);
	background: var(--pmn-surface);
	border: 1px solid rgba(69, 70, 77, 0.55);
	border-radius: 999px;
	font-weight: 800;
}

.nav-links .page-numbers.current,
.nav-links .page-numbers:hover {
	color: #fff;
	background: var(--pmn-red);
	border-color: var(--pmn-red);
}

.pmn-native-ad,
.pmn-ad-widget,
.pmn-sidebar-card {
	position: relative;
	padding: 16px;
	background: var(--pmn-surface-high);
	border: 1px solid rgba(69, 70, 77, 0.28);
	border-radius: var(--pmn-radius);
}

.pmn-native-ad {
	display: flex;
	flex-direction: column;
	gap: 4px;
}

.pmn-native-ad > span {
	position: absolute;
	top: 8px;
	right: 8px;
	color: var(--pmn-muted);
	font-size: 10px;
	letter-spacing: 0.05em;
	text-transform: uppercase;
}

.pmn-native-ad strong {
	padding-right: 70px;
}

.pmn-sidebar {
	display: none;
}

.pmn-weather {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	margin-top: 12px;
}

.pmn-weather strong {
	display: block;
	color: var(--pmn-primary);
	font-family: "Hanken Grotesk", sans-serif;
	font-size: 40px;
	font-weight: 800;
	line-height: 1;
}

.pmn-weather span {
	color: var(--pmn-muted);
	font-weight: 700;
}

.pmn-weather > .material-symbols-outlined {
	color: var(--pmn-tertiary);
	font-size: 50px;
}

.pmn-page-head {
	padding: 0 16px;
}

.pmn-page-head p {
	max-width: 760px;
	margin: 8px 0 0;
	color: var(--pmn-muted);
}

.pmn-single,
.pmn-page {
	width: 100%;
	max-width: 760px;
	margin: 0 auto;
	padding: 0 16px;
}

.pmn-single-hero {
	position: relative;
	overflow: hidden;
	height: min(442px, 60dvh);
	min-height: 380px;
	margin: 0 -16px 24px;
	background: var(--pmn-surface);
	border-radius: 0;
}

.pmn-single-title {
	position: absolute;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 1;
	padding: 20px 16px;
}

.pmn-single-badges {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin-bottom: 12px;
}

.pmn-single-title h1 {
	margin: 0 0 16px;
	color: var(--pmn-text);
	font-family: "Hanken Grotesk", "Mukta", sans-serif;
	font-size: clamp(30px, 8vw, 42px);
	font-weight: 800;
	line-height: 1.14;
}

.pmn-author-line {
	display: flex;
	align-items: center;
	gap: 12px;
}

.pmn-author-line img {
	width: 42px;
	height: 42px;
	border: 2px solid var(--pmn-surface);
	border-radius: 999px;
}

.pmn-author-line strong,
.pmn-author-line small {
	display: block;
}

.pmn-author-line small {
	color: var(--pmn-muted);
	font-size: 12px;
	font-weight: 700;
}

.pmn-summary-box {
	position: relative;
	padding: 18px 18px 18px 22px;
	margin-bottom: 28px;
	overflow: hidden;
	background: rgba(27, 27, 29, 0.84);
	border: 1px solid rgba(69, 70, 77, 0.4);
	border-radius: var(--pmn-radius);
	backdrop-filter: blur(14px);
}

.pmn-summary-box::before {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 4px;
	content: "";
	background: var(--pmn-primary);
}

.pmn-summary-box h2 {
	display: flex;
	align-items: center;
	gap: 8px;
	margin: 0 0 8px;
	color: var(--pmn-primary);
	font-size: 20px;
}

.pmn-summary-box p {
	margin: 0;
	color: var(--pmn-muted);
}

.pmn-article-content {
	color: rgba(228, 226, 228, 0.92);
	font-size: 18px;
	line-height: 1.75;
}

.pmn-article-content > *:first-child {
	margin-top: 0;
}

.pmn-article-content a {
	color: var(--pmn-primary);
	text-decoration: underline;
	text-underline-offset: 3px;
}

.pmn-article-content blockquote {
	padding: 20px;
	margin: 32px 0;
	background: var(--pmn-surface-highest);
	border-left: 4px solid var(--pmn-primary);
	border-radius: var(--pmn-radius);
}

.pmn-article-content blockquote p {
	margin: 0;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.35;
}

.pmn-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	padding-top: 18px;
	margin-top: 32px;
	border-top: 1px solid rgba(69, 70, 77, 0.5);
}

.pmn-tags strong {
	color: var(--pmn-muted);
}

.pmn-tags a {
	padding: 5px 11px;
	background: var(--pmn-surface);
	border: 1px solid rgba(69, 70, 77, 0.6);
	border-radius: 999px;
	font-size: 13px;
	font-weight: 700;
}

.pmn-reaction-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
	padding: 12px;
	margin: 24px 0 32px;
	background: var(--pmn-surface-low);
	border: 1px solid rgba(69, 70, 77, 0.32);
	border-radius: var(--pmn-radius);
}

.pmn-reaction-bar span {
	font-weight: 800;
}

.pmn-reaction-bar button {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 3px;
	color: var(--pmn-text);
	background: transparent;
	border: 0;
	cursor: pointer;
}

.pmn-reaction-bar small {
	color: var(--pmn-muted);
	font-size: 11px;
}

.pmn-search-form {
	display: flex;
	gap: 8px;
	max-width: 560px;
	margin-top: 16px;
}

.pmn-search-form input {
	flex: 1;
	min-width: 0;
	padding: 12px 14px;
	color: var(--pmn-text);
	background: var(--pmn-surface);
	border: 1px solid var(--pmn-outline);
	border-radius: 10px;
}

.pmn-search-form button {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	color: var(--pmn-primary-container);
	background: var(--pmn-primary);
	border: 0;
	border-radius: 10px;
	cursor: pointer;
}

.pmn-footer {
	display: flex;
	flex-direction: column;
	gap: 16px;
	max-width: var(--pmn-container);
	padding: 28px 16px 112px;
	margin: 0 auto;
	color: var(--pmn-muted);
	border-top: 1px solid rgba(69, 70, 77, 0.38);
}

.pmn-footer strong {
	color: var(--pmn-text);
	font-size: 20px;
}

.pmn-footer p {
	margin: 4px 0 0;
}

.pmn-footer-menu ul {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
	padding: 0;
	margin: 0;
	list-style: none;
}

.pmn-mobile-nav {
	position: fixed;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: 60;
	display: grid;
	grid-template-columns: repeat(4, minmax(0, 1fr));
	align-items: center;
	height: calc(80px + env(safe-area-inset-bottom, 0px));
	padding: 8px 8px calc(8px + env(safe-area-inset-bottom, 0px));
	background: rgba(19, 19, 21, 0.84);
	border-top: 1px solid rgba(69, 70, 77, 0.48);
	border-radius: 16px 16px 0 0;
	backdrop-filter: blur(20px);
	box-shadow: 0 -12px 34px rgba(0, 0, 0, 0.32);
}

.pmn-mobile-nav a {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	min-width: 0;
	width: 100%;
	padding: 6px 9px;
	color: var(--pmn-muted);
	border-radius: 12px;
	font-size: 12px;
	font-weight: 700;
	line-height: 1.1;
	text-align: center;
	transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.pmn-mobile-nav a > span:last-child {
	display: block;
	width: 100%;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pmn-reels-page {
	display: grid;
	grid-template-columns: 1fr;
	gap: 18px;
	width: 100%;
	max-width: 520px;
	margin: 0 auto;
	padding: 0 16px 18px;
}

.pmn-reel {
	position: relative;
	min-height: min(680px, calc(100dvh - 150px));
	overflow: hidden;
	background: var(--pmn-surface);
	border: 1px solid rgba(69, 70, 77, 0.45);
	border-radius: 18px;
	box-shadow: var(--pmn-shadow);
}

.pmn-reel-media {
	position: absolute;
	inset: 0;
	display: block;
}

.pmn-reel-media img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.pmn-reel-media::before {
	position: absolute;
	inset: 0;
	content: "";
	background: radial-gradient(circle at center, rgba(255, 255, 255, 0.08), transparent 42%);
}

.pmn-reel-copy {
	position: absolute;
	right: 76px;
	bottom: 22px;
	left: 18px;
	z-index: 2;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	gap: 9px;
}

.pmn-reel-copy strong {
	display: -webkit-box;
	overflow: hidden;
	color: #fff;
	font-size: 22px;
	font-weight: 800;
	line-height: 1.22;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 4;
}

.pmn-reel-copy small {
	color: var(--pmn-muted);
	font-weight: 700;
}

.pmn-reel-actions {
	position: absolute;
	right: 12px;
	bottom: 22px;
	z-index: 3;
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.pmn-reel-actions button,
.pmn-reel-actions a {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 4px;
	width: 54px;
	min-height: 54px;
	color: #fff;
	background: rgba(0, 0, 0, 0.42);
	border: 1px solid rgba(255, 255, 255, 0.16);
	border-radius: 999px;
	backdrop-filter: blur(12px);
	cursor: pointer;
}

.pmn-reel-actions .material-symbols-outlined {
	font-variation-settings: "FILL" 1, "wght" 600, "GRAD" 0, "opsz" 24;
}

.pmn-reel-actions small {
	max-width: 52px;
	overflow: hidden;
	color: rgba(255, 255, 255, 0.86);
	font-size: 10px;
	font-weight: 700;
	text-overflow: ellipsis;
	white-space: nowrap;
}

.pmn-profile-page {
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: calc(100dvh - 210px);
	padding: 0 16px 24px;
}

.pmn-profile-card {
	width: 100%;
	max-width: 440px;
	padding: 24px;
	background: linear-gradient(180deg, rgba(42, 42, 43, 0.95), rgba(27, 27, 29, 0.95));
	border: 1px solid rgba(69, 70, 77, 0.58);
	border-radius: 20px;
	box-shadow: var(--pmn-shadow);
}

.pmn-profile-icon {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 58px;
	height: 58px;
	margin-bottom: 12px;
	color: var(--pmn-primary);
	background: rgba(15, 23, 42, 0.86);
	border-radius: 18px;
}

.pmn-profile-icon .material-symbols-outlined {
	font-size: 32px;
	font-variation-settings: "FILL" 1, "wght" 600, "GRAD" 0, "opsz" 32;
}

.pmn-profile-card h1 {
	margin: 0 0 8px;
	font-size: 28px;
	line-height: 1.2;
}

.pmn-profile-card p {
	margin: 0 0 18px;
	color: var(--pmn-muted);
}

.pmn-form-message {
	padding: 10px 12px;
	margin-bottom: 14px;
	color: #fff;
	background: rgba(227, 30, 36, 0.2);
	border: 1px solid rgba(227, 30, 36, 0.36);
	border-radius: 10px;
	font-weight: 700;
}

.pmn-profile-form {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.pmn-profile-form label {
	display: flex;
	flex-direction: column;
	gap: 6px;
	color: var(--pmn-muted);
	font-weight: 800;
}

.pmn-profile-form input {
	width: 100%;
	padding: 13px 14px;
	color: var(--pmn-text);
	background: var(--pmn-background);
	border: 1px solid var(--pmn-outline);
	border-radius: 12px;
	outline: none;
}

.pmn-profile-form input:focus {
	border-color: var(--pmn-primary);
	box-shadow: 0 0 0 3px rgba(190, 198, 224, 0.16);
}

.pmn-profile-form button {
	padding: 13px 16px;
	color: var(--pmn-primary-container);
	background: var(--pmn-primary);
	border: 0;
	border-radius: 12px;
	font-weight: 900;
	cursor: pointer;
}

.pmn-empty-state {
	padding: 24px 16px;
	text-align: center;
}

.pmn-mobile-nav a:active {
	transform: scale(0.92);
}

.pmn-mobile-nav .material-symbols-outlined {
	margin-bottom: 4px;
	font-size: 24px;
}

.pmn-mobile-nav a.is-active {
	color: var(--pmn-primary);
	background: rgba(15, 23, 42, 0.7);
}

.pmn-mobile-nav a.is-active .material-symbols-outlined {
	font-variation-settings: "FILL" 1, "wght" 600, "GRAD" 0, "opsz" 24;
}

@media (min-width: 768px) {
	.pmn-main {
		padding: 132px 40px 56px;
		overflow: visible;
	}

	.pmn-topbar {
		padding: 0;
	}

	.pmn-desktop-menu {
		display: block;
		padding-right: 0;
		padding-left: 0;
	}

	.pmn-chip-row,
	.pmn-trending,
	.pmn-shorts-row,
	.pmn-scroll-cards,
	.pmn-section-head {
		padding-right: 0;
		padding-left: 0;
	}

	.pmn-hero-grid {
		grid-template-columns: 2fr 1fr;
		grid-template-rows: 1fr 1fr;
		padding-right: 0;
		padding-left: 0;
	}

	.pmn-hero-main {
		grid-row: span 2;
	}

	.pmn-short-card {
		flex-basis: calc(25% - 9px);
	}

	.pmn-layout {
		grid-template-columns: minmax(0, 8fr) minmax(280px, 4fr);
		padding: 0;
	}

	.pmn-sidebar {
		position: sticky;
		top: 148px;
		display: flex;
		flex-direction: column;
		gap: 16px;
		height: fit-content;
	}

	.pmn-feed-copy small {
		display: block;
	}

	.pmn-feed-item img {
		flex-basis: 128px;
		width: 128px;
		height: 128px;
	}

	.pmn-single-hero {
		margin-right: 0;
		margin-left: 0;
		border-radius: var(--pmn-radius);
	}

	.pmn-single-title {
		padding: 28px;
	}

	.pmn-footer {
		flex-direction: row;
		align-items: center;
		justify-content: space-between;
		padding: 32px 40px;
	}

	.pmn-mobile-nav {
		display: none;
	}

	.pmn-reels-page {
		grid-template-columns: repeat(3, minmax(0, 1fr));
		max-width: var(--pmn-container);
		padding-right: 0;
		padding-left: 0;
	}

	.pmn-reel {
		min-height: 560px;
	}
}

@media (prefers-reduced-motion: reduce) {
	*,
	*::before,
	*::after {
		scroll-behavior: auto !important;
		animation-duration: 0.01ms !important;
		animation-iteration-count: 1 !important;
		transition-duration: 0.01ms !important;
	}
}


