/*
Theme Name:  ZachWheat
Theme URI:   https://zachwheat.com
Author:      Zach Wheat
Author URI:  https://zachwheat.com
Description: Personal blog theme for ZachWheat.com — designer, builder, veteran. Navy + amber design system. Built on the 559 Digital brand.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: zachwheat
Tags:        blog, custom-menu, featured-images, threaded-comments, translation-ready
*/

/*
 * TABLE OF CONTENTS
 * -----------------
 * 1. CSS Custom Properties (design tokens)
 * 2. Reset & Base
 * 3. Typography
 * 4. Layout Utilities
 * 5. Header
 * 6. Navigation
 * 7. Hero Section
 * 8. Ticker Strip
 * 9. Post Cards & Grid
 * 10. Category Strip
 * 11. Sidebar
 * 12. Single Post
 * 13. Search
 * 14. Footer
 * 15. Widgets
 * 16. Comments
 * 17. Accessibility
 * 18. Responsive
 */


/* ============================================================
   1. CSS CUSTOM PROPERTIES
   ============================================================ */
:root {
	/* Brand colors */
	--navy:        #0d1b2e;
	--navy-mid:    #112240;
	--navy-light:  #1a3352;
	--ink:         #080f1C;
	--amber:       #f59e0b;
	--amber-hover: #fbbf24;
	--amber-glow:  rgba(245, 158, 11, 0.08);
	--amber-dim:   rgba(245, 158, 11, 0.15);
	--amber-border:rgba(245, 158, 11, 0.25);

	/* Neutrals */
	--white:       #ffffff;
	--cream:       #e8dcc8;
	--grey-bg:     #f0eff0;
	--grey-mid:    #e2e2e4;
	--grey-light:  #fafafa;

	/* Text */
	--text:        #1a1a2e;
	--text-muted:  #6b7280;
	--text-light:  rgba(255, 255, 255, 0.6);

	/* Layout */
	--content-max: 860px;
	--wide-max:    1200px;
	--gutter:      2rem;

	/* Typography */
	--font-display:  'Bebas Neue', sans-serif;
	--font-serif:    'DM Serif Display', serif;
	--font-mono:     'DM Mono', monospace;
	--font-body:     'DM Sans', sans-serif;

	/* Spacing scale */
	--space-xs:  0.5rem;
	--space-sm:  1rem;
	--space-md:  1.5rem;
	--space-lg:  2.5rem;
	--space-xl:  4rem;

	/* Effects */
	--radius:     4px;
	--shadow-sm:  0 2px 8px rgba(0, 0, 0, 0.06);
	--shadow-md:  0 8px 32px rgba(0, 0, 0, 0.10);
	--shadow-lg:  0 20px 60px rgba(0, 0, 0, 0.18);
	--transition: 0.2s ease;
}


/* ============================================================
   2. RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	font-size: 16px;
}

body {
	font-family: var(--font-body);
	background: var(--grey-bg);
	color: var(--text);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	line-height: 1.6;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

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

a {
	color: var(--amber);
	transition: color var(--transition);
}

a:hover {
	color: var(--amber-hover);
}

ul,
ol {
	list-style: none;
}

button {
	cursor: pointer;
	font-family: inherit;
}

/* Push footer to bottom on short pages */
#page {
	display: flex;
	flex-direction: column;
	min-height: 100vh;
}

#content {
	flex: 1;
}


/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */

/* Display / Bebas Neue */
h1, h2, h3, h4, h5, h6 {
	font-family: var(--font-display);
	letter-spacing: 0.03em;
	line-height: 1.05;
	color: var(--navy);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.4rem); }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

/* Override for post content — switch to serif */
.entry-content h2,
.entry-content h3 {
	font-family: var(--font-serif);
	letter-spacing: 0;
	line-height: 1.25;
}

.entry-content h2 {
	font-family: var(--font-display);
	font-size: 1.8rem;
	letter-spacing: 0.04em;
	margin: 2.5rem 0 1rem;
	color: var(--navy);
}

.entry-content h3 {
	font-size: 1.2rem;
	font-style: italic;
	margin: 2rem 0 0.75rem;
	color: var(--navy);
}

p {
	margin-bottom: 1.2rem;
	line-height: 1.8;
}

/* Mono label style — used throughout */
.label-mono {
	font-family: var(--font-mono);
	font-size: 0.65rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
}

/* Amber accent text */
.text-amber { color: var(--amber); }
.text-muted  { color: var(--text-muted); }
.text-white  { color: var(--white); }


/* ============================================================
   4. LAYOUT UTILITIES
   ============================================================ */

/* Site wrapper — constrains max width */
.site-container {
	max-width: var(--wide-max);
	margin: 0 auto;
	padding: 0 var(--gutter);
	width: 100%;
}

/* Narrow — for prose and single post */
.container-narrow {
	max-width: var(--content-max);
	margin: 0 auto;
	padding: 0 var(--gutter);
	width: 100%;
}

/* Section wrappers */
.section {
	padding: var(--space-xl) var(--gutter);
}

.section-tight {
	padding: var(--space-lg) var(--gutter);
}

/* Background variants */
.bg-white  { background: var(--white); }
.bg-grey   { background: var(--grey-bg); }
.bg-navy   { background: var(--navy); }

/* Blink dot — used in eyebrows and labels */
.blink-dot {
	display: inline-block;
	width: 7px;
	height: 7px;
	background: var(--amber);
	border-radius: 50%;
	animation: blink-pulse 1.4s ease-in-out infinite;
	flex-shrink: 0;
}

@keyframes blink-pulse {
	0%, 100% { opacity: 1; transform: scale(1); }
	50%       { opacity: 0.3; transform: scale(0.7); }
}

/* Eyebrow — small label above headings */
.eyebrow {
	display: flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-mono);
	font-size: 0.68rem;
	letter-spacing: 0.16em;
	text-transform: uppercase;
	color: var(--amber);
	margin-bottom: 0.75rem;
}

/* Section header row */
.section-header {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
	margin-bottom: 2rem;
	padding-bottom: 1rem;
	border-bottom: 1px solid var(--grey-mid);
	flex-wrap: wrap;
	gap: 1rem;
}

.section-header--navy {
	border-bottom-color: rgba(255, 255, 255, 0.08);
}

.section-title {
	font-family: var(--font-display);
	font-size: 2rem;
	letter-spacing: 0.04em;
	line-height: 1;
}

.section-link {
	font-family: var(--font-mono);
	font-size: 0.68rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--amber);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 5px;
	transition: gap var(--transition);
	white-space: nowrap;
}

.section-link:hover {
	color: var(--amber);
	gap: 9px;
}

/* Dividers */
.divider {
	border: none;
	border-top: 1px solid var(--grey-mid);
	margin: var(--space-lg) 0;
}

.divider--amber {
	border: none;
	height: 1px;
	background: linear-gradient(90deg, var(--amber), transparent);
	opacity: 0.4;
	margin: var(--space-lg) 0;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	font-family: var(--font-mono);
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	text-decoration: none;
	padding: 12px 26px;
	border-radius: var(--radius);
	border: none;
	transition: all var(--transition);
	cursor: pointer;
	font-weight: 600;
}

.btn-primary {
	background: var(--amber);
	color: var(--navy);
}

.btn-primary:hover {
	background: var(--amber-hover);
	color: var(--navy);
	transform: translateY(-1px);
	box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}

