/*
Theme Name:  PromptShot
Theme URI:   https://promptshot.us
Author:      PromptShot
Author URI:  https://promptshot.us
Description: The PromptShot site theme — coral aperture brand system, dark/light tokens, homepage tool layout, prompt library grid, blog, and policy-safe ad zones. Companion to the PromptShot plugin.
Version:     1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
License:     GPL-2.0-or-later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: promptshot-theme
Tags:        custom-menu, custom-logo, two-columns, footer-widgets
*/

/* =======================================================================
   1 · TOKENS — the locked brand set, light on :root, dark on
   html[data-theme="dark"]. Zero hard-coded hex below this block.
   Contrast receipts (WCAG AA):
     #211E1C on #FFF7F5 .......... 15.6:1  body ✓
     #6B625C on #FFF7F5 ..........  5.5:1  secondary ✓
     #FFFFFF on #F75741 ..........  3.3:1  large bold text only → every
        coral button label renders ≥18.7px bold
     #C2321F on #FFF7F5/#FFFFFF ..  5.2:1  small coral text ✓
     #F5EFE8 on #17140F .......... 15.2:1  body ✓
     #B8AFA3 on #17140F ..........  8.5:1  secondary ✓
     #FF7B63 on #17140F ..........  7.2:1  any size ✓
     #17140F on #FF7B63 ..........  7.2:1  button labels on coral ✓
     focus #E0452F vs #FFF7F5 / #FFFFFF / #FFF1ED ... 3.9 / 4.2 / 3.8 ✓
     focus #FF7B63 vs #17140F / #211D17 / #292319 ... 7.2 / 6.6 / 6.1 ✓
   ==================================================================== */
:root {
	--coral: #F75741;
	--coral-strong: #E0452F;
	--on-coral: #FFFFFF;
	--link: #C2321F;

	--bg: #FFF7F5;
	--surface: #FFFFFF;
	--surface2: #FFF1ED;
	--ink: #211E1C;
	--ink2: #6B625C;
	--border: #EBDDD7;
	--border-strong: #D3BFB6;
	--tint: rgba(247, 87, 65, 0.10);
	--success: #1F7A5C;

	/* Focus uses the strong coral: ≥3:1 on --bg, --surface AND --surface2
	   (raw #F75741 lands at 2.98:1 on --surface2 and fails there). */
	--focus: #E0452F;
	--shadow: 0 12px 32px rgba(33, 30, 28, 0.08);
	--shadow-soft: 0 2px 8px rgba(33, 30, 28, 0.07);

	--font-display: "Bricolage Grotesque", "Inter", system-ui, sans-serif;
	--font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
}
html[data-theme="dark"] {
	--coral: #FF7B63;
	--coral-strong: #FF8F7A;
	--on-coral: #17140F;
	--link: #FF7B63;

	--bg: #17140F;
	--surface: #211D17;
	--surface2: #292319;
	--ink: #F5EFE8;
	--ink2: #B8AFA3;
	--border: #3A342B;
	--border-strong: #57493D;
	--tint: rgba(255, 123, 99, 0.12);
	--success: #3FBF8F;

	--focus: #FF7B63;
	--shadow: 0 12px 32px rgba(0, 0, 0, 0.45);
	--shadow-soft: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* =======================================================================
   2 · BASE
   ==================================================================== */
*, *::before, *::after { box-sizing: border-box; }
html { color-scheme: light; }
html[data-theme="dark"] { color-scheme: dark; }
body {
	margin: 0;
	background: var(--bg);
	color: var(--ink);
	font-family: var(--font-body);
	font-size: 16.5px;
	line-height: 1.65;
	-webkit-text-size-adjust: 100%;
}
h1, h2, h3, h4 {
	font-family: var(--font-display);
	font-weight: 800;
	letter-spacing: -0.02em;
	line-height: 1.12;
	color: var(--ink);
	margin: 0 0 0.5em;
}
p { margin: 0 0 1em; }
a { color: var(--link); }
a:hover { color: var(--coral-strong); }
img { max-width: 100%; height: auto; }
hr { border: 0; border-top: 1px solid var(--border); margin: 2rem 0; }
:focus-visible {
	outline: 2px solid var(--focus);
	outline-offset: 2px;
	border-radius: 4px;
}
[hidden] { display: none !important; }
.ps-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 100000;
	padding: 10px 16px;
	background: var(--surface);
	color: var(--ink);
	border-radius: 0 0 10px 0;
	box-shadow: var(--shadow);
}
.ps-skip-link:focus { left: 0; }
.ps-wrap {
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 clamp(16px, 4vw, 28px);
}
.ps-visually-hidden {
	position: absolute !important;
	width: 1px; height: 1px;
	margin: -1px; padding: 0;
	overflow: hidden;
	clip: rect(0 0 0 0);
	white-space: nowrap;
	border: 0;
}
/* ~200ms cross-fade when the toggle flips (class added by JS, motion-safe only). */
@media (prefers-reduced-motion: no-preference) {
	html.ps-theme-anim,
	html.ps-theme-anim body,
	html.ps-theme-anim body * {
		transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, fill 0.2s ease, stroke 0.2s ease !important;
	}
}

