/* ==========================================================================
   PM Kisan Updates — Yojana theme
   Design tokens
   ========================================================================== */
:root {
	/* Colour palette */
	--pmk-parchment:    #F6F0DF;
	--pmk-parchment-2:  #FBF8EF;
	--pmk-ink:          #20231F;
	--pmk-ink-soft:     #51564C;
	--pmk-green:        #1F4D3A;
	--pmk-green-dark:   #133327;
	--pmk-green-tint:   #E4EEE6;
	--pmk-saffron:      #E0911B;
	--pmk-saffron-dark: #B96F0E;
	--pmk-saffron-tint: #FBEBD2;
	--pmk-seal:         #A23B2E;
	--pmk-seal-tint:    #F3E1DD;
	--pmk-sand-line:    #DCCBA0;
	--pmk-white:        #FFFFFF;

	/* Type */
	--pmk-font-display: "Source Serif 4", Georgia, serif;
	--pmk-font-body:    "Work Sans", -apple-system, "Segoe UI", sans-serif;
	--pmk-font-mono:    "IBM Plex Mono", "Courier New", monospace;

	/* Layout */
	--pmk-max: 1180px;
	--pmk-radius: 10px;
	--pmk-shadow: 0 6px 20px -6px rgba(32, 35, 31, 0.18);
}

/* ==========================================================================
   Reset & base
   ========================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
	margin: 0;
	background: var(--pmk-parchment);
	color: var(--pmk-ink);
	font-family: var(--pmk-font-body);
	font-size: 16px;
	line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--pmk-green); text-decoration: none; }
a:hover { color: var(--pmk-saffron-dark); }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
	font-family: var(--pmk-font-display);
	font-weight: 600;
	line-height: 1.2;
	margin: 0 0 0.5em;
	color: var(--pmk-green-dark);
}
p { margin: 0 0 1em; }

.screen-reader-text {
	position: absolute; left: -9999px;
}
.pmk-skip-link:focus {
	position: fixed; top: 8px; left: 8px; z-index: 1000;
	background: var(--pmk-ink); color: var(--pmk-white);
	padding: 8px 14px; border-radius: 6px;
}
:focus-visible {
	outline: 3px solid var(--pmk-saffron);
	outline-offset: 2px;
}
@media (prefers-reduced-motion: reduce) {
	* { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

.pmk-container { max-width: var(--pmk-max); margin: 0 auto; padding: 0 20px; }

.pmk-eyebrow {
	font-family: var(--pmk-font-mono);
	font-size: 0.78rem;
	letter-spacing: 0.08em;
	text-transform: uppercase;
	color: var(--pmk-seal);
	margin: 0 0 0.5em;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.pmk-btn {
	display: inline-flex; align-items: center; justify-content: center;
	gap: 6px;
	font-family: var(--pmk-font-body);
	font-weight: 600;
	font-size: 0.95rem;
	padding: 12px 22px;
	border-radius: 7px;
	border: 2px solid transparent;
	cursor: pointer;
	transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.pmk-btn--saffron { background: var(--pmk-saffron); color: var(--pmk-green-dark); }
.pmk-btn--saffron:hover { background: var(--pmk-saffron-dark); color: var(--pmk-white); transform: translateY(-1px); }
.pmk-btn--outline { border-color: var(--pmk-green); color: var(--pmk-green); background: transparent; }
.pmk-btn--outline:hover { background: var(--pmk-green); color: var(--pmk-white); }
.pmk-btn--block { display: flex; width: 100%; margin-bottom: 10px; }
.pmk-btn--whatsapp { background: #25D366; color: #0B3B22; box-shadow: 0 0 0 0 rgba(37,211,102,0.55); animation: pmk-glow-wa 2.2s ease-in-out infinite; }
.pmk-btn--whatsapp:hover { background: #1DA851; color: #fff; transform: translateY(-1px); }
.pmk-btn--telegram { background: #2AABEE; color: #06304C; box-shadow: 0 0 0 0 rgba(42,171,238,0.55); animation: pmk-glow-tg 2.2s ease-in-out infinite; animation-delay: 1.1s; }
.pmk-btn--telegram:hover { background: #1690D4; color: #fff; transform: translateY(-1px); }
.pmk-btn--whatsapp svg, .pmk-btn--telegram svg { flex: none; }
.pmk-btn.pmk-btn--whatsapp, .pmk-btn.pmk-btn--telegram {
	font-size: 0.88rem;
	padding: 12px 14px;
	min-height: 46px;
	white-space: nowrap;
}
@keyframes pmk-glow-wa { 0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); } 50% { box-shadow: 0 0 0 8px rgba(37,211,102,0); } }
@keyframes pmk-glow-tg { 0%,100% { box-shadow: 0 0 0 0 rgba(42,171,238,0.5); } 50% { box-shadow: 0 0 0 8px rgba(42,171,238,0); } }
@media (prefers-reduced-motion: reduce) { .pmk-btn--whatsapp, .pmk-btn--telegram { animation: none; } }

/* ==========================================================================
   Stamp badge — signature element
   ========================================================================== */
