/*
Theme Name: Power Circle News
Theme URI: https://powercircle.co
Author: Power Circle
Author URI: https://powercircle.co
Description: A premium, editorial-grade WordPress news theme for Power Circle — built for breaking news, feature stories and fast-moving newsrooms. Fully customizable logo, colors, breaking-news ticker, menus, widgets and ad slots straight from the WordPress Customizer, with no coding required.
Version: 1.0.0
Requires at least: 6.0
Requires PHP: 7.4
Tested up to: 6.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: powercircle
Tags: news, blog, one-column, two-columns, right-sidebar, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, theme-options
*/

/* =========================================================
   0. CSS Variables / Design Tokens
   ========================================================= */
:root {
	--pc-accent: #c8102e;
	--pc-accent-dark: #9c0c22;
	--pc-header: #0b1220;
	--pc-ink: #111418;
	--pc-body-text: #2b2f36;
	--pc-muted: #6b7280;
	--pc-border: #e6e8ec;
	--pc-bg: #f5f6f8;
	--pc-surface: #ffffff;
	--pc-gold: #b98b2e;

	--pc-font-headline: 'Playfair Display', Georgia, 'Times New Roman', serif;
	--pc-font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;

	--pc-radius: 8px;
	--pc-shadow-sm: 0 1px 2px rgba(17, 20, 24, 0.06);
	--pc-shadow-md: 0 6px 20px rgba(17, 20, 24, 0.08);
	--pc-shadow-lg: 0 14px 40px rgba(17, 20, 24, 0.14);
	--pc-container: 1200px;
}

/* =========================================================
   1. Reset / Base
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body {
	margin: 0;
	font-family: var(--pc-font-body);
	color: var(--pc-body-text);
	background: var(--pc-bg);
	line-height: 1.65;
	font-size: 16px;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--pc-accent); text-decoration: none; transition: color .15s ease; }
a:hover { color: var(--pc-accent-dark); }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 {
	font-family: var(--pc-font-headline);
	color: var(--pc-ink);
	line-height: 1.2;
	margin: 0 0 .5em;
	font-weight: 800;
}
p { margin: 0 0 1.1em; }
button { font-family: inherit; cursor: pointer; }
.container {
	max-width: var(--pc-container);
	margin: 0 auto;
	padding: 0 20px;
}
.screen-reader-text {
	position: absolute !important;
	width: 1px; height: 1px;
	overflow: hidden;
	clip: rect(1px, 1px, 1px, 1px);
	white-space: nowrap;
}
.skip-link {
	position: fixed; top: -100px; left: 10px; z-index: 10000;
	background: var(--pc-accent); color: #fff; padding: 10px 16px; border-radius: 4px;
}
.skip-link:focus { top: 10px; color: #fff; }

/* =========================================================
   2. Top Utility Bar
   ========================================================= */