/* =======================================================================
   3 · HEADER — lockup, primary menu, theme slider, mobile panel
   ==================================================================== */
.ps-site-header {
	position: sticky;
	top: 0;
	z-index: 9000;
	background: var(--bg);
	border-bottom: 1px solid var(--border);
}
.ps-header-bar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 16px;
	min-height: 64px;
}
.ps-lockup {
	display: inline-flex;
	align-items: center;
	gap: 9px;
	text-decoration: none;
}
.ps-lockup .ps-aperture {
	width: 30px;
	height: 30px;
	color: var(--coral);
	display: block;
}
.ps-wordmark {
	font-family: var(--font-display);
	font-weight: 800;
	font-size: 1.22rem;
	letter-spacing: -0.02em;
	color: var(--ink); /* auto-switches charcoal → #F5EFE8 via tokens */
}
.ps-header-right {
	display: flex;
	align-items: center;
	gap: 14px;
}
.ps-nav { display: block; }
.ps-nav ul {
	display: flex;
	align-items: center;
	gap: 4px;
	list-style: none;
	margin: 0;
	padding: 0;
}
.ps-nav a {
	display: inline-block;
	padding: 8px 12px;
	border-radius: 9px;
	color: var(--ink);
	font-size: 0.95rem;
	font-weight: 600;
	text-decoration: none;
}
.ps-nav a:hover { background: var(--surface2); color: var(--ink); }
.ps-nav .current-menu-item > a,
.ps-nav .current_page_item > a { color: var(--link); }

/* The compact 52×26 slider — sun | moon, knob slides on aria-checked. */
.ps-theme-toggle {
	position: relative;
	display: inline-flex;
	align-items: center;
	justify-content: space-between;
	width: 52px;
	height: 26px;
	padding: 0 6px;
	border: 1px solid var(--border-strong);
	border-radius: 999px;
	background: var(--surface2);
	cursor: pointer;
	flex: none;
	-webkit-appearance: none;
	appearance: none;
}
.ps-tt-icon { width: 13px; height: 13px; color: var(--ink2); flex: none; }
.ps-tt-knob {
	position: absolute;
	top: 2px;
	left: 3px;
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: var(--surface);
	box-shadow: var(--shadow-soft);
}
html[data-theme="dark"] .ps-tt-knob { background: var(--ink); }
.ps-theme-toggle[aria-checked="true"] .ps-tt-knob { transform: translateX(25px); }
@media (prefers-reduced-motion: no-preference) {
	.ps-tt-knob { transition: transform 0.2s ease; }
}