.pmk-stamp {
	--s: 44px;
	width: var(--s); height: var(--s);
	border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center;
	border: 2px dashed currentColor;
	position: relative;
	flex: none;
}
.pmk-stamp::after {
	content: "";
	position: absolute; inset: 5px;
	border-radius: 50%;
	border: 1px solid currentColor;
	opacity: 0.5;
}
.pmk-stamp__mono {
	font-family: var(--pmk-font-display);
	font-weight: 700;
	font-size: 0.92rem;
	letter-spacing: 0.02em;
}
.pmk-stamp--sm { --s: 30px; }
.pmk-stamp--sm .pmk-stamp__mono { font-size: 0.68rem; }
.pmk-stamp--lg { --s: 64px; }
.pmk-stamp--lg .pmk-stamp__mono { font-size: 1.2rem; }

.pmk-stamp--green   { color: var(--pmk-green); background: var(--pmk-green-tint); }
.pmk-stamp--saffron { color: var(--pmk-saffron-dark); background: var(--pmk-saffron-tint); }
.pmk-stamp--seal    { color: var(--pmk-seal); background: var(--pmk-seal-tint); }

/* ==========================================================================
   Top utility bar
   ========================================================================== */
.pmk-topbar { background: var(--pmk-green-dark); color: var(--pmk-parchment-2); font-size: 0.82rem; }
.pmk-topbar__inner {
	display: flex; align-items: center; gap: 16px;
	padding: 7px 20px;
	flex-wrap: wrap;
}
.pmk-topbar__badge { display: flex; align-items: center; gap: 6px; font-weight: 600; }
.pmk-dot {
	width: 7px; height: 7px; border-radius: 50%;
	background: var(--pmk-saffron);
	animation: pmk-pulse 1.8s infinite;
}
@keyframes pmk-pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.35; } }
.pmk-topbar__date { opacity: 0.85; }

/* ==========================================================================
   Header / nav
   ========================================================================== */
.pmk-header {
	background: var(--pmk-parchment-2);
	position: sticky;
	top: 0;
	z-index: 60;
	box-shadow: 0 2px 10px -4px rgba(32, 35, 31, 0.14);
}
.pmk-header__inner {
	display: flex; align-items: center; gap: 20px;
	padding: 14px 20px;
}
.pmk-brand { display: flex; align-items: center; gap: 12px; color: var(--pmk-ink); }
.pmk-brand__stamp {
	width: 44px; height: 44px; border-radius: 50%;
	background: var(--pmk-green); color: var(--pmk-parchment-2);
	display: flex; align-items: center; justify-content: center;
	font-family: var(--pmk-font-display); font-weight: 700;
	border: 2px dashed var(--pmk-saffron);
}
.pmk-brand__name { display: block; font-family: var(--pmk-font-display); font-weight: 700; font-size: 1.18rem; color: var(--pmk-green-dark); }
.pmk-brand__tag { display: block; font-size: 0.72rem; color: var(--pmk-ink-soft); letter-spacing: 0.03em; }