.btn-ghost {
	background: transparent;
	color: var(--text-light);
	border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-ghost:hover {
	border-color: var(--amber);
	color: var(--amber);
}

/* Tag pills */
.tag-pill {
	display: inline-flex;
	font-family: var(--font-mono);
	font-size: 0.6rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 4px 12px;
	border-radius: 20px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	color: var(--text-muted);
	text-decoration: none;
	transition: all var(--transition);
	background: white;
}

.tag-pill:hover {
	border-color: var(--amber);
	color: var(--navy);
}

.tag-pill--amber {
	background: var(--amber);
	color: var(--navy);
	border-color: var(--amber);
}

.tag-pill--navy {
	background: var(--navy);
	color: var(--amber);
	border-color: var(--navy);
}


/* ============================================================
   5. HEADER
   ============================================================ */
#masthead {
	background: var(--navy);
	position: sticky;
	top: 0;
	z-index: 100;
	border-bottom: 1px solid rgba(245, 158, 11, 0.2);
}

.header-inner {
	max-width: var(--wide-max);
	margin: 0 auto;
	padding: 0 var(--gutter);
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 64px;
}

/* Site logo / branding */
.site-branding {
	display: flex;
	align-items: center;
	gap: 10px;
	text-decoration: none;
	flex-shrink: 0;
}

.site-title {
	font-family: var(--font-display);
	font-size: 1.6rem;
	color: var(--white);
	letter-spacing: 0.05em;
	line-height: 1;
}

.site-title span {
	color: var(--amber);
}


/* ============================================================
   6. NAVIGATION
   ============================================================ */
#site-navigation {
	display: flex;
	align-items: center;
	height: 100%;
}

/* WordPress outputs nav as a <ul> inside a <nav> */
#site-navigation ul {
	display: flex;
	align-items: center;
	gap: 0.5rem;
	height: 100%;
	list-style: none;
}

#site-navigation ul li {
	height: 100%;
	display: flex;
	align-items: center;
}

#site-navigation ul li a {
	font-family: var(--font-mono);
	font-size: 0.72rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.6);
	text-decoration: none;
	padding: 0 1rem;
	height: 100%;
	display: flex;
	align-items: center;
	transition: color var(--transition);
}

#site-navigation ul li a:hover,
#site-navigation ul li.current-menu-item a {
	color: var(--amber);
}

/* ── Vault nav item ── */
/* ── Vault CTA Band ── */
.vault-cta {
    background: var(--navy);
    padding: 5rem var(--gutter);
    position: relative;
    overflow: hidden;
    text-align: center;
    border-top: 1px solid rgba(245,158,11,0.15);
    border-bottom: 1px solid rgba(245,158,11,0.15);
}

/* Ambient glow behind content */
.vault-cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 600px;
    background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 65%);
    pointer-events: none;
}

.vault-cta .eyebrow {
    color: var(--amber);
    margin-bottom: 1rem;
    justify-content: center;
}

.vault-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    letter-spacing: 0.06em;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1;
}

.vault-cta h2 span {
    color: var(--amber);
}

.vault-cta p {
    color: rgba(255,255,255,0.5);
    font-size: 1rem;
    max-width: 520px;
    margin: 0 auto 2.5rem;
    line-height: 1.7;
}

.vault-cta .btn-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

#site-navigation ul li.menu-vault a {
	display: flex;
	align-items: center;
	gap: 8px;
	color: var(--amber);
	border: 1px solid rgba(245, 158, 11, 0.4);
	padding: 6px 14px;
	border-radius: var(--radius);
	margin-left: 0.5rem;
	height: auto;
}

#site-navigation ul li.menu-vault a:hover {
	background: var(--amber-glow);
	color: var(--amber);
}

/* Blink dot injected via ::before — no extra HTML needed */
#site-navigation ul li.menu-vault a::before {
	content: '';
	display: inline-block;
	width: 7px;
	height: 7px;
	background: var(--amber);
	border-radius: 50%;
	flex-shrink: 0;
	animation: blink-pulse 1.4s ease-in-out infinite;
}

/* Mobile menu toggle — hidden on desktop */
.menu-toggle {
	display: none;
	background: none;
	border: none;
	color: var(--white);
	font-size: 1.4rem;
	padding: 8px;
	cursor: pointer;
}



/* ============================================================
   7. HERO SECTION
   ============================================================ */
.site-hero {
	background: var(--navy);
	padding: 4rem var(--gutter) 3rem;
	position: relative;
	overflow: hidden;
}

.site-hero::before {
	content: '';
	position: absolute;
	top: -20%;
	right: -5%;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(245, 158, 11, 0.07) 0%, transparent 65%);
	pointer-events: none;
}

.hero-inner {
	max-width: var(--wide-max);
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 380px;
	gap: 3rem;
	align-items: center;
	position: relative;
	z-index: 1;
}

.hero-content .eyebrow { color: var(--amber); }

.hero-content h1 {
	font-family: var(--font-display);
	font-size: clamp(2.4rem, 5vw, 4rem);
	color: var(--white);
	line-height: 1;
	letter-spacing: 0.02em;
	margin-bottom: 1rem;
}

.hero-content h1 em {
	font-style: italic;
	font-family: var(--font-serif);
	color: var(--amber);
	font-size: 0.88em;
}

.hero-desc {
	font-size: 1rem;
	color: rgba(255, 255, 255, 0.55);
	line-height: 1.75;
	max-width: 480px;
	margin-bottom: 1.8rem;
}

.hero-cta {
	display: flex;
	gap: 12px;
	flex-wrap: wrap;
}

/* Featured post card in hero — spotlight glow */
.hero-card {
	background: var(--navy-mid);
	border: 1px solid var(--amber-border);
	padding: 2rem;
	position: relative;
	overflow: hidden;
	transition: border-color 0.3s;
	--mouse-x: 50%;
	--mouse-y: 50%;
}

.hero-card::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--amber), transparent);
	z-index: 2;
}

.hero-card::after {
	content: '';
	position: absolute;
	inset: 0;
	background: radial-gradient(
		600px circle at var(--mouse-x) var(--mouse-y),
		rgba(245, 158, 11, 0.10) 0%,
		rgba(245, 158, 11, 0.04) 30%,
		transparent 65%
	);
	opacity: 0;
	transition: opacity 0.4s ease;
	pointer-events: none;
	z-index: 1;
}

.hero-card:hover { border-color: rgba(245, 158, 11, 0.45); }
.hero-card:hover::after { opacity: 1; }

.hero-card .glow-border {
	position: absolute;
	inset: -1px;
	background: radial-gradient(
		400px circle at var(--mouse-x) var(--mouse-y),
		rgba(245, 158, 11, 0.5),
		transparent 60%
	);
	opacity: 0;
	transition: opacity 0.35s ease;
	pointer-events: none;
	z-index: 0;
	-webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
	-webkit-mask-composite: xor;
	mask-composite: exclude;
	padding: 1px;
}

.hero-card:hover .glow-border { opacity: 1; }

.hero-card > *:not(.glow-border) {
	position: relative;
	z-index: 3;
}

.hero-card-label {
	font-family: var(--font-mono);
	font-size: 0.65rem;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	color: var(--amber);
	margin-bottom: 1.2rem;
	display: flex;
	align-items: center;
	gap: 8px;
}

.hero-post-title {
	font-family: var(--font-serif);
	font-size: 1.3rem;
	color: var(--white);
	line-height: 1.35;
	margin-bottom: 0.75rem;
	text-decoration: none;
	display: block;
}

.hero-post-title:hover { color: var(--amber); }

.hero-post-meta {
	font-family: var(--font-mono);
	font-size: 0.68rem;
	color: rgba(255, 255, 255, 0.35);
	letter-spacing: 0.08em;
	margin-bottom: 1rem;
}

.hero-post-excerpt {
	font-size: 0.88rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.5);
	margin-bottom: 1.2rem;
}