/* Hamburger (mobile only) */
.ps-nav-toggle {
	display: none;
	padding: 8px;
	border: 1px solid var(--border-strong);
	border-radius: 9px;
	background: var(--surface);
	color: var(--ink);
	cursor: pointer;
}
.ps-nav-toggle svg { display: block; width: 20px; height: 20px; }
.ps-nav-toggle .ps-icon-close { display: none; }
.ps-nav-toggle[aria-expanded="true"] .ps-icon-open { display: none; }
.ps-nav-toggle[aria-expanded="true"] .ps-icon-close { display: block; }

@media (max-width: 782px) {
	.ps-nav-toggle { display: inline-flex; }
	.ps-nav {
		position: absolute;
		top: 100%;
		left: 0;
		right: 0;
		background: var(--bg);
		border-bottom: 1px solid var(--border);
		box-shadow: var(--shadow);
		overflow: hidden;
		max-height: 0;
		visibility: hidden;
	}
	.ps-nav.is-open { max-height: 320px; visibility: visible; }
	.ps-nav ul {
		flex-direction: column;
		align-items: stretch;
		gap: 0;
		padding: 8px clamp(16px, 4vw, 28px) 16px;
	}
	.ps-nav a { display: block; padding: 12px 10px; font-size: 1.02rem; }
}
@media (max-width: 782px) and (prefers-reduced-motion: no-preference) {
	.ps-nav { transition: max-height 0.25s ease, visibility 0.25s ease; }
}

/* =======================================================================
   4 · FOOTER — 3 columns + legal line (footer-band ad zone sits above)
   ==================================================================== */
.ps-footer-band {
	/* Reserved height even before a widget fills it → zero CLS. */
	min-height: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 16px 0;
	background: var(--surface2);
	border-top: 1px solid var(--border);
}
.ps-site-footer {
	background: var(--surface);
	border-top: 1px solid var(--border);
	padding: 44px 0 26px;
	font-size: 0.92rem;
}
.ps-footer-cols {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 32px;
}
.ps-footer-brand .ps-lockup .ps-aperture { width: 22px; height: 22px; }
.ps-footer-brand .ps-wordmark { font-size: 1.05rem; }
.ps-footer-blurb {
	margin: 10px 0 0;
	color: var(--ink2);
	max-width: 44ch;
}
.ps-footer-h {
	margin: 0 0 10px;
	font-family: var(--font-display);
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--ink2);
}
.ps-site-footer ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: grid;
	gap: 7px;
}
.ps-site-footer li a {
	color: var(--ink);
	text-decoration: none;
}
.ps-site-footer li a:hover { color: var(--link); text-decoration: underline; }
.ps-footer-legal {
	margin-top: 34px;
	padding-top: 18px;
	border-top: 1px solid var(--border);
	color: var(--ink2);
	font-size: 0.85rem;
}
@media (max-width: 700px) {
	.ps-footer-cols { grid-template-columns: 1fr; gap: 24px; }
}

/* =======================================================================
   5 · CONTENT SHELL — generic pages, entry typography
   ==================================================================== */
.ps-main { padding: clamp(28px, 5vw, 48px) 0 56px; }
.ps-entry {
	max-width: 720px;
}
.ps-entry-title {
	font-size: clamp(1.9rem, 5vw, 2.6rem);
	margin-bottom: 0.6em;
}
.ps-entry-content h2 { font-size: 1.45rem; margin-top: 2em; }
.ps-entry-content h3 { font-size: 1.15rem; margin-top: 1.6em; }
.ps-entry-content li { margin-bottom: 0.35em; }
.ps-entry-content blockquote {
	margin: 1.4em 0;
	padding: 0.8em 1.2em;
	border-left: 4px solid var(--coral);
	background: var(--surface2);
	border-radius: 0 10px 10px 0;
	color: var(--ink);
}
.ps-entry-content pre {
	padding: 16px;
	overflow: auto;
	border: 1px solid var(--border);
	border-radius: 12px;
	background: var(--surface2);
	color: var(--ink);
	font-size: 0.85rem;
	line-height: 1.6;
	white-space: pre-wrap;
	word-break: break-word;
}
.ps-entry-content table {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.92rem;
	margin: 1.4em 0;
}
.ps-entry-content th {
	text-align: left;
	background: var(--surface2);
	color: var(--ink);
	padding: 10px 12px;
	border: 1px solid var(--border);
}
.ps-entry-content td {
	padding: 10px 12px;
	border: 1px solid var(--border);
	vertical-align: top;
}