.pmk-nav { margin-left: auto; }
.pmk-nav__list { display: flex; gap: 22px; flex-wrap: wrap; }
.pmk-nav__list a {
	font-weight: 600; font-size: 0.92rem; color: var(--pmk-ink);
	padding: 6px 0; border-bottom: 2px solid transparent;
}
.pmk-nav__list a:hover { color: var(--pmk-green); border-bottom-color: var(--pmk-saffron); }

.pmk-nav-toggle {
	display: none; margin-left: auto;
	background: none; border: none; cursor: pointer;
	width: 38px; height: 32px; flex-direction: column; justify-content: space-between;
	padding: 4px;
}
.pmk-nav-toggle span { display: block; height: 3px; background: var(--pmk-green-dark); border-radius: 2px; }

.pmk-accent-bar {
	height: 4px;
	background: linear-gradient(90deg, var(--pmk-saffron) 0 33%, var(--pmk-white) 33% 66%, var(--pmk-green) 66% 100%);
}

@media (max-width: 880px) {
	.pmk-nav-toggle { display: flex; }
	.pmk-nav {
		position: absolute; top: 100%; left: 0; right: 0;
		background: var(--pmk-parchment-2);
		box-shadow: var(--pmk-shadow);
		max-height: 0; overflow: hidden;
		transition: max-height 0.25s ease;
	}
	.pmk-nav.is-open { max-height: 420px; }
	.pmk-nav__list { flex-direction: column; gap: 0; padding: 10px 20px 18px; }
	.pmk-nav__list a { display: block; padding: 10px 0; border-bottom: 1px solid var(--pmk-sand-line); }
}

/* ==========================================================================
   Hero
   ========================================================================== */
.pmk-hero { background: var(--pmk-parchment-2); border-bottom: 1px solid var(--pmk-sand-line); padding: 56px 0 64px; overflow: hidden; }
.pmk-hero__grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 48px; align-items: center; }
.pmk-hero__copy { max-width: 760px; }
.pmk-hero__title { font-size: clamp(1.9rem, 4vw, 2.9rem); margin-bottom: 0.4em; }
.pmk-hero__title span { color: var(--pmk-saffron-dark); }
.pmk-hero__sub { font-size: 1.05rem; color: var(--pmk-ink-soft); max-width: 540px; }
.pmk-hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin: 22px 0 36px; }
.pmk-hero__stats { display: flex; gap: 34px; margin: 0; flex-wrap: wrap; }
.pmk-hero__stats dt { font-family: var(--pmk-font-mono); font-size: 1.5rem; font-weight: 600; color: var(--pmk-green); }
.pmk-hero__stats dd { margin: 0; font-size: 0.82rem; color: var(--pmk-ink-soft); }

/* Hero illustration — right side */
.pmk-hero__art { display: flex; align-items: center; justify-content: center; }
.pmk-hero__svg { width: 100%; max-width: 420px; height: auto; }
.pmk-hero__photo {
	width: 100%; max-width: 460px; aspect-ratio: 4/3.4; object-fit: cover;
	border-radius: 16px; box-shadow: var(--pmk-shadow);
	border: 4px solid var(--pmk-white); outline: 2px dashed var(--pmk-saffron); outline-offset: 6px;
}
@media (max-width: 980px) { .pmk-hero__photo { max-width: 340px; } }
@media (max-width: 560px) { .pmk-hero__photo { max-width: 260px; } }
.pmk-hero__ring { transform-origin: 230px 210px; animation: pmk-spin 40s linear infinite; }
.pmk-hero__arm { transform-origin: 264px 200px; animation: pmk-sway 3.4s ease-in-out infinite; }
.pmk-hero__dot1 { animation: pmk-float 3.6s ease-in-out infinite; }
.pmk-hero__dot2 { animation: pmk-float 4.2s ease-in-out infinite 0.4s; }
.pmk-hero__dot3 { animation: pmk-float 3.1s ease-in-out infinite 0.8s; }
@keyframes pmk-spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes pmk-sway { 0%,100% { transform: rotate(0deg); } 50% { transform: rotate(-3deg); } }
@keyframes pmk-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
@media (prefers-reduced-motion: reduce) {
	.pmk-hero__ring, .pmk-hero__arm,
	.pmk-hero__dot1, .pmk-hero__dot2, .pmk-hero__dot3 { animation: none; }
}
@media (max-width: 980px) {
	.pmk-hero__grid { grid-template-columns: 1fr; gap: 32px; }
	.pmk-hero__art { order: -1; }
	.pmk-hero__svg { max-width: 300px; }
}
@media (max-width: 560px) {
	.pmk-hero__svg { max-width: 240px; }
}