.read-link {
	font-family: var(--font-mono);
	font-size: 0.7rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: var(--amber);
	text-decoration: none;
	display: flex;
	align-items: center;
	gap: 6px;
	transition: gap var(--transition);
}

.read-link:hover { gap: 10px; color: var(--amber); }
.read-link::after { content: '→'; }


/* ============================================================
   8. TICKER STRIP
   ============================================================ */
.ticker-strip {
	background: var(--amber);
	overflow: hidden;
	padding: 7px 0;
	white-space: nowrap;
	z-index: 99;
}

.ticker-track {
	display: inline-flex;
	animation: ticker-scroll 30s linear infinite;
}

.ticker-item {
	font-family: var(--font-mono);
	font-size: 0.7rem;
	font-weight: 500;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	color: var(--navy);
	padding: 0 2.5rem;
	display: flex;
	align-items: center;
	gap: 1rem;
}

.ticker-item::after {
	content: '◆';
	font-size: 0.5rem;
}

@keyframes ticker-scroll {
	0%   { transform: translateX(0); }
	100% { transform: translateX(-50%); }
}


/* ============================================================
   9. POST CARDS & GRID
   ============================================================ */
.posts-grid {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr;
	gap: 1.5rem;
}

.post-card {
	background: var(--white);
	border: 1px solid var(--grey-mid);
	overflow: hidden;
	transition: box-shadow var(--transition), transform var(--transition);
}

.post-card:hover {
	box-shadow: var(--shadow-md);
	transform: translateY(-2px);
}

.post-card--featured {
	grid-row: span 2;
}

.post-thumbnail {
	width: 100%;
	aspect-ratio: 16 / 9;
	background: var(--navy-light);
	position: relative;
	overflow: hidden;
}

.post-card--featured .post-thumbnail {
	aspect-ratio: 4 / 3;
}

/* WordPress featured image */
.post-thumbnail img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.4s ease;
}

.post-card:hover .post-thumbnail img {
	transform: scale(1.03);
}

/* Category tag overlaid on image */
.post-cat-tag {
	display: inline-block;
	font-family: var(--font-mono);
	font-size: 0.62rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	background: var(--amber);
	color: var(--navy);
	padding: 3px 8px;
	font-weight: 500;
	text-decoration: none;
}

.post-body { padding: 1.25rem; }

.post-title {
	font-family: var(--font-serif);
	font-size: 1.05rem;
	color: var(--text);
	line-height: 1.4;
	margin-bottom: 0.5rem;
	text-decoration: none;
	display: block;
}

.post-title:hover { color: var(--amber); }

.post-card--featured .post-title { font-size: 1.4rem; }

.post-excerpt {
	font-size: 0.83rem;
	line-height: 1.65;
	color: var(--text-muted);
	margin-bottom: 1rem;
}

.post-meta {
	font-family: var(--font-mono);
	font-size: 0.65rem;
	letter-spacing: 0.08em;
	color: #aaa;
	display: flex;
	align-items: center;
	gap: 1rem;
}

/* No featured image placeholder */
.post-thumbnail--placeholder {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 3rem;
	opacity: 0.2;
}


/* ============================================================
   10. CATEGORY STRIP
   ============================================================ */
.category-strip {
	background: var(--navy);
	padding: 3rem var(--gutter);
}

.category-strip .section-title { color: var(--white); }
.category-strip .eyebrow { color: var(--amber); }

.categories-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 1rem;
}

.cat-card {
	background: var(--navy-mid);
	border: 1px solid rgba(255, 255, 255, 0.06);
	padding: 1.5rem 1.2rem;
	text-decoration: none;
	position: relative;
	overflow: hidden;
	transition: border-color var(--transition), transform var(--transition);
}

.cat-card::before {
	content: '';
	position: absolute;
	bottom: 0; left: 0; right: 0;
	height: 2px;
	background: var(--amber);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform 0.3s;
}

.cat-card:hover {
	border-color: var(--amber-border);
	transform: translateY(-2px);
}

.cat-card:hover::before { transform: scaleX(1); }

.cat-icon {
	font-size: 1.4rem;
	margin-bottom: 0.75rem;
	display: block;
}

.cat-name {
	font-family: var(--font-display);
	font-size: 1.15rem;
	color: var(--white);
	letter-spacing: 0.05em;
	margin-bottom: 0.3rem;
}

.cat-count {
	font-family: var(--font-mono);
	font-size: 0.65rem;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.3);
}

.cat-card--vault {
	border-color: var(--amber-border);
	background: linear-gradient(135deg, var(--navy-mid) 0%, rgba(245, 158, 11, 0.05) 100%);
}

.cat-card--vault .cat-name { color: var(--amber); }


/* ============================================================
   11. SIDEBAR
   ============================================================ */
.sidebar-widget {
	background: var(--white);
	border: 1px solid var(--grey-mid);
	padding: 1.4rem;
	margin-bottom: 1.5rem;
}

.widget-title {
	font-family: var(--font-display);
	font-size: 1rem;
	color: var(--navy);
	letter-spacing: 0.06em;
	margin-bottom: 1rem;
	padding-bottom: 0.6rem;
	border-bottom: 2px solid var(--amber);
}

/* Vault CTA sidebar widget */
.widget--vault-cta {
	background: var(--navy);
	border-color: var(--amber-border);
	position: relative;
	overflow: hidden;
}

.widget--vault-cta::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 2px;
	background: linear-gradient(90deg, var(--amber), transparent);
}

.widget--vault-cta .widget-title { color: var(--amber); border-color: rgba(245, 158, 11, 0.3); }
.widget--vault-cta p { color: rgba(255, 255, 255, 0.5); font-size: 0.88rem; }


/* ============================================================
   12. SINGLE POST
   ============================================================ */
.single-hero {
	background: var(--navy);
	padding: 3rem var(--gutter) 0;
	position: relative;
	overflow: hidden;
}

.post-header { padding-bottom: 3rem; }

.post-header .eyebrow { color: var(--amber); }

.post-header h1 {
	font-family: var(--font-display);
	font-size: clamp(2rem, 5vw, 3.5rem);
	color: var(--white);
	line-height: 1.02;
	letter-spacing: 0.02em;
	margin-bottom: 0.8rem;
}

.post-header-meta {
	display: flex;
	align-items: center;
	gap: 1.2rem;
	flex-wrap: wrap;
	margin-top: 1.2rem;
}

.post-header-meta span {
	font-family: var(--font-mono);
	font-size: 0.65rem;
	letter-spacing: 0.1em;
	color: rgba(255, 255, 255, 0.4);
	text-transform: uppercase;
}

/* Post layout — article + sidebar */
.post-layout {
	max-width: var(--wide-max);
	margin: 0 auto;
	padding: 3rem var(--gutter);
	display: grid;
	grid-template-columns: 1fr 300px;
	gap: 3.5rem;
	align-items: start;
}

.post-sidebar-sticky {
	position: sticky;
	top: 84px;
}

/* Entry content styles */
.entry-content {
	font-size: 1rem;
	line-height: 1.85;
	color: var(--text);
}

.entry-content p { margin-bottom: 1.4rem; }

.entry-content a {
	color: var(--amber);
	text-decoration: underline;
	text-underline-offset: 2px;
}

.entry-content ul,
.entry-content ol {
	list-style: disc;
	padding-left: 1.5rem;
	margin-bottom: 1.4rem;
}

.entry-content ul li,
.entry-content ol li {
	margin-bottom: 0.4rem;
}