/* =======================================================================
   6 · CARDS — shared by library grid, library preview, blog archive
   ==================================================================== */
.ps-card-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin: 24px 0;
}
.ps-card {
	display: flex;
	flex-direction: column;
	gap: 8px;
	padding: 20px;
	border: 1px solid var(--border);
	border-radius: 16px;
	background: var(--surface);
	box-shadow: var(--shadow-soft);
	text-decoration: none;
}
a.ps-card:hover { border-color: var(--coral); }
.ps-card-eyebrow {
	font-size: 0.7rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--link);
}
.ps-card-title {
	margin: 0;
	font-family: var(--font-display);
	font-size: 1.05rem;
	font-weight: 700;
	line-height: 1.3;
	color: var(--ink);
}
.ps-card-line {
	margin: 0;
	color: var(--ink2);
	font-size: 0.9rem;
}

/* The dark-theme inheritance reset lets headings and paragraphs take their
   parent's colour, which tints a whole linked card coral. These two rules
   out-rank it in both themes, so the title and body stay readable while the
   eyebrow and arrow keep the coral accent. */
.ps-card .ps-card-title { color: var(--ink); }
.ps-card .ps-card-line { color: var(--ink2); }
.ps-card-arrow { margin-top: auto; color: var(--link); font-weight: 700; }
@media (max-width: 900px) { .ps-card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .ps-card-grid { grid-template-columns: 1fr; } }

/* Pagination */
.ps-pagination {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
	margin: 28px 0 0;
}
.ps-pagination .page-numbers {
	padding: 8px 14px;
	border: 1.5px solid var(--border-strong);
	border-radius: 999px;
	background: var(--surface);
	color: var(--ink);
	font-weight: 600;
	font-size: 0.9rem;
	text-decoration: none;
}
.ps-pagination .page-numbers.current {
	border-color: var(--coral);
	background: var(--tint);
}
.ps-pagination a.page-numbers:hover { border-color: var(--coral); }

/* =======================================================================
   7 · HOMEPAGE — hero, steps, features, faq, cta band
   ==================================================================== */
.ps-hero { padding: clamp(20px, 5vw, 44px) 0 8px; }
.ps-hero-title {
	max-width: 21ch;
	margin: 0 auto 14px;
	text-align: center;
	font-size: clamp(2rem, 6vw, 3.2rem);
	line-height: 1.05;
}
.ps-hero-coral { color: var(--link); }
html[data-theme="dark"] .ps-hero-coral { color: var(--coral); }
.ps-hero-sub {
	max-width: 58ch;
	margin: 0 auto 30px;
	text-align: center;
	color: var(--ink2);
	font-size: clamp(1rem, 2.4vw, 1.12rem);
}
.ps-tool-wrap { padding-bottom: 16px; }

.ps-home-section { padding: clamp(36px, 6vw, 64px) 0; }
.ps-home-alt { background: var(--surface2); border-block: 1px solid var(--border); }
.ps-home-h2 {
	text-align: center;
	font-size: clamp(1.5rem, 4vw, 2.1rem);
	margin-bottom: 0.6em;
}
.ps-home-sub {
	text-align: center;
	max-width: 62ch;
	margin: -0.4em auto 1.6em;
	color: var(--ink2);
}