/* ==========================================================================
   Ticker
   ========================================================================== */
.pmk-ticker {
	background: var(--pmk-green-dark);
	color: var(--pmk-parchment-2);
	overflow: hidden;
	white-space: nowrap;
	padding: 10px 0;
}
.pmk-ticker__track { display: inline-flex; animation: pmk-scroll 38s linear infinite; }
.pmk-ticker:hover .pmk-ticker__track { animation-play-state: paused; }
.pmk-ticker__set { display: inline-flex; align-items: center; padding-right: 40px; }
.pmk-ticker__set a { color: var(--pmk-parchment-2); font-size: 0.9rem; margin-right: 40px; }
.pmk-ticker__set a:hover { color: var(--pmk-saffron); }
.pmk-ticker__sep { color: var(--pmk-saffron); margin-right: 40px; }
@keyframes pmk-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ==========================================================================
   Sections
   ========================================================================== */
.pmk-section { padding: 64px 0; }
.pmk-section--alt { background: var(--pmk-parchment-2); border-top: 1px dashed var(--pmk-sand-line); border-bottom: 1px dashed var(--pmk-sand-line); }
.pmk-section__title { font-size: 1.7rem; margin-bottom: 28px; }
.pmk-section__title--sm { font-size: 1.3rem; margin-bottom: 18px; }
.pmk-section__head { display: flex; justify-content: space-between; align-items: baseline; flex-wrap: wrap; gap: 10px; }
.pmk-link-more { font-weight: 600; font-family: var(--pmk-font-mono); font-size: 0.85rem; }

/* Category grid */
.pmk-cat-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(190px, 1fr)); gap: 16px; }
.pmk-cat-card {
	display: flex; flex-direction: column; align-items: flex-start; gap: 10px;
	background: var(--pmk-white);
	border: 1px solid var(--pmk-sand-line);
	border-radius: var(--pmk-radius);
	padding: 18px 16px;
	color: var(--pmk-ink);
	transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}
.pmk-cat-card:hover { transform: translateY(-3px); box-shadow: var(--pmk-shadow); border-color: var(--pmk-saffron); }
.pmk-cat-card__name { font-weight: 700; font-family: var(--pmk-font-display); font-size: 1.02rem; color: var(--pmk-green-dark); }
.pmk-cat-card__count { font-family: var(--pmk-font-mono); font-size: 0.78rem; color: var(--pmk-ink-soft); }

/* Post card grid — "ticket stub" style */
.pmk-card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 26px; }
.pmk-card-grid--tight { grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 18px; }