.topbar {
	background: var(--pc-header);
	color: rgba(255,255,255,.75);
	font-size: 13px;
}
.topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 36px;
}
.topbar-social { display: flex; gap: 8px; }
.social-link {
	display: inline-flex; align-items: center; justify-content: center;
	width: 22px; height: 22px; border-radius: 50%;
	background: rgba(255,255,255,.12);
	color: #fff; font-size: 11px; font-weight: 700;
}
.social-link:hover { background: var(--pc-accent); color: #fff; }

/* =========================================================
   3. Breaking News Ticker
   ========================================================= */
.breaking-ticker {
	background: var(--pc-accent);
	color: #fff;
	overflow: hidden;
}
.ticker-inner {
	display: flex;
	align-items: center;
	height: 40px;
	gap: 14px;
}
.ticker-label {
	flex: 0 0 auto;
	font-weight: 800;
	font-size: 12px;
	letter-spacing: .08em;
	background: rgba(0,0,0,.18);
	padding: 4px 12px;
	border-radius: 3px;
	text-transform: uppercase;
}
.ticker-track-wrap {
	flex: 1 1 auto;
	overflow: hidden;
	white-space: nowrap;
	mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
}
.ticker-track {
	display: inline-flex;
	align-items: center;
	white-space: nowrap;
	animation: pc-ticker-scroll var(--ticker-speed, 35s) linear infinite;
}
.breaking-ticker:hover .ticker-track { animation-play-state: paused; }
.ticker-track a { color: #fff; font-weight: 600; font-size: 14px; margin-right: 14px; }
.ticker-track a:hover { text-decoration: underline; }
.ticker-dot { margin-right: 14px; opacity: .6; }
@keyframes pc-ticker-scroll {
	from { transform: translateX(0); }
	to   { transform: translateX(-50%); }
}

/* =========================================================
   4. Header / Masthead
   ========================================================= */
.site-header {
	background: var(--pc-surface);
	border-bottom: 3px solid var(--pc-ink);
	position: sticky;
	top: 0;
	z-index: 999;
	transition: box-shadow .2s ease;
}
.site-header.is-stuck { box-shadow: var(--pc-shadow-md); }
.header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 18px 20px;
}
.site-branding { flex: 0 0 auto; }
.site-branding img { max-height: 64px; width: auto; }
.default-logo-link { display: block; line-height: 0; }
.default-logo-img { max-height: 56px; width: auto; }
.site-title-wrap { line-height: 1.1; }
.site-title-link {
	font-family: var(--pc-font-headline);
	font-size: 34px;
	font-weight: 900;
	color: var(--pc-ink);
	letter-spacing: -.01em;
}
.site-title-link:hover { color: var(--pc-accent); }
.site-description { font-size: 13px; color: var(--pc-muted); margin: 2px 0 0; letter-spacing: .04em; text-transform: uppercase; }

.main-navigation { flex: 1 1 auto; display: flex; justify-content: center; }
#primary-menu, .primary-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
	justify-content: center;
}
#primary-menu li, .primary-menu li { position: relative; }
#primary-menu a, .primary-menu a {
	display: block;
	padding: 10px 14px;
	font-weight: 700;
	font-size: 14.5px;
	color: var(--pc-ink);
	text-transform: uppercase;
	letter-spacing: .03em;
	border-radius: 4px;
}
#primary-menu a:hover, .primary-menu a:hover { color: var(--pc-accent); background: var(--pc-bg); }
#primary-menu .current-menu-item > a { color: var(--pc-accent); }

/* Dropdowns */
#primary-menu ul.sub-menu, .primary-menu ul.sub-menu {
	display: none;
	position: absolute;
	top: 100%; left: 0;
	min-width: 220px;
	background: var(--pc-surface);
	box-shadow: var(--pc-shadow-lg);
	border-radius: var(--pc-radius);
	padding: 8px;
	z-index: 20;
}
#primary-menu li:hover > ul.sub-menu, .primary-menu li:hover > ul.sub-menu { display: block; }
#primary-menu ul.sub-menu a, .primary-menu ul.sub-menu a { padding: 8px 12px; text-transform: none; }

.header-actions { display: flex; align-items: center; gap: 6px; }
.search-toggle, .menu-toggle {
	background: none; border: none; width: 40px; height: 40px;
	display: flex; align-items: center; justify-content: center;
	border-radius: 50%;
}
.search-toggle:hover, .menu-toggle:hover { background: var(--pc-bg); }
.icon-search { font-size: 18px; }
.hamburger { display: none; }
.hamburger span {
	display: block; width: 22px; height: 2px; background: var(--pc-ink); margin: 4px 0; transition: all .2s ease;
}

.header-search {
	max-height: 0;
	overflow: hidden;
	background: var(--pc-bg);
	transition: max-height .25s ease;
	border-bottom: 1px solid var(--pc-border);
}
.header-search.is-open { max-height: 100px; }
.header-search .container { padding: 16px 20px; }
.search-form { display: flex; gap: 8px; max-width: 520px; margin: 0 auto; }
.search-field {
	flex: 1; padding: 10px 14px; border: 1px solid var(--pc-border); border-radius: 6px; font-size: 15px;
}
.search-submit {
	background: var(--pc-accent); color: #fff; border: none; padding: 10px 20px; border-radius: 6px; font-weight: 700;
}
.search-submit:hover { background: var(--pc-accent-dark); }

/* =========================================================
   5. Layout
   ========================================================= */
