/*
Theme Name: Post Office Coaching
Theme URI: https://postofficecoaching.in
Author: Shiv Kumar
Author URI: https://postofficecoaching.in
Description: Full homepage theme for Post Office Coaching — GDS, MTS, Postman, PA/SA. Navy blue design with testimonials, FAQ, hero section, offers grid and footer with app download links.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: poc
Tags: blog, education, custom-menu, featured-images, custom-logo, threaded-comments, responsive-layout
*/

/* ── Google Font ──────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;0,900;1,400&display=swap');

/* ── Design tokens ────────────────────────────────────────────────────────── */
:root {
	--navy:       #1e3a8a;
	--navy-dark:  #0f172a;
	--navy-mid:   #2563eb;
	--navy-bg:    #eff6ff;
	--navy-light: #dbeafe;
	--amber:      #f59e0b;
	--amber-mid:  #d97706;
	--white:      #ffffff;
	--bg:         #f0f4ff;
	--bg2:        #f8faff;
	--text:       #0f172a;
	--text-mid:   #334155;
	--text-muted: #64748b;
	--border:     #e2e8f0;
	--border-mid: #cbd5e1;
	--radius:     12px;
	--radius-sm:  8px;
	--shadow-sm:  0 1px 4px rgba(30,58,138,.07);
	--shadow-md:  0 4px 20px rgba(30,58,138,.10);
	--shadow-lg:  0 8px 32px rgba(30,58,138,.13);
}

/* ── Reset ────────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
	font-family: 'Plus Jakarta Sans', system-ui, sans-serif;
	background: var(--bg);
	color: var(--text);
	font-size: 15px;
	line-height: 1.6;
	-webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-thumb { background: rgba(30,58,138,.2); border-radius: 3px; }

/* ── Top bar ──────────────────────────────────────────────────────────────── */
.poc-topbar {
	background: var(--navy);
	color: #fff;
	font-size: 11.5px;
	padding: 7px 24px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 6px;
}
.poc-topbar-left { display: flex; align-items: center; gap: 16px; }
.poc-topbar-left a { color: rgba(255,255,255,.8); display: flex; align-items: center; gap: 5px; }
.poc-topbar-right { display: flex; align-items: center; gap: 14px; }
.poc-topbar-right a { color: rgba(255,255,255,.8); font-weight: 500; }
.poc-topbar-right a.pill {
	background: var(--amber);
	color: var(--navy);
	padding: 2px 12px;
	border-radius: 4px;
	font-weight: 800;
}

/* ── Navbar ───────────────────────────────────────────────────────────────── */
.poc-header {
	background: rgba(255,255,255,.97);
	backdrop-filter: blur(12px);
	border-bottom: 1px solid var(--border);
	box-shadow: var(--shadow-sm);
	position: sticky;
	top: 0;
	z-index: 200;
}
.poc-nav-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 16px;
	min-height: 64px;
	height: auto;
	display: flex;
	align-items: center;
	justify-content: flex-start;
	gap: 12px;
	flex-wrap: nowrap;
}
.poc-brand {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	flex-shrink: 0;
}
.poc-logo-box {
	width: 40px; height: 40px;
	background: var(--navy-bg);
	border-radius: 10px;
	display: flex; align-items: center; justify-content: center;
	font-size: 22px; flex-shrink: 0;
}
.poc-brand-name {
	display: block;
	font-weight: 800;
	font-size: 14.5px;
	color: var(--navy);
	letter-spacing: -.3px;
	line-height: 1.2;
}
.poc-brand-tag {
	display: block;
	font-size: 8.5px;
	font-weight: 700;
	color: var(--amber-mid);
	letter-spacing: 2.5px;
	text-transform: uppercase;
}

/* Primary nav */
#poc-primary-nav { display: flex; align-items: center; }
#poc-primary-nav ul { display: flex; align-items: center; gap: 2px; }
#poc-primary-nav ul li { position: relative; }
#poc-primary-nav ul li a {
	display: flex; align-items: center; gap: 5px;
	padding: 7px 11px;
	font-size: 13px;
	font-weight: 600;
	color: var(--text-muted);
	border-radius: var(--radius-sm);
	transition: all .15s;
	white-space: nowrap;
}
#poc-primary-nav ul li a:hover,
#poc-primary-nav ul li.current-menu-item > a,
#poc-primary-nav ul li.current-menu-parent > a {
	color: var(--navy);
	background: var(--navy-bg);
}
#poc-primary-nav ul li a .poc-caret {
	font-size: 11px;
	color: var(--text-muted);
	transition: transform .2s;
	display: inline-block;
}
#poc-primary-nav ul li:hover > a .poc-caret { transform: rotate(180deg); }

/* Dropdowns */
#poc-primary-nav ul li ul {
	display: none;
	position: absolute;
	top: calc(100% + 6px);
	left: 0;
	background: var(--white);
	border: 1px solid var(--border);
	border-radius: 10px;
	min-width: 210px;
	padding: 6px;
	box-shadow: var(--shadow-lg);
	z-index: 300;
	gap: 1px;
	flex-direction: column;
}
#poc-primary-nav ul li:hover > ul { display: flex; }
#poc-primary-nav ul li ul li a {
	padding: 9px 12px;
	font-size: 12.5px;
	border-radius: var(--radius-sm);
	color: var(--text-mid);
	width: 100%;
}
#poc-primary-nav ul li ul li a:hover { color: var(--navy); background: var(--navy-bg); }