.pmk-card {
	background: var(--pmk-white);
	border-radius: var(--pmk-radius);
	overflow: hidden;
	box-shadow: var(--pmk-shadow);
	display: flex; flex-direction: column;
	position: relative;
}
.pmk-card::before, .pmk-card::after {
	content: ""; position: absolute; width: 16px; height: 16px;
	background: var(--pmk-parchment); border-radius: 50%;
	z-index: 2;
}
.pmk-card::before { left: -8px; top: 132px; }
.pmk-card::after  { right: -8px; top: 132px; }
.pmk-card__media-wrap { position: relative; }
.pmk-card__media { display: block; aspect-ratio: 3/2; background: var(--pmk-green-tint); overflow: hidden; }
.pmk-card__media img { width: 100%; height: 100%; object-fit: cover; }
.pmk-card__media-fallback { width: 100%; height: 100%; display: flex; align-items: center; justify-content: center; }
.pmk-card__tag {
	position: absolute; bottom: 10px; left: 10px; z-index: 2;
	background: var(--pmk-green-dark); color: var(--pmk-white);
	font-size: 0.72rem; font-weight: 600;
	padding: 4px 10px; border-radius: 4px;
}
.pmk-card__tag:hover { background: var(--pmk-saffron); color: var(--pmk-green-dark); }
.pmk-card__body { padding: 18px 18px 20px; border-top: 1px dashed var(--pmk-sand-line); flex: 1; display: flex; flex-direction: column; }
.pmk-card__meta { font-family: var(--pmk-font-mono); font-size: 0.74rem; color: var(--pmk-ink-soft); margin-bottom: 8px; }
.pmk-card__title { font-size: 1.08rem; margin-bottom: 8px; }
.pmk-card__title a { color: var(--pmk-green-dark); }
.pmk-card__title a:hover { color: var(--pmk-saffron-dark); }
.pmk-card__excerpt { font-size: 0.9rem; color: var(--pmk-ink-soft); margin: 0; }

.pmk-empty { color: var(--pmk-ink-soft); font-style: italic; }

/* Category-wise blocks */
.pmk-cat-block { margin-bottom: 44px; padding-top: 28px; border-top: 1px dotted var(--pmk-sand-line); }
.pmk-cat-block:first-of-type { border-top: none; padding-top: 0; }
.pmk-cat-block__head { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.pmk-cat-block__head h3 { margin: 0; font-size: 1.18rem; flex: 1; }

/* ==========================================================================
   Archive / single / page layout
   ========================================================================== */
.pmk-page-grid { display: grid; grid-template-columns: 1fr 300px; gap: 40px; padding: 48px 0 64px; align-items: start; }
.pmk-page-main { min-width: 0; }
.pmk-archive-head { margin-bottom: 32px; display: flex; gap: 16px; align-items: flex-start; }
.pmk-archive-head--cat { align-items: center; }
.pmk-archive-head__desc { color: var(--pmk-ink-soft); max-width: 640px; }

.pmk-pagination { margin-top: 36px; }
.pmk-pagination .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 36px; height: 36px; margin-right: 6px;
	border: 1px solid var(--pmk-sand-line); border-radius: 6px;
	font-family: var(--pmk-font-mono); font-size: 0.85rem;
	color: var(--pmk-ink);
}
.pmk-pagination .page-numbers.current { background: var(--pmk-green); color: var(--pmk-white); border-color: var(--pmk-green); }

@media (max-width: 920px) {
	.pmk-page-grid { grid-template-columns: 1fr; }
}