.entry-content blockquote {
	border-left: 3px solid var(--amber);
	padding: 1rem 1.4rem;
	background: rgba(245, 158, 11, 0.04);
	border-radius: 0 var(--radius) var(--radius) 0;
	margin: 2rem 0;
	font-family: var(--font-serif);
	font-size: 1.1rem;
	font-style: italic;
	color: var(--navy);
}

.entry-content mark {
	background: rgba(245, 158, 11, 0.2);
	color: var(--navy);
	padding: 1px 4px;
}

/* Author bio */
.author-bio {
	background: var(--navy);
	padding: 1.8rem;
	position: relative;
	overflow: hidden;
	margin-top: 3rem;
}

.author-bio::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: var(--amber);
}


/* ── Breadcrumb ── */
.post-breadcrumb {
	display: flex;
	align-items: center;
	gap: 6px;
	flex-wrap: wrap;
	font-family: var(--font-mono);
	font-size: 0.65rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	color: rgba(255, 255, 255, 0.3);
	margin-bottom: 0.5rem;
}

.post-breadcrumb a {
	color: rgba(255, 255, 255, 0.4);
	text-decoration: none;
	transition: color var(--transition);
}

.post-breadcrumb a:hover { color: var(--amber); }
.post-breadcrumb-sep { opacity: 0.3; }

/* ── Author chip in meta bar ── */
.author-chip {
	display: flex;
	align-items: center;
	gap: 7px;
}

.author-avatar {
	width: 28px !important;
	height: 28px !important;
	border-radius: 50%;
	border: 1px solid rgba(245, 158, 11, 0.3);
}

.author-name {
	font-family: var(--font-mono);
	font-size: 0.65rem;
	letter-spacing: 0.08em;
	color: rgba(255, 255, 255, 0.5);
	text-decoration: none;
	text-transform: uppercase;
}

.author-name:hover { color: var(--amber); }

.post-header-meta-sep { color: rgba(255,255,255,0.15); }

/* ── Featured image below hero ── */
.post-featured-image {
	background: var(--navy);
	padding-bottom: 0;
}

.post-featured-image .site-container {
	padding-top: 0;
}

.post-hero-img {
	width: 100%;
	max-height: 500px;
	object-fit: cover;
	display: block;
}

/* ── Post tags ── */
.post-tags-wrap {
	margin: 2rem 0;
	padding: 1.2rem 0;
	border-top: 1px solid var(--grey-mid);
	border-bottom: 1px solid var(--grey-mid);
}

.post-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

/* WordPress outputs tag links as <a> tags */
.post-tags a {
	display: inline-flex;
	font-family: var(--font-mono);
	font-size: 0.6rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	padding: 4px 12px;
	border-radius: 20px;
	border: 1px solid rgba(0, 0, 0, 0.1);
	color: var(--text-muted);
	text-decoration: none;
	transition: all var(--transition);
	background: white;
}

.post-tags a:hover {
	border-color: var(--amber);
	color: var(--navy);
}

/* ── Author bio card ── */
.author-bio {
	background: var(--navy);
	padding: 1.8rem;
	position: relative;
	overflow: hidden;
	margin-top: 2.5rem;
	border-radius: var(--radius);
}

.author-bio::before {
	content: '';
	position: absolute;
	top: 0; left: 0; right: 0;
	height: 3px;
	background: var(--amber);
}

.author-bio-inner {
	display: flex;
	gap: 1.2rem;
	align-items: flex-start;
}

.author-avatar-wrap {
    flex-shrink: 0;
}

.author-bio-avatar {
	width: 64px !important;
	height: 64px !important;
	border-radius: 50%;
	border: 2px solid rgba(245, 158, 11, 0.3);
	flex-shrink: 0; 
}

.author-bio-name {
	font-family: var(--font-display);
	font-size: 1.1rem;
	letter-spacing: 0.06em;
	margin-bottom: 4px;
}

.author-bio-text {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.45);
	line-height: 1.65;
	margin: 0;
}

/* ── Prev/Next Post Navigation ── */
.post-navigation {
	margin-top: 2.5rem;
	padding-top: 1.5rem;
	border-top: 1px solid var(--grey-mid);
}

/* WordPress wraps nav links in .nav-links > .nav-previous / .nav-next */
.post-navigation .nav-links {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 1rem;
}

.post-navigation .nav-previous,
.post-navigation .nav-next {
	background: var(--white);
	border: 1px solid var(--grey-mid);
	padding: 1.2rem;
	border-radius: var(--radius);
	transition: all var(--transition);
}

.post-navigation .nav-previous:hover,
.post-navigation .nav-next:hover {
	border-color: var(--amber);
	transform: translateY(-2px);
	box-shadow: var(--shadow-sm);
}

.post-navigation .nav-next {
	text-align: right;
}

.post-navigation a {
	display: flex;
	flex-direction: column;
	gap: 5px;
	text-decoration: none;
}

.nav-direction {
	font-size: 0.62rem;
	color: var(--amber);
	letter-spacing: 0.1em;
}

.nav-title {
	font-family: var(--font-serif);
	font-size: 0.95rem;
	color: var(--navy);
	line-height: 1.35;
}

/* ── Related posts section ── */
.related-posts {
	padding: 3rem var(--gutter);
}

/* ============================================================
   13. SEARCH
   ============================================================ */
.search-hero {
	background: var(--navy);
	padding: 3rem var(--gutter);
	position: relative;
	overflow: hidden;
}

.search-form-wrap {
	max-width: 680px;
	margin: 1.5rem 0 0;
}

.search-input-row {
	display: flex;
	gap: 0;
	border: 2px solid var(--amber-border);
	border-radius: var(--radius);
	overflow: hidden;
	transition: border-color 0.2s;
}

.search-input-row:focus-within {
	border-color: var(--amber);
}

.search-input {
	flex: 1;
	background: rgba(255, 255, 255, 0.06);
	border: none;
	padding: 14px 18px;
	font-family: var(--font-body);
	font-size: 1rem;
	color: var(--white);
	outline: none;
}

.search-input::placeholder { color: rgba(255, 255, 255, 0.3); }

.search-submit {
	background: var(--amber);
	color: var(--navy);
	border: none;
	padding: 14px 24px;
	font-family: var(--font-mono);
	font-size: 0.72rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	font-weight: 600;
	cursor: pointer;
	transition: background var(--transition);
}

.search-submit:hover { background: var(--amber-hover); }


/* ============================================================
   14. FOOTER
   ============================================================ */
#colophon {
	background: #080f1C;
	border-top: 1px solid rgba(245, 158, 11, 0.12);
	margin-top: auto;
}

.footer-inner {
	max-width: var(--wide-max);
	margin: 0 auto;
	padding: 3rem var(--gutter) 2rem;
}

.footer-top {
	display: grid;
	grid-template-columns: 2fr 1fr 1fr 1fr;
	gap: 3rem;
	padding-bottom: 2.5rem;
	border-bottom: 1px solid rgba(255, 255, 255, 0.06);
	margin-bottom: 1.5rem;
}

.footer-tagline {
	font-size: 0.85rem;
	line-height: 1.65;
	color: rgba(255, 255, 255, 0.35);
	margin: 0.8rem 0 1rem;
	max-width: 280px;
}

.footer-col-title {
	font-family: var(--font-mono);
	font-size: 0.65rem;
	letter-spacing: 0.18em;
	text-transform: uppercase;
	color: var(--amber);
	margin-bottom: 1rem;
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: 0.5rem; }

.footer-links a {
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.4);
	text-decoration: none;
	transition: color var(--transition);
}

.footer-links a:hover { color: rgba(255, 255, 255, 0.8); }