.ps-steps {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 26px;
}
.ps-step {
	position: relative;
	padding: 22px 20px;
	border: 1px solid var(--border);
	border-radius: 16px;
	background: var(--surface);
	box-shadow: var(--shadow-soft);
}
.ps-step-num {
	position: absolute;
	top: 18px;
	right: 18px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	width: 26px;
	height: 26px;
	border-radius: 50%;
	background: var(--tint);
	color: var(--link);
	font-weight: 800;
	font-size: 0.85rem;
}
.ps-step-icon { width: 26px; height: 26px; color: var(--coral); margin-bottom: 10px; display: block; }
.ps-step-title { font-size: 1.08rem; margin-bottom: 0.35em; }
.ps-step p { margin: 0; color: var(--ink2); font-size: 0.93rem; }

.ps-works-with {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin: 28px 0 0;
}
.ps-works-label {
	font-size: 0.78rem;
	font-weight: 700;
	letter-spacing: 0.14em;
	text-transform: uppercase;
	color: var(--ink2);
}
.ps-works-badge {
	padding: 7px 14px;
	border: 1.5px solid var(--border-strong);
	border-radius: 999px;
	background: var(--surface);
	font-size: 0.85rem;
	font-weight: 700;
	color: var(--ink);
}

.ps-features {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 16px;
	margin-top: 26px;
}
.ps-feature {
	padding: 22px 20px;
	border: 1px solid var(--border);
	border-radius: 16px;
	background: var(--surface);
}
.ps-feature h3 { font-size: 1.05rem; margin-bottom: 0.4em; }
.ps-feature p { margin: 0; color: var(--ink2); font-size: 0.92rem; }

.ps-faq-list { max-width: 720px; margin: 0 auto; }
.ps-faq {
	border-bottom: 1px solid var(--border);
	padding: 4px 0;
}
.ps-faq summary {
	padding: 12px 0;
	font-weight: 600;
	color: var(--ink);
	cursor: pointer;
}
.ps-faq summary:hover { color: var(--link); }
.ps-faq p {
	margin: 0 0 14px;
	color: var(--ink2);
	font-size: 0.95rem;
}

.ps-more-link { font-weight: 700; }

.ps-cta-band {
	background: var(--coral);
	color: var(--on-coral);
	text-align: center;
	padding: clamp(40px, 7vw, 64px) 0;
}
.ps-cta-title {
	color: var(--on-coral);
	font-size: clamp(1.6rem, 4.5vw, 2.3rem);
	margin-bottom: 0.35em;
}
/* 19.3px bold → large-text AA for white-on-coral in the light theme. */
.ps-cta-sub {
	margin: 0 0 22px;
	font-size: 1.17rem;
	font-weight: 700;
}
.ps-cta-btn {
	display: inline-block;
	padding: 13px 26px;
	border-radius: 12px;
	background: var(--surface);
	color: var(--ink) !important;
	font-family: var(--font-display);
	font-size: 1.1rem;
	font-weight: 700;
	text-decoration: none;
	box-shadow: var(--shadow-soft);
}
.ps-cta-btn:hover { background: var(--surface2); }

@media (max-width: 900px) {
	.ps-steps, .ps-features { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
	.ps-steps, .ps-features { grid-template-columns: 1fr; }
}

/* =======================================================================
   8 · BLOG — two-column layout, meta line, sidebar widgets
   ==================================================================== */
.ps-blog-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 36px;
	align-items: start;
}
.ps-blog-main { min-width: 0; }
.ps-blog-sub { text-align: left; margin: -0.4em 0 1.4em; }
.ps-blog-grid { grid-template-columns: 1fr 1fr; }
.ps-entry-meta {
	margin: -0.4em 0 1.6em;
	color: var(--ink2);
	font-size: 0.88rem;
}
.ps-sidebar { position: sticky; top: 84px; }
.ps-widget {
	padding: 18px;
	border: 1px solid var(--border);
	border-radius: 14px;
	background: var(--surface);
	margin-bottom: 16px;
}
.ps-widget-title {
	font-size: 0.85rem;
	font-weight: 700;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--ink2);
	margin: 0 0 10px;
}
.ps-widget ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 7px; }
.ps-related-posts { margin-top: 36px; }
@media (max-width: 960px) {
	.ps-blog-layout { grid-template-columns: 1fr; }
	.ps-sidebar { position: static; }
	.ps-blog-grid { grid-template-columns: 1fr; }
}