.poc-nav-cta-wrap {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-left: auto;
}
	background: var(--navy);
	color: #fff !important;
	border: none;
	border-radius: var(--radius-sm);
	padding: 9px 18px;
	font-size: 12.5px;
	font-weight: 700;
	white-space: nowrap;
	transition: opacity .15s;
	flex-shrink: 0;
	display: inline-block;
}
.poc-nav-cta:hover { opacity: .87; color: #fff !important; }

/* Hamburger */
.poc-menu-toggle {
	display: none;
	background: none;
	border: 1.5px solid var(--border);
	border-radius: var(--radius-sm);
	padding: 7px 10px;
	font-size: 18px;
	color: var(--navy);
	line-height: 1;
}

/* ── Hero ─────────────────────────────────────────────────────────────────── */
.poc-hero-wrap { background: #eef2ff; padding: 52px 24px 44px; }
.poc-hero {
	max-width: 1200px;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 36px;
	align-items: stretch;
}
.poc-hero-badge {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	background: #fef3c7;
	border: 1px solid #fde68a;
	color: var(--amber-mid);
	font-size: 10.5px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	padding: 5px 13px;
	border-radius: 20px;
	margin-bottom: 16px;
}
.poc-hero h1 {
	font-size: 2.5rem;
	font-weight: 900;
	color: var(--text);
	line-height: 1.15;
	letter-spacing: -.5px;
	margin-bottom: 14px;
}
.poc-hero h1 span { color: var(--navy); }
.poc-hero-sub {
	font-size: 14px;
	color: var(--text-muted);
	line-height: 1.75;
	margin-bottom: 20px;
	max-width: 440px;
}
.poc-exam-tags { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; margin-bottom: 24px; }
.poc-exam-tag {
	background: var(--white);
	border: 1px solid #c7d2fe;
	color: #3730a3;
	font-size: 11px;
	font-weight: 700;
	padding: 4px 13px;
	border-radius: 20px;
}
.poc-hero-btns { display: flex; gap: 12px; flex-wrap: wrap; position: relative; z-index: 2; }
.poc-btn-primary {
	background: var(--navy);
	color: #fff !important;
	border: none;
	border-radius: var(--radius-sm);
	padding: 12px 24px;
	font-size: 13.5px;
	font-weight: 700;
	transition: opacity .15s;
	display: inline-block;
	text-align: center;
	text-decoration: none !important;
	cursor: pointer;
	position: relative;
	z-index: 2;
}
.poc-btn-primary:hover { opacity: .87; color: #fff !important; }
.poc-btn-outline {
	background: var(--white);
	color: var(--navy) !important;
	border: 1.5px solid var(--navy);
	border-radius: var(--radius-sm);
	padding: 11px 22px;
	font-size: 13.5px;
	font-weight: 700;
	transition: background .15s;
	display: inline-block;
	text-align: center;
	text-decoration: none !important;
	cursor: pointer;
	position: relative;
	z-index: 2;
}
.poc-btn-outline:hover { background: var(--navy-bg); color: var(--navy) !important; }
.poc-hero-stats { display: flex; gap: 24px; margin-top: 28px; flex-wrap: wrap; }
.poc-stat-num { font-size: 1.45rem; font-weight: 900; color: var(--navy); line-height: 1; }
.poc-stat-lbl { font-size: 10.5px; color: var(--text-muted); margin-top: 3px; font-weight: 600; }

/* Hero image */
.poc-hero-visual {
	display: flex;
	justify-content: center;
	align-self: stretch;
}
.poc-hero-img-wrap {
	width: 100%;
	max-width: 480px;
	border-radius: 20px;
	overflow: hidden;
	background: var(--navy);
	display: flex;
	align-items: stretch;
	justify-content: center;
	position: relative;
	min-height: 420px;
}
.poc-hero-img-wrap img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.poc-hero-img-placeholder {
	text-align: center;
	color: #fff;
	padding: 24px;
	position: relative;
	z-index: 1;
}
.poc-hero-img-placeholder::before {
	content: '';
	position: absolute;
	inset: 0;
	background: var(--navy-mid);
	opacity: .4;
	border-radius: 50%;
	width: 70%; height: 70%;
	top: 15%; left: 15%;
	z-index: -1;
}

/* ── Generic section wrapper ──────────────────────────────────────────────── */
.poc-section { max-width: 1200px; margin: 0 auto; padding: 48px 24px; }
.poc-section-pill {
	display: inline-block;
	background: var(--navy-bg);
	color: #1d4ed8;
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	padding: 4px 13px;
	border-radius: 16px;
	margin-bottom: 11px;
	border: 1px solid var(--navy-light);
}
.poc-section-hdr { text-align: center; margin-bottom: 32px; }
.poc-section-hdr h2 {
	font-size: 1.6rem;
	font-weight: 800;
	color: var(--text);
	letter-spacing: -.3px;
	margin-bottom: 7px;
}
.poc-section-hdr p { font-size: 13.5px; color: var(--text-muted); max-width: 500px; margin: 0 auto; line-height: 1.65; }

/* ── Offer cards ──────────────────────────────────────────────────────────── */
.poc-offer-grid {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 15px;
}
.poc-offer-grid-row2 {
	grid-column: 1 / -1;
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 15px;
	width: 75%;
	margin: 0 auto;
}
@media (max-width: 768px) {
	.poc-offer-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 12px !important; }
	.poc-offer-grid-row2 { grid-template-columns: repeat(2, 1fr) !important; width: 100% !important; gap: 12px !important; }
}
@media (max-width: 420px) {
	.poc-offer-grid { gap: 10px !important; }
	.poc-offer-grid-row2 { gap: 10px !important; }
	.poc-offer-card { padding: 16px 12px !important; }
	.poc-offer-icon { width: 42px !important; height: 42px !important; font-size: 22px !important; }
}
.poc-offer-card {
	background: var(--white);
	border-radius: var(--radius);
	border: 1px solid var(--border);
	padding: 20px 16px;
	text-align: center;
	transition: all .2s;
	display: block;
	color: inherit;
}
.poc-offer-card:hover { border-color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-md); color: inherit; }
.poc-offer-icon {
	width: 50px; height: 50px;
	border-radius: 13px;
	display: flex; align-items: center; justify-content: center;
	font-size: 26px;
	margin: 0 auto 12px;
}
.poc-offer-title { font-size: 13px; font-weight: 800; color: var(--text); margin-bottom: 4px; }
.poc-offer-count { font-size: 11.5px; font-weight: 600; color: var(--text-muted); }

/* ── Upcoming Courses ─────────────────────────────────────────────────────── */
.poc-upcoming-wrap { background: var(--white); padding: 8px 0 56px; }
.poc-upc-outer { overflow: hidden; }
.poc-upc-track {
	display: flex;
	transition: transform .5s cubic-bezier(.4,0,.2,1);
}
.poc-upc-card {
	flex: 0 0 100%;
	max-width: 100%;
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 40px;
	align-items: center;
	background: var(--navy-bg);
	border: 1px solid var(--navy-light);
	border-radius: 22px;
	padding: 32px;
}
.poc-upc-media { width: 100%; }
.poc-upc-video {
	position: relative;
	width: 100%;
	padding-top: 56.25%; /* 16:9 */
	border-radius: 16px;
	overflow: hidden;
	background: var(--navy-dark);
	box-shadow: var(--shadow-md);
}
.poc-upc-video iframe,
.poc-upc-video img {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: none;
	object-fit: cover;
}
.poc-upc-video-placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 42px;
	color: rgba(255,255,255,.6);
}
.poc-upc-content { padding: 8px 4px; }
.poc-upc-badge {
	display: inline-block;
	background: var(--navy);
	color: #fff;
	font-size: 11px;
	font-weight: 700;
	letter-spacing: .5px;
	text-transform: uppercase;
	padding: 6px 15px;
	border-radius: 20px;
	margin-bottom: 14px;
}
.poc-upc-title { font-size: 1.55rem; font-weight: 800; color: var(--text); letter-spacing: -.3px; margin-bottom: 8px; line-height: 1.25; }
.poc-upc-duration { font-size: 12.5px; font-weight: 700; color: var(--navy-mid); margin-bottom: 12px; }
.poc-upc-desc { font-size: 14px; color: var(--text-mid); line-height: 1.75; margin-bottom: 16px; }
.poc-upc-desc p { margin: 0 0 10px; }
.poc-upc-desc p:last-child { margin-bottom: 0; }
.poc-upc-highlights { list-style: none; margin: 0 0 22px; padding: 0; display: flex; flex-direction: column; gap: 9px; }
.poc-upc-highlights li { display: flex; align-items: flex-start; gap: 9px; font-size: 13.5px; color: var(--text); font-weight: 600; }
.poc-upc-check {
	flex-shrink: 0;
	width: 20px; height: 20px;
	border-radius: 50%;
	background: #dcfce7;
	color: #15803d;
	font-size: 11px;
	display: flex; align-items: center; justify-content: center;
	margin-top: 1px;
}
.poc-upc-cta { display: inline-flex; }
.poc-upc-controls { margin-top: 26px; }
.poc-upc-controls .poc-testi-btn { background: var(--navy-bg); border-color: var(--navy-light); color: var(--navy); }
.poc-upc-controls .poc-testi-btn:hover { background: var(--navy-light); }
.poc-upc-controls .poc-testi-dot { background: var(--navy-light); }
.poc-upc-controls .poc-testi-dot.active { background: var(--navy); }