/* Vet badge */
.vet-badge-block {
	display: flex;
	align-items: center;
	gap: 14px;
	padding: 18px 0;
	border-top: 1px solid rgba(245, 158, 11, 0.15);
	margin-top: 20px;
}

.vet-badge-block::before {
	content: '';
	display: block;
	width: 2px;
	height: 42px;
	background: var(--amber);
	border-radius: 2px;
	flex-shrink: 0;
	opacity: 0.6;
}

.vet-badge-icon {
	flex-shrink: 0;
	width: 54px;
	height: 54px;
}

.vet-badge-icon svg {
	width: 100%;
	height: 100%;
	filter: drop-shadow(0 0 6px rgba(245, 158, 11, 0.25));
}

.vet-badge-text {
	display: flex;
	flex-direction: column;
	gap: 2px;
}

.vob-label {
	font-family: var(--font-display);
	font-size: 0.65rem;
	letter-spacing: 0.18em;
	color: var(--amber);
	text-transform: uppercase;
	line-height: 1;
}

.vob-title {
	font-family: var(--font-display);
	font-size: 1.05rem;
	letter-spacing: 0.08em;
	color: var(--cream);
	line-height: 1.1;
	text-transform: uppercase;
}

.vob-sub {
	font-family: var(--font-mono);
	font-size: 0.6rem;
	color: rgba(232, 220, 200, 0.4);
	letter-spacing: 0.06em;
	margin-top: 3px;
	text-transform: uppercase;
}

.footer-bottom {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-family: var(--font-mono);
	font-size: 0.65rem;
	letter-spacing: 0.06em;
	color: rgba(255, 255, 255, 0.2);
}

.footer-bottom a {
	color: rgba(255, 255, 255, 0.3);
	text-decoration: none;
}

.footer-bottom a:hover { color: var(--amber); }


/* ============================================================
   15. WIDGETS
   ============================================================ */
.widget { margin-bottom: 2rem; }

.widget select {
	width: 100%;
	padding: 8px 12px;
	border: 1px solid var(--grey-mid);
	border-radius: var(--radius);
	font-family: var(--font-body);
	font-size: 0.9rem;
}

/* WordPress search widget */
.widget_search .search-form {
	display: flex;
	gap: 0;
}

.widget_search .search-field {
	flex: 1;
	padding: 8px 12px;
	border: 1px solid var(--grey-mid);
	border-right: none;
	border-radius: var(--radius) 0 0 var(--radius);
	font-family: var(--font-body);
	font-size: 0.9rem;
	outline: none;
}

.widget_search .search-field:focus {
	border-color: var(--amber);
}

.widget_search .search-submit {
	padding: 8px 16px;
	background: var(--navy);
	color: var(--amber);
	border: 1px solid var(--navy);
	border-radius: 0 var(--radius) var(--radius) 0;
	font-family: var(--font-mono);
	font-size: 0.65rem;
	letter-spacing: 0.1em;
	text-transform: uppercase;
	cursor: pointer;
}


/* ============================================================
   16. COMMENTS
   ============================================================ */
.comments-area {
	margin-top: 3rem;
	padding-top: 2rem;
	border-top: 1px solid var(--grey-mid);
}

.comments-title {
	font-family: var(--font-display);
	font-size: 1.4rem;
	color: var(--navy);
	margin-bottom: 1.5rem;
	letter-spacing: 0.04em;
}

.comment-body {
	padding: 1.2rem;
	background: var(--white);
	border: 1px solid var(--grey-mid);
	margin-bottom: 1rem;
	border-radius: var(--radius);
}

.comment-author .fn {
	font-family: var(--font-display);
	font-size: 1rem;
	color: var(--navy);
	letter-spacing: 0.04em;
}

.comment-metadata {
	font-family: var(--font-mono);
	font-size: 0.62rem;
	color: var(--text-muted);
	letter-spacing: 0.08em;
	margin-top: 2px;
}

.comment-metadata a {
	color: var(--text-muted);
	text-decoration: none;
}

.comment-content { margin-top: 0.8rem; font-size: 0.92rem; }

/* Comment form */
.comment-form input,
.comment-form textarea {
	width: 100%;
	padding: 10px 14px;
	border: 1px solid var(--grey-mid);
	border-radius: var(--radius);
	font-family: var(--font-body);
	font-size: 0.9rem;
	margin-bottom: 1rem;
	transition: border-color var(--transition);
}

.comment-form input:focus,
.comment-form textarea:focus {
	outline: none;
	border-color: var(--amber);
}

.comment-form textarea { min-height: 120px; resize: vertical; }

.comment-form .submit {
	background: var(--navy);
	color: var(--amber);
	border: none;
	padding: 12px 26px;
	font-family: var(--font-mono);
	font-size: 0.72rem;
	letter-spacing: 0.12em;
	text-transform: uppercase;
	border-radius: var(--radius);
	cursor: pointer;
	font-weight: 600;
	transition: all var(--transition);
}

.comment-form .submit:hover {
	background: var(--amber);
	color: var(--navy);
}


/* ============================================================
   17. ACCESSIBILITY
   ============================================================ */

/* Skip link */
.skip-link {
	position: absolute;
	top: -100px;
	left: 0;
	background: var(--amber);
	color: var(--navy);
	padding: 8px 16px;
	font-family: var(--font-mono);
	font-size: 0.8rem;
	font-weight: 600;
	text-decoration: none;
	z-index: 999;
	transition: top 0.2s;
}

.skip-link:focus { top: 0; }

/* Focus styles */
a:focus,
button:focus,
input:focus,
textarea:focus {
	outline: 2px solid var(--amber);
	outline-offset: 2px;
}


/* ============================================================
   18. RESPONSIVE
   ============================================================ */