/* Single post */
.pmk-single__cat {
	display: inline-flex; align-items: center; gap: 8px;
	font-weight: 700; font-size: 0.85rem; color: var(--pmk-green);
	margin-bottom: 14px;
}
.pmk-single__title { font-size: clamp(1.6rem, 3.2vw, 2.3rem); margin-bottom: 10px; }
.pmk-single__meta { font-family: var(--pmk-font-mono); font-size: 0.8rem; color: var(--pmk-ink-soft); margin-bottom: 24px; }
.pmk-single__thumb { border-radius: var(--pmk-radius); overflow: hidden; margin-bottom: 28px; box-shadow: var(--pmk-shadow); }
.pmk-single__content { max-width: 720px; font-size: 1.04rem; }
.pmk-single__content h2 { font-size: 1.4rem; margin-top: 1.6em; }
.pmk-single__content h3 { font-size: 1.18rem; margin-top: 1.4em; }
.pmk-single__content ul, .pmk-single__content ol { margin: 0 0 1em 1.2em; padding: 0; list-style: revert; }
.pmk-single__content a { text-decoration: underline; }
.pmk-single__content blockquote {
	border-left: 3px solid var(--pmk-saffron);
	margin: 1.4em 0; padding: 4px 0 4px 18px;
	color: var(--pmk-ink-soft); font-style: italic;
}
.pmk-single__footer { margin-top: 36px; padding-top: 24px; border-top: 1px dashed var(--pmk-sand-line); }
.pmk-single__tags { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.pmk-single__tags a {
	font-size: 0.78rem; background: var(--pmk-green-tint); color: var(--pmk-green);
	padding: 5px 11px; border-radius: 14px;
}
.pmk-author-box { display: flex; gap: 14px; align-items: center; background: var(--pmk-parchment-2); border: 1px solid var(--pmk-sand-line); border-radius: var(--pmk-radius); padding: 16px; }
.pmk-author-box img { border-radius: 50%; }
.pmk-author-box__name { font-weight: 700; margin-bottom: 2px; }
.pmk-author-box__bio { font-size: 0.88rem; color: var(--pmk-ink-soft); margin: 0; }
.pmk-related { margin-top: 40px; }

/* Static pages */
.pmk-page { padding: 48px 0 64px; }
.pmk-page--full .pmk-single__content { max-width: 760px; }
.pmk-page__head { margin-bottom: 24px; }

/* Page hero — shared header band for About, Contact & legal pages */
.pmk-page-hero {
	background: var(--pmk-parchment-2);
	border-bottom: 1px solid var(--pmk-sand-line);
	padding: 48px 0 40px;
}
.pmk-page-hero__title { font-size: clamp(1.8rem, 4.4vw, 2.8rem); margin-bottom: 0; }
.pmk-page-hero__title + .pmk-page-hero__sub { margin-top: 14px; }
.pmk-page-hero__sub { font-size: 1.05rem; color: var(--pmk-ink-soft); max-width: 620px; margin-bottom: 0; }

/* 404 */
.pmk-404 { text-align: center; padding: 80px 0; }
.pmk-404 .pmk-cat-grid { max-width: 760px; margin: 32px auto; text-align: left; }
.pmk-404 .pmk-stamp { margin: 0 auto 20px; }

/* ==========================================================================
   Sidebar
   ========================================================================== */
.pmk-sidebar { display: flex; flex-direction: column; gap: 22px; }
.pmk-widget {
	background: var(--pmk-white);
	border: 1px solid var(--pmk-sand-line);
	border-radius: var(--pmk-radius);
	padding: 20px;
}
.pmk-widget--cta { background: var(--pmk-green); color: var(--pmk-parchment-2); }
.pmk-widget--cta .pmk-widget__title { color: var(--pmk-parchment-2); }
.pmk-widget__title { font-size: 1.05rem; margin-bottom: 12px; }
.pmk-sidebar__cats li + li { border-top: 1px dotted var(--pmk-sand-line); }
.pmk-sidebar__cats a { display: flex; align-items: center; gap: 10px; padding: 10px 0; color: var(--pmk-ink); }
.pmk-sidebar__cats a span:nth-child(2) { flex: 1; font-weight: 600; font-size: 0.9rem; }
.pmk-sidebar__count { font-family: var(--pmk-font-mono); font-size: 0.78rem; color: var(--pmk-ink-soft); }

/* ==========================================================================
   Footer
   ========================================================================== */
.pmk-footer { background: var(--pmk-green-dark); color: var(--pmk-parchment-2); margin-top: 0; }
.pmk-footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 36px; padding: 56px 20px 36px; }
.pmk-brand--footer { color: var(--pmk-parchment-2); margin-bottom: 14px; display: inline-flex; }
.pmk-brand--footer .pmk-brand__name { color: var(--pmk-parchment-2); }
.pmk-footer__about { font-size: 0.88rem; color: #C9D6CC; line-height: 1.7; }
.pmk-footer__heading { color: var(--pmk-parchment-2); font-size: 1rem; margin-bottom: 14px; }
.pmk-footer__list li { margin-bottom: 9px; }
.pmk-footer__list a { color: #CFE0D2; font-size: 0.9rem; }
.pmk-footer__list a:hover { color: var(--pmk-saffron); }
.pmk-footer__list--stamps a { display: flex; align-items: center; gap: 10px; }
.pmk-footer__bottom { border-top: 1px solid rgba(255,255,255,0.12); }
.pmk-footer__bottom-inner { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding: 18px 20px; font-size: 0.8rem; color: #9FB3A3; }
.pmk-footer__bottom-inner p { margin: 0; }

@media (max-width: 880px) {
	.pmk-footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
	.pmk-footer__grid { grid-template-columns: 1fr; }
	.pmk-hero__stats { flex-wrap: wrap; gap: 20px; }
}

/* ==========================================================================
   Mobile responsiveness pass
   ========================================================================== */
@media (max-width: 768px) {
	.pmk-container { padding: 0 16px; }
	.pmk-hero { padding: 36px 0 40px; }
	.pmk-hero__actions { flex-direction: column; align-items: stretch; }
	.pmk-hero__actions .pmk-btn { width: 100%; }
	.pmk-hero__stats { gap: 22px; }
	.pmk-section { padding: 40px 0; }
	.pmk-section__title { font-size: 1.4rem; margin-bottom: 20px; }
	.pmk-section__head { flex-direction: column; align-items: flex-start; }
	.pmk-cat-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 12px; }
	.pmk-cat-card { padding: 14px 12px; }
	.pmk-card-grid, .pmk-card-grid--tight { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 18px; }
	.pmk-topbar__inner { padding: 6px 16px; font-size: 0.76rem; }
	.pmk-topbar__date { display: none; }
	.pmk-header__inner { padding: 12px 16px; }
	.pmk-brand__tag { display: none; }
	.pmk-page-hero { padding: 32px 0 28px; }
	.pmk-page { padding: 32px 0 48px; }
	.pmk-ticker__set a { font-size: 0.82rem; }
	.pmk-footer__grid { padding: 40px 16px 28px; gap: 28px; }
	.pmk-footer__bottom-inner { flex-direction: column; text-align: center; }
	.pmk-single__content { max-width: 100%; }
	.pmk-author-box { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
	.pmk-cat-grid { grid-template-columns: repeat(2, 1fr); }
	.pmk-card-grid, .pmk-card-grid--tight { grid-template-columns: 1fr; }
	.pmk-hero__title { font-size: 1.6rem; }
	.pmk-hero__sub { font-size: 0.95rem; }
	.pmk-page-hero__sub { font-size: 0.95rem; }
	.pmk-brand__name { font-size: 1.02rem; }
	.pmk-footer__grid { grid-template-columns: 1fr; }
	.pmk-btn { padding: 11px 16px; font-size: 0.9rem; }
}

/* ==========================================================================
   Contact form  [pmk_contact_form]
   ========================================================================== */
.pmk-contact-form-wrap { max-width: 560px; }
.pmk-contact-form__hp { position: absolute; left: -9999px; top: -9999px; }
.pmk-contact-form__row { margin-bottom: 18px; }
.pmk-contact-form label {
	display: block; font-weight: 600; font-size: 0.88rem;
	color: var(--pmk-green-dark); margin-bottom: 6px;
}
.pmk-contact-form input[type="text"],
.pmk-contact-form input[type="email"],
.pmk-contact-form textarea {
	width: 100%;
	font-family: var(--pmk-font-body); font-size: 0.95rem; color: var(--pmk-ink);
	background: var(--pmk-white);
	border: 1px solid var(--pmk-sand-line);
	border-radius: 7px;
	padding: 11px 13px;
}
.pmk-contact-form textarea { resize: vertical; }
.pmk-contact-form input:focus,
.pmk-contact-form textarea:focus {
	outline: none; border-color: var(--pmk-green);
	box-shadow: 0 0 0 3px var(--pmk-green-tint);
}
.pmk-form-msg {
	padding: 12px 16px; border-radius: 7px; font-size: 0.92rem; margin-bottom: 18px;
}
.pmk-form-msg--ok { background: var(--pmk-green-tint); color: var(--pmk-green-dark); }
.pmk-form-msg--error { background: var(--pmk-seal-tint); color: var(--pmk-seal); }

/* ==========================================================================
   Contact Us page
   ========================================================================== */
.pmk-contact-page { padding-bottom: 64px; }

.pmk-info-grid {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
	margin: 40px 0 44px;
}
.pmk-info-card {
	background: var(--pmk-white);
	border: 1px solid var(--pmk-sand-line);
	border-radius: var(--pmk-radius);
	padding: 24px 22px;
}
.pmk-info-card__icon {
	width: 44px; height: 44px; border-radius: 50%;
	display: inline-flex; align-items: center; justify-content: center;
	margin-bottom: 14px;
}
.pmk-info-card__icon--green   { background: var(--pmk-green-tint); color: var(--pmk-green); }
.pmk-info-card__icon--saffron { background: var(--pmk-saffron-tint); color: var(--pmk-saffron-dark); }
.pmk-info-card__icon--seal    { background: var(--pmk-seal-tint); color: var(--pmk-seal); }
.pmk-info-card__title { font-size: 1.02rem; margin-bottom: 6px; }
.pmk-info-card__text { font-size: 0.9rem; color: var(--pmk-ink-soft); margin: 0; }
.pmk-info-card__text a { color: var(--pmk-green); font-weight: 600; }

.pmk-contact-layout { padding-top: 0; }

.pmk-contact-panel__title { font-size: 1.3rem; margin-bottom: 20px; }

.pmk-faq-widget .pmk-widget__title { margin-bottom: 4px; }
.pmk-faq-item {
	border-top: 1px dotted var(--pmk-sand-line);
	padding: 14px 0;
}
.pmk-faq-item summary {
	display: flex; align-items: center; justify-content: space-between; gap: 12px;
	cursor: pointer; list-style: none;
	font-weight: 600; font-size: 0.92rem; color: var(--pmk-ink);
}
.pmk-faq-item summary::-webkit-details-marker { display: none; }
.pmk-faq-item summary::marker { content: ""; }
.pmk-faq-item__icon {
	flex: none; width: 20px; height: 20px; border-radius: 50%;
	position: relative;
	color: var(--pmk-saffron-dark); background: var(--pmk-saffron-tint);
}
.pmk-faq-item__icon::before, .pmk-faq-item__icon::after {
	content: ""; position: absolute; left: 50%; top: 50%;
	background: currentColor; transform: translate(-50%, -50%);
	transition: transform 0.15s ease;
}
.pmk-faq-item__icon::before { width: 10px; height: 2px; }
.pmk-faq-item__icon::after  { width: 2px; height: 10px; }
.pmk-faq-item[open] .pmk-faq-item__icon::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.pmk-faq-item[open] summary { color: var(--pmk-green-dark); }
.pmk-faq-item p {
	margin: 12px 0 0; font-size: 0.88rem; color: var(--pmk-ink-soft);
}

.pmk-contact-page__note {
	text-align: center; max-width: 620px; margin: 44px auto 0;
	color: var(--pmk-ink-soft); font-size: 0.95rem;
}

@media (max-width: 880px) {
	.pmk-info-grid { grid-template-columns: 1fr; gap: 14px; margin: 28px 0 32px; }
}
@media (max-width: 768px) {
	.pmk-info-card { padding: 20px 18px; }
	.pmk-contact-page__note { margin-top: 32px; font-size: 0.9rem; }
}