.site-content { padding: 32px 0 56px; }
.content-layout {
	display: grid;
	grid-template-columns: 1fr 320px;
	gap: 40px;
	align-items: start;
}
body.no-sidebar .content-layout { grid-template-columns: 1fr; }
.page-header { margin-bottom: 24px; }
.page-title { font-size: 32px; }
.archive-description { color: var(--pc-muted); }

/* =========================================================
   6. Hero Grid (homepage)
   ========================================================= */
.hero-grid {
	display: grid;
	grid-template-columns: 1.6fr 1fr;
	gap: 28px;
	margin-bottom: 44px;
	padding-bottom: 36px;
	border-bottom: 1px solid var(--pc-border);
}
.hero-lead-thumb { position: relative; display: block; border-radius: var(--pc-radius); overflow: hidden; box-shadow: var(--pc-shadow-md); }
.hero-lead-thumb img { width: 100%; aspect-ratio: 900/560; object-fit: cover; transition: transform .35s ease; }
.hero-lead-thumb:hover img { transform: scale(1.04); }
.hero-category {
	position: absolute; top: 14px; left: 14px;
	background: var(--pc-accent); color: #fff;
	font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
	padding: 5px 12px; border-radius: 4px;
}
.hero-category.small { position: static; display: inline-block; margin-bottom: 6px; padding: 3px 9px; font-size: 10.5px; }
.hero-lead-title { font-size: 32px; margin: 18px 0 10px; }
.hero-lead-title a { color: var(--pc-ink); }
.hero-lead-title a:hover { color: var(--pc-accent); }
.hero-lead-excerpt { color: var(--pc-muted); font-size: 16px; }

.hero-side { display: flex; flex-direction: column; gap: 18px; }
.hero-side-item { display: flex; gap: 12px; padding-bottom: 18px; border-bottom: 1px solid var(--pc-border); }
.hero-side-item:last-child { border-bottom: none; padding-bottom: 0; }
.hero-side-thumb { flex: 0 0 88px; border-radius: 6px; overflow: hidden; }
.hero-side-thumb img { width: 88px; height: 88px; object-fit: cover; }
.hero-side-title { font-size: 16px; margin: 0; }
.hero-side-title a { color: var(--pc-ink); }
.hero-side-title a:hover { color: var(--pc-accent); }

/* =========================================================
   7. News Card Grid
   ========================================================= */
.news-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 26px;
}
.news-card {
	background: var(--pc-surface);
	border-radius: var(--pc-radius);
	overflow: hidden;
	box-shadow: var(--pc-shadow-sm);
	transition: transform .2s ease, box-shadow .2s ease;
}
.news-card:hover { transform: translateY(-4px); box-shadow: var(--pc-shadow-lg); }
.news-card-thumb { position: relative; display: block; overflow: hidden; }
.news-card-thumb img { width: 100%; aspect-ratio: 420/280; object-fit: cover; transition: transform .35s ease; }
.news-card:hover .news-card-thumb img { transform: scale(1.06); }
.news-card-category {
	position: absolute; bottom: 10px; left: 10px;
	background: rgba(11,18,32,.85); color: #fff;
	font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .04em;
	padding: 4px 10px; border-radius: 4px;
}
.news-card-body { padding: 18px 20px 20px; }
.news-card-title { font-size: 19px; margin-bottom: 8px; }
.news-card-title a { color: var(--pc-ink); }
.news-card-title a:hover { color: var(--pc-accent); }
.news-card-excerpt { color: var(--pc-muted); font-size: 14.5px; margin-bottom: 10px; }

.entry-meta {
	display: flex; flex-wrap: wrap; gap: 12px;
	font-size: 12.5px; color: var(--pc-muted); text-transform: uppercase; letter-spacing: .02em;
}
.entry-meta a { color: var(--pc-accent); font-weight: 700; }
.meta-category a { font-weight: 800; }

.related-posts { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--pc-border); }
.related-heading { font-size: 22px; margin-bottom: 20px; }
.related-grid { grid-template-columns: repeat(3, 1fr); }