@media (max-width: 768px) {

    /* ── Toggle button — visible on mobile only ── */
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        padding: 0;
        background: none;
        border: 1px solid rgba(245,158,11,0.3);
        border-radius: var(--radius);
        color: var(--white);
        font-size: 1.1rem;
        cursor: pointer;
        transition: border-color var(--transition), color var(--transition);
        flex-shrink: 0;
    }

    .menu-toggle:hover {
        border-color: var(--amber);
        color: var(--amber);
    }

    /* ── Nav dropdown container ──
       Positioned absolutely below the 64px header.
       Hidden by default, shown when .toggled is added by JS.
       Solid navy background fixes the transparency issue.
    */
    #site-navigation {
        display: none; /* hidden until toggled */
        position: absolute;
        top: 64px; /* height of #masthead */
        left: 0;
        right: 0;
        height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        z-index: 999;
        background: var(--navy) !important;
        border-top: 2px solid var(--amber);
        border-bottom: 1px solid rgba(245,158,11,0.2);
        box-shadow: 0 8px 32px rgba(0,0,0,0.4);
    }

    /* JS adds .toggled when hamburger is clicked */
    #site-navigation.toggled {
        display: block;
    }

    /* ── Nav list — vertical stack ── */
    #site-navigation ul {
        flex-direction: column;
        align-items: flex-start;
        padding: 0.5rem var(--gutter) 1rem;
        gap: 0;
        height: auto;
    }

    /* ── Individual nav items ── */
    #site-navigation ul li {
        width: 100%;
        height: auto;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    #site-navigation ul li:last-child {
        border-bottom: none;
    }

    /* ── Nav links — full width tap targets ── */
    #site-navigation ul li a {
        padding: 0.9rem 0;
        width: 100%;
        height: auto;
        font-size: 0.78rem;
        color: rgba(255,255,255,0.7);
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    #site-navigation ul li a:hover,
    #site-navigation ul li.current-menu-item a {
        color: var(--amber);
    }

    /* ── Vault item — special treatment on mobile ──
       Remove the border box on mobile, show as full-width
       item with amber text and a left accent instead.
    */
    #site-navigation ul li.menu-vault {
        border-bottom: none;
        margin-top: 0.5rem;
        padding-top: 0.5rem;
        border-top: 1px solid rgba(245,158,11,0.15);
    }

    #site-navigation ul li.menu-vault a {
        color: var(--amber);
        border: none !important;
        padding: 0.9rem 0;
        margin: 0;
        height: auto;
        width: 100%;
        font-size: 0.78rem;
        justify-content: flex-start;
        gap: 10px;
    }

    #site-navigation ul li.menu-vault a:hover {
        background: none;
        color: var(--white);
    }

    /* Blink dot stays on mobile vault item */
    #site-navigation ul li.menu-vault a::before {
        width: 7px;
        height: 7px;
        flex-shrink: 0;
    }

    /* ── Arrow indicator on each nav item ── */
    #site-navigation ul li a::after {
        content: '→';
        font-size: 0.75rem;
        color: rgba(255,255,255,0.15);
        transition: color var(--transition), transform var(--transition);
    }

    #site-navigation ul li a:hover::after {
        color: var(--amber);
        transform: translateX(3px);
    }

    /* Remove arrow from vault item (already has blink dot) */
    #site-navigation ul li.menu-vault a::after {
        display: none;
    }

    /* ── Hero section adjustments ── */
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    #hero-card {
        max-width: 100%;
    }

    .hero-content h1 {
        font-size: clamp(2.4rem, 8vw, 3.5rem);
    }

    /* ── Posts grid — single column on mobile ── */
    .posts-grid {
        grid-template-columns: 1fr;
    }

    .post-card--featured {
        grid-column: 1;
    }

    /* ── Categories grid — 2 columns on mobile ── */
    .categories-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* ── Single post layout — stack on mobile ── */
    .post-layout {
        grid-template-columns: 1fr;
    }

    .post-sidebar {
        display: none; /* hide sidebar on mobile, or move below */
    }

    /* ── Search results — single column ── */
    .search-results-grid {
        grid-template-columns: 1fr;
    }

    /* ── Footer grid — stack columns ── */
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* ── Site container padding ── */
    .site-container {
        padding: 0 1rem;
    }

    /* ── Ticker — slightly smaller on mobile ── */
    .ticker-item {
        font-size: 0.62rem;
    }

}

/* ── Tablet: 769px–1024px ── */
@media (min-width: 769px) and (max-width: 1024px) {

    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .post-card--featured {
        grid-column: 1 / -1;
    }

    .categories-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .footer-top {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Nav still visible on tablet — just tighter */
    #site-navigation ul li a {
        padding: 0 0.6rem;
        font-size: 0.65rem;
    }

}
@media (max-width: 768px) {
    #site-navigation {
        position: fixed !important;
        top: 64px;
        left: 0;
        right: 0;

        }
        
        #site-navigation ul#primary-menu {
        display: flex !important;
        flex-direction: column !important;
        height: 400px !important;
        width: 100% !important;
        height: auto !important;
        min-height: fit-content !important;
        }
}
/* ============================================================
   COMMENTS SECTION
   ============================================================ */

.comments-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

.comments-inner {
    max-width: 860px;
}

.comments-title {
    color: var(--amber);
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

.comments-count {
    color: var(--white);
}

/* Comment list */
.comment-list,
.comment-list ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

.comment-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.comment-item:last-child {
    border-bottom: none;
}

/* Nested replies — indent them */
.comment-list .children {
    padding-left: 2rem;
    border-left: 2px solid var(--amber);
    margin-top: 1rem;
    margin-left: 1rem;
}

/* Author row */
.comment-author-row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}

.comment-avatar-img {
    border-radius: 50%;
    width: 48px;
    height: 48px;
}

.comment-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex: 1;
}

.comment-author-name {
    font-weight: 600;
    color: var(--white);
    font-size: 0.95rem;
}

.comment-date {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.05em;
}

.comment-reply a {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--amber);
    text-decoration: none;
    letter-spacing: 0.05em;
}

.comment-reply a:hover {
    text-decoration: underline;
}

.comment-content {
    color: var(--text-body, #cbd5e1);
    font-size: 0.95rem;
    line-height: 1.7;
}

.comment-content p:last-child {
    margin-bottom: 0;
}

.comment-awaiting-moderation {
    color: var(--amber);
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

/* Comment Form */
.comment-form {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
}

#reply-title {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.comment-form-field {
    margin-bottom: 1.25rem;
}

.comment-form-field label,
.comment-form-field .label-mono {
    display: block;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.4rem;
}

.comment-form-field input[type="text"],
.comment-form-field input[type="email"],
.comment-form-field input[type="url"],
.comment-form-field textarea {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px;
    padding: 0.65rem 0.9rem;
    color: var(--white);
    font-family: var(--font-body, 'DM Sans', sans-serif);
    font-size: 0.95rem;
    transition: border-color 0.2s;
}

.comment-form-field input:focus,
.comment-form-field textarea:focus {
    outline: none;
    border-color: var(--amber);
}

.comment-form-field textarea {
    resize: vertical;
    min-height: 120px;
}

.required {
    color: var(--amber);
}

.comment-form-cookies label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.8rem;
}

.comment-form-cookies input[type="checkbox"] {
    accent-color: var(--amber);
    width: 14px;
    height: 14px;
}

.comment-pagination {
    margin-top: 1.5rem;
    display: flex;
    gap: 0.5rem;
}

/* Pingback */
.comment.pingback {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    color: var(--text-muted);
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
/* ============================================================
   ARCHIVE & AUTHOR HERO
   ============================================================ */

.archive-hero {
    background: var(--navy);
    padding: 3rem 0 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.archive-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white);
    margin: 0.5rem 0 0.75rem;
    letter-spacing: 0.04em;
}

.archive-description {
    color: rgba(255,255,255,0.55);
    font-size: 0.95rem;
    line-height: 1.75;
    max-width: 640px;
    margin: 0 0 0.75rem;
}

.archive-count {
    color: var(--amber);
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    margin: 0;
}

/* ── Author Hero specific ── */
.author-hero-card {
    display: flex;
    align-items: flex-start;
    gap: 1.75rem;
    margin-top: 1.5rem;
}

.author-hero-avatar {
    flex-shrink: 0;
}

.author-hero-avatar-img {
    width: 96px !important;
    height: 96px !important;
    border-radius: 50%;
    border: 2px solid rgba(245,158,11,0.35);
}

.author-hero-name {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    color: var(--white);
    letter-spacing: 0.04em;
    margin: 0.4rem 0 0.75rem;
}

.author-hero-bio {
    color: rgba(255,255,255,0.6);
    font-size: 0.92rem;
    line-height: 1.75;
    max-width: 680px;
}

.author-hero-bio p {
    margin: 0 0 0.75rem;
}

.author-hero-bio p:last-child {
    margin-bottom: 0;
}

.author-hero-bio a {
    color: var(--amber);
    text-decoration: none;
}

.author-hero-bio a:hover {
    text-decoration: underline;
}

/* Responsive — stack on mobile */
@media ( max-width: 600px ) {
    .author-hero-card {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .author-hero-bio {
        text-align: left;
    }
}
/* ============================================================
   SEARCH
   ============================================================ */

/* Hero */
.search-hero {
    background: var(--navy);
    padding: 3rem 0 2.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.search-hero h1 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--white);
    letter-spacing: 0.04em;
    margin: 0.5rem 0 1.5rem;
}

.search-form-wrap {
    max-width: 600px;
}

/* Search form */
.search-form {
    width: 100%;
}