/* =======================================================================
   9 · FORMS — contact form, notices, search
   ==================================================================== */
.ps-contact-form { max-width: 560px; margin: 26px 0; }
.ps-form-field { margin: 0 0 16px; }
.ps-form-field label {
	display: block;
	margin-bottom: 6px;
	font-weight: 600;
	font-size: 0.92rem;
}
.ps-form-field input,
.ps-form-field textarea,
.ps-404-search input[type="search"],
.search-form .search-field {
	width: 100%;
	padding: 11px 13px;
	border: 1.5px solid var(--border-strong);
	border-radius: 10px;
	background: var(--surface);
	color: var(--ink);
	font-family: inherit;
	font-size: 0.95rem;
}
.ps-form-field input:focus-visible,
.ps-form-field textarea:focus-visible,
.search-form .search-field:focus-visible {
	outline: 2px solid var(--focus);
	outline-offset: 1px;
	border-color: var(--focus);
}
.ps-form-field textarea { resize: vertical; }
.ps-form-submit,
.search-form .search-submit {
	display: inline-block;
	padding: 12px 22px;
	border: 0;
	border-radius: 12px;
	background: var(--coral);
	color: var(--on-coral);
	font-family: var(--font-display);
	/* 18.7px bold → large-text AA on coral in the light theme. */
	font-size: 1.17rem;
	font-weight: 700;
	cursor: pointer;
}
.ps-form-submit:hover,
.search-form .search-submit:hover { background: var(--coral-strong); }
.ps-form-notice {
	max-width: 560px;
	padding: 12px 16px;
	border-radius: 10px;
	font-weight: 600;
}
.ps-form-ok {
	/* Success text on --surface reads 5.25:1 (a success-tinted wash fell
	   to 4.35:1 in light mode and would fail AA). */
	background: var(--surface);
	color: var(--success);
	border: 1px solid var(--success);
}
.ps-form-err {
	background: var(--tint);
	color: var(--link);
	border: 1px solid var(--coral);
}
/* Honeypot: off-screen for humans, present for bots. */
.ps-hp-field {
	position: absolute !important;
	left: -9999px !important;
	width: 1px;
	height: 1px;
	opacity: 0;
	pointer-events: none;
}
.ps-contact-direct { color: var(--ink2); }
.search-form {
	display: flex;
	gap: 8px;
	max-width: 460px;
}
.search-form .search-field { flex: 1; min-width: 0; }
.search-form .search-submit { flex: none; }

/* Coral action button shared with plugin pages (matches .ps-btn-coral there). */
.ps-btn-coral {
	display: inline-block;
	padding: 12px 22px;
	border-radius: 12px;
	background: var(--coral);
	color: var(--on-coral) !important;
	font-family: var(--font-display);
	font-size: 1.17rem;
	font-weight: 700;
	text-decoration: none !important;
}
.ps-btn-coral:hover { background: var(--coral-strong); }

/* =======================================================================
   10 · 404
   ==================================================================== */
.ps-404 { text-align: center; padding: 24px 0 40px; }
.ps-404 .ps-aperture,
.ps-404-mark { width: 64px; height: 64px; color: var(--coral); margin: 0 auto 18px; display: inline-block; }
.ps-404-sub { color: var(--ink2); max-width: 52ch; margin: 0 auto 22px; }
.ps-404-search { display: flex; justify-content: center; margin-bottom: 26px; }
.ps-404-links {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 18px;
}

/* =======================================================================
   11 · AD ZONES — render only when populated; reserved heights (CLS < 0.1)
   ==================================================================== */
.ps-ad-below-content,
.ps-ad-sidebar {
	min-height: 250px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 28px 0;
	background: var(--surface2);
	border: 1px solid var(--border);
	border-radius: 12px;
	overflow: hidden;
}