.pagination-wrap { margin-top: 36px; display: flex; justify-content: center; }
.pagination-wrap .page-numbers {
	display: inline-flex; align-items: center; justify-content: center;
	min-width: 38px; height: 38px; margin: 0 3px; padding: 0 10px;
	border-radius: 6px; background: var(--pc-surface); border: 1px solid var(--pc-border);
	font-weight: 700; color: var(--pc-ink);
}
.pagination-wrap .page-numbers.current, .pagination-wrap .page-numbers:hover { background: var(--pc-accent); color: #fff; border-color: var(--pc-accent); }

/* =========================================================
   8. Single Post
   ========================================================= */
.single-category {
	display: inline-block; background: var(--pc-accent); color: #fff;
	font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
	padding: 5px 12px; border-radius: 4px; margin-bottom: 14px;
}
.single-title { font-size: 40px; margin-bottom: 14px; }
.single-thumbnail { margin: 24px 0; border-radius: var(--pc-radius); overflow: hidden; box-shadow: var(--pc-shadow-md); }
.single-thumbnail figcaption { padding: 10px 4px 0; font-size: 13px; color: var(--pc-muted); font-style: italic; }
.single-content { font-size: 18px; line-height: 1.8; color: var(--pc-body-text); }
.single-content p { margin-bottom: 1.4em; }
.single-content h2 { font-size: 26px; margin-top: 1.4em; }
.single-content h3 { font-size: 21px; margin-top: 1.2em; }
.single-content img { border-radius: 6px; margin: 1em 0; }
.single-content blockquote {
	margin: 1.6em 0; padding: 4px 0 4px 22px; border-left: 4px solid var(--pc-accent);
	font-family: var(--pc-font-headline); font-size: 22px; font-style: italic; color: var(--pc-ink);
}
.single-content a { text-decoration: underline; }
.single-tags { margin: 24px 0; display: flex; flex-wrap: wrap; gap: 8px; }
.single-tags a {
	display: inline-block; padding: 5px 12px; background: var(--pc-bg); border-radius: 20px;
	font-size: 13px; color: var(--pc-body-text); border: 1px solid var(--pc-border);
}
.single-tags a:hover { background: var(--pc-accent); color: #fff; border-color: var(--pc-accent); }

.author-box {
	display: flex; gap: 16px; align-items: flex-start;
	margin: 32px 0; padding: 20px; background: var(--pc-surface); border-radius: var(--pc-radius); box-shadow: var(--pc-shadow-sm);
}
.author-box img { border-radius: 50%; }
.author-box h3 { margin-bottom: 4px; font-size: 17px; }
.author-box p { margin: 0; color: var(--pc-muted); font-size: 14px; }

/* =========================================================
   9. Ad Slots
   ========================================================= */
.powercircle-ad, .powercircle-ad-slot {
	margin: 24px 0;
	padding: 10px;
	text-align: center;
	background: var(--pc-surface);
	border: 1px dashed var(--pc-border);
	border-radius: 6px;
}
.ad-slot-label { display: block; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; color: var(--pc-muted); margin-bottom: 8px; }

/* =========================================================
   10. Sidebar / Widgets
   ========================================================= */
.widget-area { display: flex; flex-direction: column; gap: 24px; }
.widget {
	background: var(--pc-surface);
	border-radius: var(--pc-radius);
	padding: 20px;
	box-shadow: var(--pc-shadow-sm);
}
.widget-title {
	font-size: 15px; text-transform: uppercase; letter-spacing: .05em;
	border-bottom: 2px solid var(--pc-accent); padding-bottom: 10px; margin-bottom: 16px;
}
.widget ul li { padding: 8px 0; border-bottom: 1px solid var(--pc-border); }
.widget ul li:last-child { border-bottom: none; }
.widget-trending .trending-list { display: flex; flex-direction: column; gap: 14px; }
.trending-list li { display: flex; align-items: flex-start; gap: 12px; border: none; padding: 0; }
.trending-rank {
	flex: 0 0 26px; height: 26px; display: flex; align-items: center; justify-content: center;
	background: var(--pc-ink); color: #fff; font-weight: 800; font-size: 13px; border-radius: 50%;
}
.trending-title { font-weight: 600; font-size: 14.5px; color: var(--pc-ink); }
.trending-title:hover { color: var(--pc-accent); }

/* =========================================================
   11. Footer
   ========================================================= */
.site-footer { background: var(--pc-header); color: rgba(255,255,255,.78); margin-top: 48px; }
.footer-columns {
	display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
	padding: 48px 20px;
}
.footer-column .widget-title { color: #fff; border-bottom-color: var(--pc-accent); }
.footer-column, .footer-column a { color: rgba(255,255,255,.72); font-size: 14px; }
.footer-column a:hover { color: #fff; }
.footer-logo-img { max-height: 42px; width: auto; margin-bottom: 14px; }
.footer-logo { margin-bottom: 14px; }
.footer-logo img { max-height: 42px; width: auto; }
.footer-mission { font-size: 14px; color: rgba(255,255,255,.68); margin-bottom: 14px; max-width: 260px; }
.footer-contact { font-style: normal; font-size: 13px; color: rgba(255,255,255,.6); line-height: 1.7; }
.footer-contact a { color: rgba(255,255,255,.85); font-weight: 600; }
.footer-contact a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); }
.footer-bottom-inner {
	display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px;
	padding: 18px 20px; font-size: 13px;
}
.footer-navigation ul { display: flex; gap: 16px; }
.footer-navigation a { color: rgba(255,255,255,.72); }
.footer-navigation a:hover { color: #fff; }

.back-to-top {
	position: fixed; right: 22px; bottom: 22px; z-index: 900;
	width: 44px; height: 44px; border-radius: 50%; border: none;
	background: var(--pc-accent); color: #fff; font-size: 18px;
	box-shadow: var(--pc-shadow-lg); opacity: 0; visibility: hidden; transform: translateY(10px);
	transition: all .2s ease;
}
.back-to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--pc-accent-dark); }

/* =========================================================
   12. 404
   ========================================================= */
.error-404 { text-align: center; padding: 80px 20px; }
.error-code { font-size: 96px; color: var(--pc-accent); margin-bottom: 0; }
.back-home-btn {
	display: inline-block; margin-top: 20px; padding: 12px 28px;
	background: var(--pc-ink); color: #fff; border-radius: 6px; font-weight: 700;
}
.back-home-btn:hover { background: var(--pc-accent); color: #fff; }

/* =========================================================
   13. Comments
   ========================================================= */
.comments-area { margin-top: 48px; padding-top: 32px; border-top: 1px solid var(--pc-border); }
.comments-title { font-size: 24px; margin-bottom: 20px; }
.comment-list .comment-body {
	background: var(--pc-surface); border-radius: var(--pc-radius); padding: 18px; margin-bottom: 16px; box-shadow: var(--pc-shadow-sm);
}
.comment-list .children { margin-left: 32px; }
.comment-form input[type="text"], .comment-form input[type="email"], .comment-form input[type="url"], .comment-form textarea {
	width: 100%; padding: 10px 12px; border: 1px solid var(--pc-border); border-radius: 6px; margin-bottom: 14px; font-family: inherit;
}
.comment-form .submit-button, input#submit {
	background: var(--pc-accent); color: #fff; border: none; padding: 12px 24px; border-radius: 6px; font-weight: 700;
}
.comment-form .submit-button:hover, input#submit:hover { background: var(--pc-accent-dark); }

/* =========================================================
   14. Company Pages (About / Contact / Advertise / Policy)
   ========================================================= */
.company-hero { text-align: left; margin-bottom: 18px; }
.company-content { max-width: 760px; }

.values-strip {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
	margin: 40px 0; padding: 36px 0; border-top: 1px solid var(--pc-border); border-bottom: 1px solid var(--pc-border);
}
.value-card .value-icon {
	display: inline-flex; align-items: center; justify-content: center;
	width: 40px; height: 40px; border-radius: 50%; background: var(--pc-ink); color: #fff;
	font-weight: 800; font-size: 13px; margin-bottom: 14px;
}
.value-card h3 { font-size: 18px; margin-bottom: 8px; }
.value-card p { color: var(--pc-muted); font-size: 14.5px; }

.stats-strip {
	display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
	text-align: center; margin: 40px 0;
}
.stat-num { display: block; font-family: var(--pc-font-headline); font-size: 40px; font-weight: 800; color: var(--pc-accent); }
.stat-label { display: block; font-size: 12.5px; text-transform: uppercase; letter-spacing: .05em; color: var(--pc-muted); margin-top: 4px; }

/* Contact page */
.contact-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 44px; margin-top: 24px; }
.contact-form-wrap { background: var(--pc-surface); border-radius: var(--pc-radius); padding: 28px; box-shadow: var(--pc-shadow-sm); }
.contact-form { display: flex; flex-direction: column; gap: 4px; }
.contact-form label { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .03em; color: var(--pc-ink); margin: 12px 0 6px; }
.contact-form label:first-child { margin-top: 0; }
.contact-form input[type="text"], .contact-form input[type="email"], .contact-form textarea {
	width: 100%; padding: 11px 13px; border: 1px solid var(--pc-border); border-radius: 6px; font-family: inherit; font-size: 15px;
}
.contact-form textarea { resize: vertical; }
.contact-form .submit-button { margin-top: 18px; align-self: flex-start; background: var(--pc-accent); color: #fff; padding: 12px 26px; border-radius: 6px; font-weight: 700; }
.contact-form .submit-button:hover { background: var(--pc-accent-dark); }
.pc-hp-field { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; overflow: hidden; }
.form-notice { padding: 12px 16px; border-radius: 6px; margin-bottom: 18px; font-size: 14.5px; font-weight: 600; }
.form-notice-success { background: #e7f7ec; color: #146c3a; border: 1px solid #b9e7c8; }
.form-notice-error { background: #fdecec; color: #9c1c1c; border: 1px solid #f3bcbc; }

/* Advertise page */
.rate-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin: 40px 0; }
.rate-card { background: var(--pc-surface); border-radius: var(--pc-radius); padding: 28px 24px; box-shadow: var(--pc-shadow-sm); position: relative; }
.rate-card.featured { box-shadow: var(--pc-shadow-lg); border: 2px solid var(--pc-accent); }
.rate-badge { position: absolute; top: -13px; left: 24px; background: var(--pc-accent); color: #fff; font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; padding: 4px 12px; border-radius: 20px; }
.rate-card h3 { font-size: 19px; margin-bottom: 6px; }
.rate-price { font-weight: 700; color: var(--pc-accent); margin-bottom: 14px; }
.rate-card ul { display: flex; flex-direction: column; gap: 8px; }
.rate-card li { font-size: 14px; color: var(--pc-body-text); padding-left: 20px; position: relative; }
.rate-card li::before { content: '\2713'; position: absolute; left: 0; color: var(--pc-accent); font-weight: 800; }
.advertise-cta { text-align: center; padding: 30px 0 10px; }
.advertise-cta p { color: var(--pc-muted); font-size: 13.5px; }

/* Policy page */
.policy-page { max-width: 760px; margin: 0 auto; }
.policy-updated { color: var(--pc-muted); font-size: 13.5px; margin-top: -6px; }

@media (max-width: 900px) {
	.values-strip, .stats-strip, .rate-cards { grid-template-columns: 1fr; }
	.contact-layout { grid-template-columns: 1fr; }
}

/* =========================================================
   15. Responsive
   ========================================================= */
@media (max-width: 960px) {
	.content-layout { grid-template-columns: 1fr; }
	.hero-grid { grid-template-columns: 1fr; }
	.related-grid { grid-template-columns: repeat(2, 1fr); }
	.footer-columns { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 782px) {
	.topbar-date { font-size: 12px; }
	.main-navigation {
		position: fixed; top: 0; right: -300px; width: 280px; height: 100vh;
		background: var(--pc-surface); flex-direction: column; padding: 80px 24px 24px;
		box-shadow: var(--pc-shadow-lg); transition: right .25s ease; z-index: 1000; overflow-y: auto;
	}
	.main-navigation.is-open { right: 0; }
	#primary-menu, .primary-menu { flex-direction: column; align-items: flex-start; width: 100%; }
	#primary-menu ul.sub-menu, .primary-menu ul.sub-menu { position: static; box-shadow: none; padding-left: 12px; }
	.hamburger { display: block; }
	.site-title-link { font-size: 24px; }
	.news-grid, .related-grid { grid-template-columns: 1fr; }
	.footer-columns { grid-template-columns: 1fr; }
	.single-title { font-size: 28px; }
	.single-content { font-size: 16.5px; }
}

/* Body scroll lock when mobile menu is open */
body.menu-is-open { overflow: hidden; }