.search-input-row {
    display: flex;
    gap: 0;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color 0.2s;
}

.search-input-row:focus-within {
    border-color: var(--amber);
}

.search-input {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border: none;
    padding: 0.75rem 1rem;
    color: var(--white);
    font-family: var(--font-body, 'DM Sans', sans-serif);
    font-size: 0.95rem;
    outline: none;
}

.search-input::placeholder {
    color: rgba(255,255,255,0.3);
}

.search-submit {
    background: var(--amber);
    color: var(--navy);
    border: none;
    padding: 0.75rem 1.25rem;
    font-family: var(--font-mono);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.search-submit:hover {
    background: #e08e00;
}

/* Filter pills */
.search-filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.cat-pill {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.6);
    border-radius: 999px;
    padding: 0.35rem 1rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.2s;
}

.cat-pill:hover {
    border-color: var(--amber);
    color: var(--amber);
}

.cat-pill.active {
    background: var(--amber);
    border-color: var(--amber);
    color: var(--navy);
    font-weight: 600;
}

/* Results grid */
.search-results-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
}

/* Result card */
.search-result-card {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    background: var(--white, #fff);
    border-radius: var(--radius);
    overflow: hidden;
    padding: 1.25rem;
    transition: transform 0.2s, box-shadow 0.2s;
    position: relative;
}

.search-result-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0,0,0,0.12);
}

/* Hidden state for JS filter */
.search-result-card.is-hidden {
    display: none;
}

/* Thumbnail */
.result-thumb {
    flex-shrink: 0;
    width: 120px;
    height: 90px;
    border-radius: calc(var(--radius) - 2px);
    overflow: hidden;
    display: block;
}

.result-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.result-thumb-placeholder {
    width: 100%;
    height: 100%;
    background: rgba(11,25,41,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

/* Result body */
.result-body {
    flex: 1;
    min-width: 0; /* prevents flex overflow */
    position: relative;
    padding-right: 2rem; /* space for arrow */
}

.result-meta-top {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 0.4rem;
}

.result-read-time {
    color: var(--text-muted, #94a3b8);
    font-size: 0.7rem;
}

.result-title {
    font-family: var(--font-display);
    font-size: 1.05rem;
    letter-spacing: 0.03em;
    margin: 0 0 0.4rem;
    line-height: 1.3;
}

.result-title a {
    color: var(--navy);
    text-decoration: none;
}

.result-title a:hover {
    color: var(--amber);
}

.result-excerpt {
    font-size: 0.85rem;
    color: rgba(11,25,41,0.6);
    line-height: 1.65;
    margin: 0 0 0.6rem;

    /* Clamp to 2 lines */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.result-meta-bottom {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.72rem;
}

.result-meta-sep {
    color: var(--text-muted, #94a3b8);
}

.result-arrow {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    color: var(--amber);
    font-size: 1.1rem;
    opacity: 0;
    transition: opacity 0.2s, right 0.2s;
}

.search-result-card:hover .result-arrow {
    opacity: 1;
    right: 0.25rem;
}

/* No results */
.search-no-results {
    text-align: center;
    padding: 4rem 1rem;
}

.no-results-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.search-no-results h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
}

.search-no-results p {
    color: rgba(11,25,41,0.6);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
}

.no-results-cats {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.tag-pill {
    background: rgba(11,25,41,0.06);
    border: 1px solid rgba(11,25,41,0.12);
    color: var(--navy);
    border-radius: 999px;
    padding: 0.35rem 1rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s;
}

.tag-pill:hover {
    background: var(--amber);
    border-color: var(--amber);
    color: var(--navy);
}

/* Responsive */
@media ( max-width: 600px ) {
    .search-result-card {
        flex-direction: column;
    }

    .result-thumb {
        width: 100%;
        height: 160px;
    }

    .result-body {
        padding-right: 0;
    }

    .result-arrow {
        display: none;
    }
}
/* ============================================================
   404 PAGE
   ============================================================ */

.error404-hero {
    background: var(--navy);
    padding: 4rem 0 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.error404-heading {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 6vw, 4rem);
    color: var(--white);
    letter-spacing: 0.04em;
    margin: 0.5rem 0 1rem;
}

.error404-sub {
    color: rgba(255,255,255,0.55);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 560px;
    margin: 0 0 2rem;
}

.error404-actions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.error404-search {
    flex: 1;
    min-width: 260px;
    max-width: 420px;
}

/* Featured card */
.error404-featured-card {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    overflow: hidden;
}

.error404-featured-thumb {
    flex-shrink: 0;
    width: 340px;
    display: block;
    overflow: hidden;
}

.error404-featured-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s;
}

.error404-featured-card:hover .error404-featured-thumb img {
    transform: scale(1.03);
}

.error404-featured-body {
    padding: 2rem;
    flex: 1;
}

.error404-featured-title {
    font-family: var(--font-display);
    font-size: clamp(1.3rem, 2.5vw, 1.8rem);
    letter-spacing: 0.04em;
    margin: 0.75rem 0 0.75rem;
    line-height: 1.25;
}

.error404-featured-title a {
    color: var(--white);
    text-decoration: none;
}

.error404-featured-title a:hover {
    color: var(--amber);
}

.error404-featured-excerpt {
    color: rgba(255,255,255,0.55);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0 0 0.75rem;
}

.error404-featured-meta {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Responsive */
@media ( max-width: 768px ) {
    .error404-featured-card {
        flex-direction: column;
    }

    .error404-featured-thumb {
        width: 100%;
        height: 200px;
    }

    .error404-featured-body {
        padding: 1.25rem;
    }

    .error404-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .error404-search {
        width: 100%;
        max-width: 100%;
    }
}
/* ============================================================
   SALES PAGE TEMPLATE
   ============================================================ */

/* Kill any default body margins on sales pages */
.sales-page {
    margin: 0;
    padding: 0;
}

/* Minimal header */
.sales-header {
    background: var(--navy);
    border-bottom: 3px solid var(--amber);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.sales-header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center; /* logo centered — no nav to balance against */
}

/* Text logo fallback — matches main header style */
.sales-logo-text {
    font-family: var(--font-display);
    font-size: 1.6rem;
    letter-spacing: 0.08em;
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
}

.sales-logo-text span {
    color: var(--amber);
}

/* Main content — full width, no constraints */
.sales-main {
    min-height: 60vh;
}

/*
 * Remove max-width constraints from Gutenberg blocks
 * so full-bleed Group blocks actually go edge to edge.
 * The .alignfull class is added by WordPress to full-width blocks.
 */
.sales-page .entry-content,
.sales-page .wp-block-group {
    max-width: none;
    padding-left: 0;
    padding-right: 0;
}

.sales-page .wp-block-group__inner-container,
.sales-page .wp-block-cover__inner-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Minimal footer */
.sales-footer {
    background: var(--navy);
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 0;
    text-align: center;
}

.sales-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sales-copyright {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.35);
    margin: 0;
    text-transform: uppercase;
}

.sales-copyright a {
    color: var(--amber);
    text-decoration: none;
}

.sales-copyright a:hover {
    text-decoration: underline;
}
/* ============================================================
   SALES PAGE CONTENT
   All classes prefixed sp- to avoid conflicts with theme styles
   ============================================================ */

/* Container */
.sp-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.sp-container--narrow {
    max-width: 760px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Eyebrow */
.sp-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 1.25rem;
}

.sp-blink {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--amber);
    animation: blink 1.4s infinite;
}

/* Section label */
.sp-label {
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 0.75rem;
}

/* Buttons */
.sp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.85rem 2rem;
    border-radius: var(--radius);
    font-family: var(--font-mono);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
}

.sp-btn--primary {
    background: var(--amber);
    color: var(--navy);
    border: 2px solid var(--amber);
}

.sp-btn--primary:hover {
    background: transparent;
    color: var(--amber);
}

.sp-btn--ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.25);
}