@media (max-width: 860px) {
	.poc-upc-card { grid-template-columns: 1fr; gap: 22px; padding: 22px; }
	.poc-upc-title { font-size: 1.3rem; }
}
@media (max-width: 480px) {
	.poc-upc-card { padding: 16px; border-radius: 16px; }
}

/* ── Testimonials ─────────────────────────────────────────────────────────── */
.poc-testi-wrap { background: var(--navy); padding: 56px 0; }
.poc-testi-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.poc-testi-hdr { text-align: center; margin-bottom: 36px; }
.poc-testi-pill {
	display: inline-block;
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.2);
	color: rgba(255,255,255,.9);
	font-size: 10px;
	font-weight: 700;
	letter-spacing: 1.5px;
	text-transform: uppercase;
	padding: 4px 14px;
	border-radius: 16px;
	margin-bottom: 12px;
}
.poc-testi-hdr h2 { color: #fff; font-size: 1.6rem; font-weight: 800; margin-bottom: 7px; letter-spacing: -.3px; }
.poc-testi-hdr p { color: rgba(255,255,255,.6); font-size: 13.5px; }
.poc-testi-outer { overflow: hidden; }
.poc-testi-track { display: flex; gap: 16px; transition: transform .45s cubic-bezier(.4,0,.2,1); }
.poc-testi-card {
	flex: 0 0 300px;
	background: var(--white);
	border-radius: 16px;
	padding: 24px 22px;
	display: flex;
	flex-direction: column;
	gap: 14px;
}
.poc-testi-stars { display: flex; gap: 3px; }
.poc-testi-star { color: var(--amber); font-size: 15px; }
.poc-testi-quote {
	font-size: 13px;
	color: var(--text-mid);
	line-height: 1.75;
	font-style: italic;
	flex: 1;
	position: relative;
	padding-top: 6px;
}
.poc-testi-quote::before {
	content: '\201C';
	font-size: 2.5rem;
	color: var(--navy-light);
	line-height: .4;
	display: block;
	margin-bottom: 6px;
	font-style: normal;
	font-weight: 900;
}
.poc-testi-footer { display: flex; align-items: center; gap: 11px; padding-top: 14px; border-top: 1px solid #f1f5f9; }
.poc-testi-avatar {
	width: 38px; height: 38px;
	border-radius: 50%;
	display: flex; align-items: center; justify-content: center;
	font-size: 13px;
	font-weight: 800;
	flex-shrink: 0;
}
.poc-testi-name { font-size: 13px; font-weight: 800; color: var(--text); line-height: 1.2; }
.poc-testi-exam { font-size: 11px; font-weight: 600; color: var(--text-muted); margin-top: 2px; }
.poc-testi-verified {
	display: inline-block;
	font-size: 10px;
	font-weight: 700;
	padding: 2px 8px;
	border-radius: 10px;
	background: #dcfce7;
	color: #15803d;
	margin-top: 3px;
}
.poc-testi-controls { display: flex; align-items: center; justify-content: center; gap: 14px; margin-top: 30px; }
.poc-testi-btn {
	width: 40px; height: 40px;
	border-radius: 9px;
	background: rgba(255,255,255,.12);
	border: 1px solid rgba(255,255,255,.2);
	color: #fff;
	cursor: pointer;
	display: flex; align-items: center; justify-content: center;
	font-size: 18px;
	transition: all .18s;
}
.poc-testi-btn:hover { background: rgba(255,255,255,.25); }
.poc-testi-btn:disabled { opacity: .35; cursor: not-allowed; }
.poc-testi-dots { display: flex; gap: 7px; align-items: center; }
.poc-testi-dot {
	width: 7px; height: 7px;
	border-radius: 50%;
	background: rgba(255,255,255,.3);
	cursor: pointer;
	transition: all .22s;
	border: none;
}
.poc-testi-dot.active { background: var(--amber); width: 22px; border-radius: 4px; }
.poc-testi-summary {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 40px;
	max-width: 580px;
	margin-left: auto;
	margin-right: auto;
}
.poc-tsum-card {
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.12);
	border-radius: 13px;
	padding: 18px;
	text-align: center;
}
.poc-tsum-num { font-size: 1.6rem; font-weight: 900; color: #fff; line-height: 1; }
.poc-tsum-lbl { font-size: 11px; color: rgba(255,255,255,.6); margin-top: 5px; font-weight: 600; }

/* ── FAQ ──────────────────────────────────────────────────────────────────── */
.poc-faq-bg { background: var(--bg2); padding: 48px 0; }
.poc-faq-list { max-width: 700px; margin: 0 auto; display: flex; flex-direction: column; gap: 9px; }
.poc-faq-item { background: var(--white); border-radius: 11px; border: 1px solid var(--border); overflow: hidden; }
.poc-faq-q {
	width: 100%;
	padding: 16px 18px;
	font-size: 13.5px;
	font-weight: 700;
	color: var(--text);
	cursor: pointer;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 12px;
	transition: background .15s;
	background: none;
	border: none;
	text-align: left;
	font-family: inherit;
}
.poc-faq-q:hover { background: #f8faff; }
.poc-faq-icon { font-size: 18px; color: var(--text-muted); flex-shrink: 0; transition: transform .25s; }
.poc-faq-q.open .poc-faq-icon { transform: rotate(45deg); color: var(--navy); }
.poc-faq-a {
	max-height: 0;
	overflow: hidden;
	transition: max-height .32s ease, padding .32s ease;
	font-size: 13px;
	color: var(--text-muted);
	line-height: 1.75;
	padding: 0 18px;
}
.poc-faq-a.open { max-height: 200px; padding: 0 18px 16px; }

/* ── Footer ───────────────────────────────────────────────────────────────── */
.poc-footer { background: var(--navy-dark); padding: 48px 24px 20px; color: #fff; }
.poc-footer-inner { max-width: 1200px; margin: 0 auto; }
.poc-footer-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr 1fr 1fr;
	gap: 32px;
	margin-bottom: 36px;
}
.poc-footer-brand-name { color: #fff; font-weight: 800; font-size: 15px; display: block; margin-bottom: 3px; }
.poc-footer-brand-tag { color: var(--amber); font-size: 9px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase; display: block; margin-bottom: 12px; }
.poc-footer-desc { color: rgba(255,255,255,.75); font-size: 12px; line-height: 1.75; margin-bottom: 18px; max-width: 270px; }
.poc-social-row { display: flex; gap: 9px; margin-bottom: 18px; }
.poc-social-btn {
	width: 36px; height: 36px;
	border-radius: 9px;
	background: #1e293b;
	border: 1px solid #334155;
	display: flex; align-items: center; justify-content: center;
	transition: all .18s;
	color: #94a3b8;
	font-size: 18px;
	text-decoration: none;
}
.poc-social-btn:hover { background: #1d4ed8; border-color: #3b82f6; color: #fff; }
.poc-app-btns { display: flex; flex-direction: column; gap: 8px; }
.poc-app-btn {
	display: flex;
	align-items: center;
	gap: 10px;
	background: #1e293b;
	border: 1px solid #334155;
	border-radius: 9px;
	padding: 9px 14px;
	transition: border-color .18s;
	text-decoration: none;
}
.poc-app-btn:hover { border-color: #3b82f6; }
.poc-app-btn-icon { font-size: 20px; color: #94a3b8; }
.poc-app-btn-text { font-size: 10px; color: #94a3b8; line-height: 1; display: block; }
.poc-app-btn-name { font-size: 12.5px; font-weight: 700; color: #fff; line-height: 1; margin-top: 2px; display: block; }
.poc-footer-col h4 { font-size: 11px; font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 14px; }
.poc-footer-links { display: flex; flex-direction: column; gap: 9px; }
.poc-footer-links a { font-size: 12px; color: #fff !important; transition: color .15s; }
.poc-footer-links a:hover { color: #93c5fd !important; }
.poc-footer-links a.highlight { color: var(--amber); }
.poc-footer-bottom { border-top: 1px solid #1e293b; padding-top: 18px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.poc-footer-copy { font-size: 11.5px; color: rgba(255,255,255,.55); }

/* ── Blog listing (for blog page) ────────────────────────────────────────── */
.poc-blog-wrap { max-width: 1200px; margin: 0 auto; padding: 40px 24px; }
.poc-blog-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 40px 24px; text-align: center; }
.poc-blog-hero h1 { color: #fff; font-size: 1.8rem; font-weight: 800; margin-bottom: 8px; }
.poc-blog-hero p { color: rgba(255,255,255,.7); font-size: 14px; }
.poc-filter-bar { background: var(--white); border-bottom: 1px solid var(--border); padding: 10px 24px; display: flex; align-items: center; gap: 8px; flex-wrap: wrap; row-gap: 8px; position: sticky; top: 64px; z-index: 90; }
.poc-filter-bar::-webkit-scrollbar { display: none; }
.poc-filter-lbl { font-size: 11px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: .5px; flex-shrink: 0; margin-right: 4px; }
.poc-filter-tag { font-size: 12.5px; font-weight: 600; padding: 5px 14px; border-radius: 20px; border: 1.5px solid var(--border); background: var(--white); color: var(--text-muted); transition: all .18s; flex-shrink: 0; text-decoration: none; display: inline-block; }
.poc-filter-tag:hover, .poc-filter-tag.active { background: var(--navy); color: #fff; border-color: var(--navy); }
.poc-blog-list { display: flex; flex-direction: column; gap: 1px; background: var(--border); border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.poc-blog-item { background: var(--white); padding: 18px 20px; display: flex; align-items: flex-start; gap: 14px; text-decoration: none; color: inherit; transition: background .15s; }
.poc-blog-item:hover { background: #f0f5ff; }
.poc-blog-num { font-size: 1.2rem; font-weight: 800; color: var(--border-mid); min-width: 28px; line-height: 1; margin-top: 4px; flex-shrink: 0; }
.poc-blog-body { flex: 1; min-width: 0; }
.poc-blog-title { font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.45; margin-bottom: 5px; transition: color .15s; }
.poc-blog-item:hover .poc-blog-title { color: var(--navy); }
.poc-blog-excerpt { font-size: 12.5px; color: var(--text-muted); line-height: 1.6; }
.poc-blog-meta { display: flex; gap: 8px; font-size: 11.5px; color: var(--text-muted); margin-top: 7px; font-weight: 500; flex-wrap: wrap; }
.poc-blog-arrow { font-size: 1.1rem; color: var(--border-mid); align-self: center; flex-shrink: 0; transition: color .2s, transform .2s; }
.poc-blog-item:hover .poc-blog-arrow { color: var(--navy); transform: translateX(3px); }

/* ── Single post ──────────────────────────────────────────────────────────── */
.poc-post-wrap { max-width: 760px; margin: 0 auto; padding: 32px 24px; }
.poc-post-disclaimer { background: #fffbeb; border: 1px solid #fde68a; border-radius: var(--radius-sm); padding: 10px 14px; font-size: 12px; color: #78350f; line-height: 1.65; margin-bottom: 18px; }
.poc-post-disclaimer a { color: var(--navy); font-weight: 700; text-decoration: underline; }
.poc-back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; color: var(--navy); font-weight: 700; margin-bottom: 18px; transition: gap .2s; }
.poc-back-link:hover { gap: 10px; color: var(--navy); }
.poc-post-header { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; margin-bottom: 16px; box-shadow: var(--shadow-sm); }
.poc-post-title { font-size: 1.5rem; font-weight: 800; color: var(--text); line-height: 1.35; margin-bottom: 12px; letter-spacing: -.3px; }
.poc-post-excerpt { font-size: 14px; color: var(--text-muted); line-height: 1.7; font-style: italic; padding-left: 12px; border-left: 3px solid var(--amber); margin-bottom: 14px; }
.poc-post-meta { display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--text-muted); font-weight: 500; flex-wrap: wrap; padding-top: 12px; border-top: 1px solid var(--border); }
.poc-post-content { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); font-size: 14px; line-height: 1.85; color: var(--text-mid); }
.poc-post-content h2 { font-size: 1.05rem; font-weight: 800; color: var(--navy); margin: 2rem 0 .75rem; padding-bottom: .45rem; border-bottom: 2px solid var(--navy-bg); }
.poc-post-content h2:first-child { margin-top: 0; }
.poc-post-content h3 { font-size: .95rem; font-weight: 700; margin: 1.5rem 0 .5rem; color: var(--text); }
.poc-post-content p { margin-bottom: 1rem; }
.poc-post-content ul, .poc-post-content ol { margin: .75rem 0 1rem 1.5rem; }
.poc-post-content li { margin-bottom: .4rem; }
.poc-post-content strong { font-weight: 700; color: var(--text); }
.poc-post-content a { color: var(--navy); text-decoration: underline; }
.poc-post-content blockquote { border-left: 3px solid var(--amber); padding: .5rem 0 .5rem 1rem; color: var(--text-muted); font-style: italic; margin: 1rem 0; border-radius: 0; }
.poc-post-content table { width: 100%; border-collapse: collapse; margin: 1rem 0 1.5rem; font-size: 13px; border: 1px solid var(--border); border-radius: var(--radius-sm); overflow: hidden; }
.poc-post-content th { background: var(--navy-bg); color: var(--navy); padding: .65rem 1rem; text-align: left; font-weight: 700; font-size: 12px; text-transform: uppercase; letter-spacing: .3px; border-bottom: 2px solid var(--navy-light); }
.poc-post-content td { padding: .6rem 1rem; border-bottom: 1px solid var(--border); vertical-align: top; }
.poc-post-content tr:last-child td { border-bottom: none; }
.poc-post-content tr:nth-child(even) td { background: #f8faff; }
.poc-post-content img { border-radius: var(--radius-sm); margin: 1rem 0; max-width: 100%; }
.poc-post-nav { margin-top: 28px; padding-top: 18px; border-top: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }

/* ── Category badge ───────────────────────────────────────────────────────── */
.poc-cat-badge { display: inline-block; font-size: 10.5px; font-weight: 700; letter-spacing: .5px; text-transform: uppercase; padding: .22rem .6rem; border-radius: 6px; border: 1px solid transparent; text-decoration: none; }
.poc-badge-amber  { background: #fef3c7; color: #d97706; border-color: #fde68a; }
.poc-badge-blue   { background: #dbeafe; color: #1d4ed8; border-color: #bfdbfe; }
.poc-badge-green  { background: #dcfce7; color: #15803d; border-color: #bbf7d0; }
.poc-badge-purple { background: #ede9fe; color: #7c3aed; border-color: #ddd6fe; }
.poc-badge-orange { background: #fff7ed; color: #ea580c; border-color: #fed7aa; }
.poc-badge-navy   { background: var(--navy-bg); color: var(--navy); border-color: var(--navy-light); }

/* ── Pagination ───────────────────────────────────────────────────────────── */
.poc-pagination { display: flex; justify-content: center; gap: 6px; margin-top: 28px; flex-wrap: wrap; }
.poc-pagination .page-numbers { width: 38px; height: 38px; border-radius: var(--radius-sm); border: 1.5px solid var(--border); background: var(--white); color: var(--text-muted); font-size: 13px; font-weight: 600; display: inline-flex; align-items: center; justify-content: center; text-decoration: none; transition: all .18s; }
.poc-pagination .page-numbers:hover { border-color: var(--navy); color: var(--navy); background: var(--navy-bg); }
.poc-pagination .page-numbers.current { background: var(--navy); color: #fff; border-color: var(--navy); }
.poc-pagination .page-numbers.dots { border: none; background: none; }

/* ── 404 ──────────────────────────────────────────────────────────────────── */
.poc-404 { min-height: 60vh; display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center; padding: 2rem; }
.poc-404-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.poc-404-title { font-size: 1.5rem; font-weight: 800; margin-bottom: .5rem; }
.poc-404-desc { color: var(--text-muted); font-size: 14px; margin-bottom: 1.5rem; max-width: 380px; }

/* ── Search form ──────────────────────────────────────────────────────────── */
.poc-search-wrap { position: relative; margin-bottom: 24px; }
.poc-search-wrap input[type="search"] { width: 100%; padding: 11px 14px 11px 42px; border: 1.5px solid var(--border); border-radius: var(--radius-sm); font-size: 13.5px; font-family: inherit; font-weight: 500; background: var(--white); color: var(--text); outline: none; transition: border-color .2s; box-shadow: var(--shadow-sm); }
.poc-search-wrap input[type="search"]:focus { border-color: var(--navy); box-shadow: 0 0 0 3px rgba(30,58,138,.1); }
.poc-search-wrap input[type="search"]::placeholder { color: var(--text-muted); font-weight: 400; }
.poc-search-wrap input[type="submit"] { display: none; }
.poc-search-icon { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); color: var(--text-muted); font-size: 16px; pointer-events: none; }

/* ── Comments ─────────────────────────────────────────────────────────────── */
.poc-comments { margin-top: 28px; }
.poc-comments-wrap { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 24px; box-shadow: var(--shadow-sm); margin-bottom: 16px; }
.poc-comments-title { font-size: 13px; font-weight: 800; color: var(--text); text-transform: uppercase; letter-spacing: .5px; margin-bottom: 16px; padding-bottom: 10px; border-bottom: 1px solid var(--border); }
.poc-comments-closed { color: var(--text-muted); font-size: 13px; }
.comment-list { list-style: none; }

/* ── WP Admin bar ─────────────────────────────────────────────────────────── */
.admin-bar .poc-header { top: 32px; }
.admin-bar .poc-filter-bar { top: calc(64px + 32px); }
@media screen and (max-width: 782px) {
	.admin-bar .poc-header { top: 46px; }
	.admin-bar .poc-filter-bar { top: calc(64px + 46px); }
}

/* ── Responsive ───────────────────────────────────────────────────────────── */
@media (max-width: 900px) {
	.poc-hero { grid-template-columns: 1fr; }
	.poc-hero-visual { display: none; }
	.poc-footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
	#poc-primary-nav { display: none; position: absolute; top: 64px; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--border); padding: 12px 20px; box-shadow: var(--shadow-md); z-index: 199; }
	#poc-primary-nav.open { display: flex; }
	#poc-primary-nav ul { flex-direction: column; width: 100%; gap: 2px; }
	#poc-primary-nav ul li ul { display: none !important; }
	.poc-menu-toggle { display: flex; align-items: center; }
	.poc-hero h1 { font-size: 1.8rem; }
	.poc-testi-card { flex: 0 0 280px; }
	/* Keep brand on one line on mobile */
	.poc-nav-inner { padding: 0 12px; gap: 8px; min-height: 60px; }
	.poc-logo-box { width: 34px; height: 34px; font-size: 18px; }
	.poc-brand-name { font-size: 13px; }
	.poc-brand-tag { font-size: 7.5px; letter-spacing: 1.5px; }
	.poc-nav-cta-wrap { gap: 6px; }
}
@media (max-width: 540px) {
	.poc-footer-grid { grid-template-columns: 1fr; }
	.poc-blog-num { display: none; }
	.poc-testi-summary { grid-template-columns: 1fr; max-width: 260px; }
}

/* ── Social icon brand colours ───────────────────────────────────────────── */
.poc-social-btn {
	width: 38px; height: 38px;
	border-radius: 9px;
	background: #1e293b;
	border: 1px solid #2d3f55;
	display: inline-flex; align-items: center; justify-content: center;
	transition: all .2s;
	color: #94a3b8;
	text-decoration: none;
	flex-shrink: 0;
}
.poc-social-btn svg { display: block; }
.poc-social-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,.3); }
.poc-social-yt:hover  { background: #FF0000; border-color: #FF0000; color: #fff; }
.poc-social-tg:hover  { background: #2CA5E0; border-color: #2CA5E0; color: #fff; }
.poc-social-ig:hover  { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); border-color: #e6683c; color: #fff; }
.poc-social-fb:hover  { background: #1877F2; border-color: #1877F2; color: #fff; }
.poc-social-x:hover   { background: #000; border-color: #333; color: #fff; }
/* Default resting state — show brand colour faintly */
.poc-social-yt  { color: #FF0000; }
.poc-social-tg  { color: #2CA5E0; }
.poc-social-ig  { color: #E1306C; }
.poc-social-fb  { color: #1877F2; }
.poc-social-x   { color: #94a3b8; }

/* ── App store buttons ────────────────────────────────────────────────────── */
.poc-app-btn {
	display: flex;
	align-items: center;
	gap: 11px;
	background: #111827;
	border: 1px solid #2d3f55;
	border-radius: 10px;
	padding: 10px 14px;
	transition: all .2s;
	text-decoration: none;
	min-width: 160px;
}
.poc-app-btn:hover { border-color: #3b82f6; background: #1e293b; transform: translateY(-1px); }
.poc-app-icon { display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.poc-app-btn-text { font-size: 10px; color: #94a3b8; line-height: 1; display: block; }
.poc-app-btn-name { font-size: 13px; font-weight: 700; color: #fff; line-height: 1; margin-top: 3px; display: block; }

/* ── Forum section (homepage preview) ────────────────────────────────────── */
.poc-forum-bg { background: #f0f4ff; padding: 52px 0; }
.poc-forum-inner { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Two-column grid: questions left, sidebar right */
.poc-forum-grid {
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 28px;
	align-items: start;
	margin-top: 36px;
}

/* Question list column */
.poc-forum-list {
	display: flex;
	flex-direction: column;
	gap: 12px;
	min-width: 0;
}

/* Individual question card */
.poc-forum-card {
	background: var(--white);
	border-radius: 14px;
	border: 1.5px solid var(--border);
	padding: 18px 20px;
	display: flex;
	align-items: flex-start;
	gap: 16px;
	text-decoration: none;
	color: inherit;
	transition: border-color .18s, box-shadow .18s, transform .18s;
	box-shadow: var(--shadow-sm);
	position: relative;
	overflow: hidden;
}
.poc-forum-card::before {
	content: '';
	position: absolute;
	left: 0; top: 0; bottom: 0;
	width: 3px;
	background: var(--navy);
	opacity: 0;
	transition: opacity .18s;
	border-radius: 3px 0 0 3px;
}
.poc-forum-card:hover { border-color: var(--navy-light); box-shadow: var(--shadow-md); transform: translateY(-2px); }
.poc-forum-card:hover::before { opacity: 1; }

.poc-forum-icon {
	width: 44px; height: 44px; border-radius: 11px;
	display: flex; align-items: center; justify-content: center;
	font-size: 20px; flex-shrink: 0; margin-top: 1px;
}
.poc-forum-body { flex: 1; min-width: 0; }
.poc-forum-q {
	font-size: 14px;
	font-weight: 700;
	color: var(--text);
	line-height: 1.45;
	margin-bottom: 8px;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.poc-forum-card:hover .poc-forum-q { color: var(--navy); }
.poc-forum-meta {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 11px;
	color: var(--text-muted);
	font-weight: 500;
	flex-wrap: wrap;
}
.poc-forum-tag {
	font-size: 10.5px;
	font-weight: 700;
	padding: 3px 9px;
	border-radius: 20px;
}
.poc-forum-arrow {
	font-size: 1.3rem;
	color: var(--border-mid);
	align-self: center;
	flex-shrink: 0;
	transition: color .18s, transform .18s;
	line-height: 1;
}
.poc-forum-card:hover .poc-forum-arrow { color: var(--navy); transform: translateX(4px); }
.poc-forum-answers {
	display: inline-flex;
	align-items: center;
	gap: 4px;
	font-size: 11px;
	font-weight: 700;
	color: #15803d;
	background: #dcfce7;
	padding: 3px 9px;
	border-radius: 20px;
}

/* Empty state */
.poc-forum-empty {
	background: var(--white);
	border-radius: 14px;
	border: 1.5px dashed var(--border-mid);
	padding: 3rem 2rem;
	text-align: center;
	color: var(--text-muted);
}
.poc-forum-empty-icon { font-size: 2.5rem; margin-bottom: 12px; line-height: 1; }
.poc-forum-empty p { font-size: 13.5px; line-height: 1.65; color: var(--text-muted); }

/* Browse all button */
.poc-forum-view-all-wrap { text-align: center; margin-top: 24px; }
.poc-forum-view-all {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-size: 13.5px;
	font-weight: 700;
	color: var(--navy);
	background: var(--white);
	border: 2px solid var(--navy);
	border-radius: 10px;
	padding: 12px 28px;
	text-decoration: none;
	transition: background .18s, color .18s, box-shadow .18s;
	box-shadow: var(--shadow-sm);
}
.poc-forum-view-all:hover {
	background: var(--navy);
	color: #fff;
	box-shadow: var(--shadow-md);
}

/* Sidebar column — sticky */
.poc-forum-sidebar {
	position: sticky;
	top: 80px;
	display: flex;
	flex-direction: column;
	gap: 16px;
	min-width: 0;
	width: 100%;
}

/* CTA box */
.poc-forum-cta-box {
	background: linear-gradient(145deg, var(--navy) 0%, #1a3278 100%);
	border-radius: 16px;
	padding: 28px 22px;
	text-align: center;
	box-shadow: var(--shadow-md);
}
.poc-forum-cta-icon { font-size: 2.6rem; margin-bottom: 14px; line-height: 1; }
.poc-forum-cta-title {
	font-size: 1.05rem;
	font-weight: 800;
	color: #fff;
	margin-bottom: 10px;
	line-height: 1.3;
}
.poc-forum-cta-desc {
	font-size: 12.5px;
	color: rgba(255,255,255,.65);
	line-height: 1.7;
	margin-bottom: 20px;
}
.poc-forum-cta-btn {
	display: block;
	background: var(--amber);
	color: var(--navy);
	border-radius: 9px;
	padding: 11px 18px;
	font-size: 13.5px;
	font-weight: 800;
	text-decoration: none;
	transition: opacity .15s, transform .15s;
	box-shadow: 0 2px 8px rgba(245,158,11,.35);
}
.poc-forum-cta-btn:hover { opacity: .9; color: var(--navy); transform: translateY(-1px); }

/* Browse by exam categories widget */
.poc-forum-cats-box {
	background: var(--white);
	border-radius: 14px;
	border: 1.5px solid var(--border);
	padding: 20px;
	box-shadow: var(--shadow-sm);
}
.poc-forum-cats-label {
	font-size: 11px;
	font-weight: 800;
	color: var(--text);
	text-transform: uppercase;
	letter-spacing: .8px;
	margin-bottom: 14px;
	padding-bottom: 10px;
	border-bottom: 1px solid var(--border);
}
.poc-forum-cats-pills {
	display: flex;
	flex-wrap: wrap;
	gap: 7px;
}
.poc-forum-cat-pill {
	font-size: 11.5px;
	font-weight: 600;
	padding: 5px 13px;
	border-radius: 20px;
	background: var(--navy-bg);
	color: var(--navy);
	border: 1.5px solid var(--navy-light);
	text-decoration: none;
	transition: background .15s, color .15s;
	display: inline-flex;
	align-items: center;
	gap: 4px;
}
.poc-forum-cat-pill:hover {
	background: var(--navy);
	color: #fff;
	border-color: var(--navy);
}
.poc-forum-cat-count {
	opacity: .6;
	font-size: 10px;
}

@media (max-width: 900px) {
	.poc-forum-grid { grid-template-columns: 1fr; }
	.poc-forum-sidebar { position: static; }
}
@media (max-width: 640px) {
	.poc-forum-bg { padding: 40px 0; }
	.poc-forum-card { padding: 14px 16px; gap: 12px; }
	.poc-forum-icon { width: 38px; height: 38px; font-size: 17px; }
}

/* ── Forum archive page (all Q&A) ─────────────────────────────────────────── */
.poc-forum-wrap { max-width: 900px; margin: 0 auto; padding: 32px 24px; }
.poc-forum-hero { background: linear-gradient(135deg, var(--navy) 0%, var(--navy-mid) 100%); padding: 40px 24px; text-align: center; }
.poc-forum-hero h1 { color: #fff; font-size: 1.8rem; font-weight: 800; margin-bottom: 8px; }
.poc-forum-hero p  { color: rgba(255,255,255,.7); font-size: 14px; }

.poc-qa-item {
	background: var(--white);
	border-radius: 12px;
	border: 1px solid var(--border);
	margin-bottom: 12px;
	overflow: hidden;
	box-shadow: var(--shadow-sm);
	transition: box-shadow .18s;
}
.poc-qa-item:hover { box-shadow: var(--shadow-md); }
.poc-qa-question {
	padding: 18px 20px;
	display: flex;
	align-items: flex-start;
	gap: 14px;
	cursor: pointer;
	transition: background .15s;
	text-decoration: none !important;
	color: inherit !important;
}
.poc-qa-question:hover { background: #f8faff; }
.poc-qa-question:hover .poc-qa-q-text { color: var(--navy); }
.poc-qa-q-icon {
	width: 36px; height: 36px; border-radius: 9px;
	display: flex; align-items: center; justify-content: center;
	font-size: 16px; font-weight: 900; flex-shrink: 0;
	background: var(--navy-bg); color: var(--navy);
}
.poc-qa-q-body { flex: 1; min-width: 0; }
.poc-qa-q-text { font-size: 14px; font-weight: 700; color: var(--text); line-height: 1.45; margin-bottom: 6px; transition: color .15s; }
.poc-qa-q-meta { display: flex; align-items: center; gap: 8px; font-size: 11px; color: var(--text-muted); font-weight: 500; flex-wrap: wrap; }
.poc-qa-arrow { font-size: 16px; color: var(--text-muted); flex-shrink: 0; align-self: center; transition: transform .15s, color .15s; }
.poc-qa-question:hover .poc-qa-arrow { transform: translateX(4px); color: var(--navy); }
.poc-qa-answer {
	max-height: 0;
	overflow: hidden;
	transition: max-height .35s ease, padding .35s ease;
	font-size: 13.5px;
	color: var(--text-mid);
	line-height: 1.8;
	padding: 0 20px 0 70px;
	border-top: 0 solid var(--border);
}
.poc-qa-item.open .poc-qa-answer {
	max-height: 600px;
	padding: 16px 20px 20px 70px;
	border-top-width: 1px;
}
.poc-qa-answer-badge {
	display: inline-flex; align-items: center; gap: 5px;
	background: #dcfce7; color: #15803d;
	font-size: 11px; font-weight: 700;
	padding: 3px 10px; border-radius: 8px;
	margin-bottom: 10px;
}

.poc-forum-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 20px; }
.poc-forum-filter-btn {
	font-size: 12px; font-weight: 600;
	padding: 5px 14px; border-radius: 20px;
	border: 1.5px solid var(--border);
	background: var(--white); color: var(--text-muted);
	cursor: pointer; transition: all .18s; font-family: inherit;
}
.poc-forum-filter-btn:hover, .poc-forum-filter-btn.active {
	background: var(--navy); color: #fff; border-color: var(--navy);
}

/* ── Ask a Question form ─────────────────────────────────────────────────── */
.poc-ask-box {
	background: #ffffff;
	border: 1.5px solid var(--border);
	border-radius: 16px;
	padding: 24px;
	margin-bottom: 28px;
	box-shadow: var(--shadow-sm);
}
.poc-ask-header {
	display: flex;
	align-items: center;
	gap: 14px;
	margin-bottom: 18px;
}
.poc-ask-icon {
	width: 44px;
	height: 44px;
	background: var(--navy-bg);
	border-radius: 12px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	flex-shrink: 0;
}
.poc-ask-title {
	font-size: 15px;
	font-weight: 800;
	color: var(--navy);
}
.poc-ask-sub {
	font-size: 12.5px;
	color: var(--text-muted);
	margin-top: 2px;
}
.poc-ask-notice {
	border-radius: 10px;
	padding: 10px 16px;
	font-size: 13px;
	font-weight: 600;
	margin-bottom: 16px;
}
.poc-ask-success { background: #dcfce7; color: #15803d; }
.poc-ask-error   { background: #fef3c7; color: #92400e; }
.poc-ask-form { display: flex; flex-direction: column; gap: 14px; }
.poc-ask-row {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
}
.poc-ask-field { display: flex; flex-direction: column; gap: 5px; }
.poc-ask-field label {
	font-size: 12px;
	font-weight: 700;
	color: var(--text-mid);
}
.poc-ask-field label span { color: #e11d48; }
.poc-ask-field input,
.poc-ask-field select,
.poc-ask-field textarea {
	border: 1.5px solid var(--border-mid);
	border-radius: 9px;
	padding: 10px 13px;
	font-size: 13.5px;
	font-family: inherit;
	color: var(--text);
	background: #f8faff;
	width: 100%;
	transition: border-color .15s;
	resize: none;
}
.poc-ask-field input:focus,
.poc-ask-field select:focus,
.poc-ask-field textarea:focus {
	outline: none;
	border-color: var(--navy);
	background: #fff;
}
.poc-ask-submit {
	background: var(--navy);
	color: #fff;
	border: none;
	border-radius: 10px;
	padding: 12px 24px;
	font-size: 14px;
	font-weight: 700;
	cursor: pointer;
	align-self: flex-start;
	transition: opacity .15s;
	font-family: inherit;
}
.poc-ask-submit:hover { opacity: .87; }
@media (max-width: 600px) {
	.poc-ask-row { grid-template-columns: 1fr; }
	.poc-ask-submit { width: 100%; text-align: center; }
}