.sp-btn--ghost:hover {
    border-color: var(--amber);
    color: var(--amber);
}

.sp-btn--full {
    width: 100%;
    display: flex;
}

/* ── HERO ── */
.sp-hero {
    background: var(--navy);
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.sp-hero::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 65%);
    pointer-events: none;
}

.sp-headline {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--white);
    letter-spacing: 0.04em;
    line-height: 1.1;
    margin: 0 0 1.25rem;
}

.sp-headline span {
    color: var(--amber);
}

.sp-subheadline {
    color: rgba(255,255,255,0.6);
    font-size: 1.05rem;
    line-height: 1.75;
    max-width: 580px;
    margin: 0 auto 2.5rem;
}

.sp-hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ── TRUST BAR ── */
.sp-trust {
    background: rgba(245,158,11,0.08);
    border-top: 1px solid rgba(245,158,11,0.2);
    border-bottom: 1px solid rgba(245,158,11,0.2);
    padding: 1.25rem 0;
}

.sp-trust-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.sp-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}

.sp-trust-icon {
    font-size: 1rem;
}

/* ── SECTIONS ── */
.sp-section {
    padding: 5rem 0;
}

.sp-problem {
    background: #f8f7f4;
}

.sp-problem h2,
.sp-solution h2,
.sp-features h2,
.sp-faq h2,
.sp-final-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--navy);
    letter-spacing: 0.04em;
    margin: 0 0 1.25rem;
    line-height: 1.2;
}

.sp-problem h2 span,
.sp-solution h2 span,
.sp-features h2 span,
.sp-faq h2 span,
.sp-final-cta h2 span {
    color: var(--amber);
}

.sp-problem p,
.sp-solution p {
    color: rgba(11,25,41,0.65);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.sp-solution {
    background: var(--white);
}

/* ── FEATURES ── */
.sp-features {
    background: var(--navy);
}

.sp-features .sp-label {
    color: var(--amber);
}

.sp-features h2 {
    color: var(--white);
}

.sp-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.sp-feature-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    padding: 2rem 1.5rem;
    transition: border-color 0.2s;
}

.sp-feature-card:hover {
    border-color: rgba(245,158,11,0.4);
}

.sp-feature-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.sp-feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    letter-spacing: 0.05em;
    margin: 0 0 0.5rem;
}

.sp-feature-card p {
    color: rgba(255,255,255,0.5);
    font-size: 0.875rem;
    line-height: 1.65;
    margin: 0;
}

/* ── TESTIMONIAL ── */
.sp-testimonial {
    background: #f8f7f4;
}

.sp-quote {
    border-left: 4px solid var(--amber);
    padding: 2rem 2rem 2rem 2.5rem;
    background: var(--white);
    border-radius: 0 var(--radius) var(--radius) 0;
    margin: 0;
}

.sp-quote p {
    font-family: var(--font-display);
    font-size: clamp(1.1rem, 2vw, 1.4rem);
    color: var(--navy);
    line-height: 1.6;
    letter-spacing: 0.02em;
    margin: 0 0 1.25rem;
}

.sp-quote cite {
    display: flex;
    flex-direction: column;
    gap: 2px;
    font-style: normal;
}

.sp-quote cite strong {
    font-family: var(--font-mono);
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--navy);
}

.sp-quote cite span {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--text-muted);
    letter-spacing: 0.06em;
}

/* ── PRICING ── */
.sp-pricing {
    background: var(--navy);
}

.sp-pricing .sp-label,
.sp-pricing h2 {
    text-align: center;
}

.sp-pricing h2 {
    color: var(--white);
}

.sp-pricing-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(245,158,11,0.3);
    border-radius: var(--radius);
    padding: 3rem 2.5rem;
    margin-top: 2.5rem;
    position: relative;
    text-align: center;
}

.sp-pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--amber);
    color: var(--navy);
    font-family: var(--font-mono);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 0.3rem 1rem;
    border-radius: 999px;
}

.sp-pricing-name {
    font-family: var(--font-mono);
    font-size: 0.75rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
    margin-bottom: 1rem;
}

.sp-pricing-price {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.sp-price-amount {
    font-family: var(--font-display);
    font-size: 4rem;
    color: var(--white);
    line-height: 1;
    letter-spacing: 0.02em;
}

.sp-price-period {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: rgba(255,255,255,0.4);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding-bottom: 0.5rem;
}

.sp-pricing-list {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    text-align: left;
}

.sp-pricing-list li {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    line-height: 1.5;
}

.sp-pricing-list li:last-child {
    border-bottom: none;
}

.sp-pricing-guarantee {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.08em;
    color: rgba(255,255,255,0.3);
    text-transform: uppercase;
    margin: 1.25rem 0 0;
}

/* ── FAQ ── */
.sp-faq {
    background: #f8f7f4;
}

.sp-faq-list {
    margin-top: 2.5rem;
}

.sp-faq-item {
    border-bottom: 1px solid rgba(11,25,41,0.1);
}

.sp-faq-item:first-child {
    border-top: 1px solid rgba(11,25,41,0.1);
}

.sp-faq-question {
    font-family: var(--font-display);
    font-size: 1.05rem;
    color: var(--navy);
    letter-spacing: 0.03em;
    padding: 1.25rem 2rem 1.25rem 0;
    cursor: pointer;
    list-style: none;
    position: relative;
    user-select: none;
}

.sp-faq-question::-webkit-details-marker {
    display: none;
}

.sp-faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    color: var(--amber);
    font-family: var(--font-mono);
    line-height: 1;
    transition: transform 0.2s;
}

.sp-faq-item[open] .sp-faq-question::after {
    transform: translateY(-50%) rotate(45deg);
}

.sp-faq-answer {
    padding: 0 0 1.25rem;
}

.sp-faq-answer p {
    color: rgba(11,25,41,0.65);
    font-size: 0.95rem;
    line-height: 1.75;
    margin: 0;
}

/* ── FINAL CTA ── */
.sp-final-cta {
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.sp-final-cta::before {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245,158,11,0.06) 0%, transparent 65%);
    pointer-events: none;
}

.sp-final-cta h2 {
    color: var(--white);
}

.sp-final-cta p {
    color: rgba(255,255,255,0.55);
    font-size: 1rem;
    line-height: 1.75;
    max-width: 500px;
    margin: 0 auto;
}

/* ── RESPONSIVE ── */
@media ( max-width: 768px ) {
    .sp-features-grid {
        grid-template-columns: 1fr;
    }

    .sp-pricing-card {
        padding: 2.5rem 1.5rem;
    }

    .sp-quote {
        padding: 1.5rem;
    }

    .sp-hero {
        padding: 3.5rem 0 3rem;
    }

    .sp-section {
        padding: 3.5rem 0;
    }
}

@media ( max-width: 480px ) {
    .sp-features-grid {
        grid-template-columns: 1fr;
    }

    .sp-trust-grid {
        gap: 1rem;
    }

    .sp-hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .sp-btn {
        width: 100%;
        justify-content: center;
    }
}
.zw-wishlist-card__image {
    aspect-ratio: unset;
    width: auto;
    max-height: 300px;
    margin: 15px auto 10px;
    border-bottom: 1px solid #f59e0b;
    padding-bottom: 15px;
}

.zw-wishlist-card__image img {
    object-fit: contain;
    width: auto;
    height: 100%;
}