/* =============================================
   BLAMBLES — BLOG STYLES
   Premium editorial design for articles
   Brand: Navy #0C2340 · Gold #C4A35A
   Fonts: Playfair Display + Inter
   ============================================= */

/* ── Reading Progress Bar ─────────────────── */
.reading-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 60%, var(--gold) 100%);
  z-index: 9999;
  transition: width 0.12s linear;
}

/* ══════════════════════════════════════════════
   BLOG ARTICLE HERO
══════════════════════════════════════════════ */
.blog-article-hero {
  background: var(--navy);
  position: relative;
  overflow: hidden;
  padding: 6.5rem 0 4.5rem;
}

.blog-article-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 15% 60%, rgba(196,163,90,0.09) 0%, transparent 55%),
    radial-gradient(ellipse at 85% 20%, rgba(196,163,90,0.05) 0%, transparent 45%),
    radial-gradient(ellipse at 60% 90%, rgba(27,58,92,0.6) 0%, transparent 50%);
  pointer-events: none;
}

.blog-article-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--gold) 20%, var(--gold-light) 50%, var(--gold) 80%, transparent 100%);
}

.blog-article-hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.article-category-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  padding: 0.35rem 1.1rem;
  border: 1px solid rgba(196,163,90,0.4);
  border-radius: 50px;
  background: rgba(196,163,90,0.08);
  margin-bottom: 1.5rem;
  backdrop-filter: blur(4px);
}

.blog-article-hero h1 {
  font-family: var(--font-serif);
  font-size: clamp(2.1rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.14;
  max-width: 880px;
  margin-bottom: 1.75rem;
  text-shadow: 0 2px 30px rgba(0,0,0,0.25);
  letter-spacing: -0.01em;
}

.blog-article-hero h1 em {
  color: var(--gold-light);
  font-style: italic;
}

.article-intro-text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 680px;
  line-height: 1.75;
  margin-bottom: 2.5rem;
}

/* Author + meta strip */
.article-meta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255,255,255,0.1);
}

.article-author-block {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.article-author-photo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 2px solid rgba(196,163,90,0.55);
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
  flex-shrink: 0;
}

.article-author-details {}
.article-author-name {
  display: block;
  font-size: 0.93rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1.25;
}
.article-author-role {
  display: block;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.1rem;
}

.article-meta-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.article-meta-tag {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  white-space: nowrap;
}
.article-meta-tag svg { flex-shrink: 0; }

.article-pdf-btn {
  display: inline-flex !important;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.87rem !important;
  padding: 0.6rem 1.4rem !important;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

/* ══════════════════════════════════════════════
   ARTICLE PAGE LAYOUT
══════════════════════════════════════════════ */
.article-page-container {
  background: var(--white);
}

.article-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 5rem 2rem 5rem;
  display: grid;
  grid-template-columns: 1fr 296px;
  gap: 4.5rem;
  align-items: start;
}

/* ══════════════════════════════════════════════
   ARTICLE BODY TYPOGRAPHY
══════════════════════════════════════════════ */
.article-body {
  min-width: 0;
  padding-left: 2.5rem;
}

.article-body .article-lead {
  font-size: 1.14rem;
  color: var(--text-dark);
  line-height: 1.82;
  font-weight: 400;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
}

/* Section IDs offset for fixed header */
.article-body section[id],
.article-body [id] {
  scroll-margin-top: 100px;
}

.article-body h2 {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.22;
  margin: 3.75rem 0 1.1rem;
  padding-top: 0.25rem;
  position: relative;
}

.article-body h2::before {
  content: '';
  position: absolute;
  left: -2.25rem;
  top: 0.15em;
  height: 1em;
  width: 3px;
  background: linear-gradient(to bottom, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 2px;
}

.article-body h3 {
  font-family: var(--font-serif);
  font-size: 1.22rem;
  font-weight: 700;
  color: var(--navy);
  margin: 2.25rem 0 0.65rem;
  line-height: 1.3;
}

.article-body p {
  font-size: 1.04rem;
  line-height: 1.86;
  color: var(--text-mid);
  margin-bottom: 1.2rem;
}
.article-body p:last-child { margin-bottom: 0; }
.article-body p strong { color: var(--text-dark); font-weight: 600; }
.article-body p em { color: var(--gold-dark); font-style: italic; }

/* Styled list */
.article-body ul {
  list-style: none;
  margin: 0.65rem 0 1.4rem;
  padding: 0;
}
.article-body ul li {
  position: relative;
  padding-left: 1.45rem;
  margin-bottom: 0.5rem;
  font-size: 1.02rem;
  line-height: 1.74;
  color: var(--text-mid);
}
.article-body ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.68em;
  width: 9px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

/* Section divider */
.article-divider {
  height: 1px;
  background: var(--border);
  margin: 0.5rem 0 0;
  border: none;
}

/* ── TAX CHANGE CARDS ─────────────────────── */
.tax-change-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.1rem;
  margin: 1.75rem 0 2rem;
}

.tax-change-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, border-color 0.2s;
}
.tax-change-card:hover {
  box-shadow: var(--shadow-md);
  border-color: rgba(196,163,90,0.3);
}

.tax-change-card-header {
  background: var(--navy);
  padding: 0.85rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.85rem;
}
.tax-change-card-icon {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 50%;
  background: rgba(196,163,90,0.15);
  border: 1px solid rgba(196,163,90,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
}
.tax-change-card-header h3 {
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0;
  line-height: 1.3;
}

.tax-change-card-body {
  padding: 1.25rem 1.5rem;
  background: var(--off-white);
}
.tax-change-card-body ul { margin: 0; }
.tax-change-card-body ul li {
  font-size: 0.94rem;
  color: var(--text-dark);
  line-height: 1.68;
  margin-bottom: 0.45rem;
}

/* ── CALLOUT BOXES ────────────────────────── */
.callout-box {
  border-left: 4px solid var(--gold);
  background: var(--off-white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
}

.callout-box-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.7rem;
}

.callout-box p {
  font-size: 0.97rem;
  color: var(--text-dark);
  line-height: 1.73;
  margin-bottom: 0.65rem;
}
.callout-box p:last-child { margin-bottom: 0; }
.callout-box ul { margin: 0.35rem 0 0; }
.callout-box ul li {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 0.4rem;
}

.callout-box--warning {
  border-left-color: #D97706;
  background: #FFFBEB;
}
.callout-box--warning .callout-box-label { color: #92400E; }

.callout-box--dark {
  background: var(--navy);
  border: none;
  border-radius: var(--radius-md);
  padding: 2rem 2rem;
}
.callout-box--dark .callout-box-label { color: var(--gold); }
.callout-box--dark p { color: rgba(255,255,255,0.82); }
.callout-box--dark ul li { color: rgba(255,255,255,0.82); }
.callout-box--dark h3 {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

/* ── PULL QUOTE ───────────────────────────── */
.pull-quote {
  padding: 1.75rem 0 1.75rem 2rem;
  border-left: 4px solid var(--gold);
  margin: 2.75rem 0;
  position: relative;
}

.pull-quote-text {
  font-family: var(--font-serif);
  font-size: clamp(1.2rem, 2.5vw, 1.55rem);
  font-style: italic;
  color: var(--navy);
  line-height: 1.48;
  margin-bottom: 0.65rem;
}

.pull-quote-attribution {
  font-size: 0.83rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── VACANCY WARNING ──────────────────────── */
.vacancy-warning {
  background: linear-gradient(135deg, #15080A 0%, #2A0F0F 100%);
  border-radius: var(--radius-lg);
  padding: 3rem 2.5rem;
  margin: 2.25rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(217,119,6,0.2);
}
.vacancy-warning::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center 40%, rgba(245,158,11,0.08) 0%, transparent 60%);
  pointer-events: none;
}

.vacancy-warning-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #F59E0B;
  margin-bottom: 0.85rem;
  position: relative;
  z-index: 1;
}

.vacancy-warning-word {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 8vw, 4.5rem);
  font-weight: 700;
  color: #F59E0B;
  line-height: 1;
  letter-spacing: 0.06em;
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.vacancy-warning-text {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.68;
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── MARKET INSIGHTS ──────────────────────── */
.market-insights-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 1.75rem 0;
}

.market-insight-item {
  display: flex;
  gap: 1.35rem;
  align-items: flex-start;
  padding: 1.4rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}
.market-insight-item:hover {
  border-color: rgba(196,163,90,0.4);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.market-insight-num {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: 50%;
  background: var(--navy);
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--gold);
  flex-shrink: 0;
}

.market-insight-body { padding-top: 0.1rem; }
.market-insight-body h4 {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}
.market-insight-body p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.72;
  margin-bottom: 0;
}
.market-insight-body ul {
  margin: 0.35rem 0 0;
}
.market-insight-body ul li {
  font-size: 0.93rem;
}

/* ── BEHAVIOURAL CHANGES ──────────────────── */
.behavioural-list {
  list-style: none;
  padding: 0;
  margin: 1.25rem 0 1.75rem;
}
.behavioural-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 0.9rem 1.25rem;
  margin-bottom: 0.55rem;
  background: var(--off-white);
  border-radius: var(--radius-sm);
  border-left: 3px solid var(--gold);
  font-size: 1.02rem;
  line-height: 1.65;
  color: var(--text-dark);
  transition: background 0.15s, border-left-color 0.15s;
}
.behavioural-list li:hover {
  background: #EFE9DF;
  border-left-color: var(--gold-dark);
}
.behavioural-list li::before {
  content: '→';
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

/* ── AUTHOR BIO CARD ──────────────────────── */
.author-bio-card {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  padding: 2.5rem;
  background: var(--off-white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  margin-top: 4.5rem;
}

.author-bio-photo {
  width: 96px;
  height: 96px;
  min-width: 96px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 3px solid var(--gold);
  box-shadow: 0 4px 24px rgba(196,163,90,0.22);
}

.author-bio-content h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.15rem;
  line-height: 1.2;
}
.author-bio-role {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--gold-dark);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.9rem;
}
.author-bio-content p {
  font-size: 0.95rem;
  color: var(--text-mid);
  line-height: 1.72;
  margin-bottom: 0.45rem;
}
.author-bio-content p:last-child { margin-bottom: 0; }

/* ══════════════════════════════════════════════
   TABLE OF CONTENTS SIDEBAR
══════════════════════════════════════════════ */
.article-toc-wrapper {
  position: sticky;
  top: 88px;
}

.article-toc {
  background: var(--off-white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  margin-bottom: 1.25rem;
}

.article-toc-header {
  background: var(--navy);
  padding: 0.95rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.article-toc-header h4 {
  font-family: var(--font-sans);
  font-size: 0.73rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin: 0;
}
.toc-progress-pct {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}

.article-toc-nav { padding: 0.6rem 0; }

.toc-link {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.52rem 1.5rem;
  font-size: 0.845rem;
  color: var(--text-mid);
  font-weight: 500;
  line-height: 1.4;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
  border-right: 3px solid transparent;
}
.toc-link:hover {
  color: var(--navy);
  background: rgba(12,35,64,0.04);
}
.toc-link.active {
  color: var(--navy);
  font-weight: 700;
  background: var(--white);
  border-right-color: var(--gold);
}

.toc-dot {
  width: 5px;
  height: 5px;
  min-width: 5px;
  border-radius: 50%;
  background: var(--border);
  transition: background 0.15s, transform 0.15s;
  flex-shrink: 0;
}
.toc-link.active .toc-dot,
.toc-link:hover .toc-dot {
  background: var(--gold);
  transform: scale(1.4);
}

.toc-pdf-section {
  padding: 1.15rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--white);
}
.toc-pdf-section p {
  font-size: 0.76rem;
  color: var(--text-light);
  line-height: 1.52;
  margin-bottom: 0.7rem;
}

.toc-contact-card {
  background: var(--navy);
  border-radius: var(--radius-md);
  padding: 1.5rem;
}
.toc-contact-card h4 {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.45rem;
  line-height: 1.25;
}
.toc-contact-card p {
  font-size: 0.83rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.62;
  margin-bottom: 1rem;
}
.toc-contact-card a {
  display: block;
  text-align: center;
  background: var(--gold);
  color: var(--white);
  font-size: 0.84rem;
  font-weight: 700;
  padding: 0.7rem 1rem;
  border-radius: var(--radius-sm);
  transition: background 0.15s, transform 0.15s;
  text-decoration: none;
}
.toc-contact-card a:hover {
  background: var(--gold-dark);
  transform: translateY(-1px);
}

/* ══════════════════════════════════════════════
   BLOG LISTING PAGE
══════════════════════════════════════════════ */
.blog-listing-section {
  padding: 5.5rem 0;
  background: var(--white);
}

.blog-listing-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

.blog-listing-header {
  margin-bottom: 3.5rem;
}

/* Featured card */
.blog-featured-card {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s, transform 0.3s;
  text-decoration: none;
  color: inherit;
}
.blog-featured-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-5px);
}

.blog-featured-card-visual {
  background: linear-gradient(150deg, var(--navy) 0%, #0e2d52 50%, var(--navy-mid) 100%);
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem;
}
.blog-featured-card-visual::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 25% 70%, rgba(196,163,90,0.14) 0%, transparent 55%),
    radial-gradient(ellipse at 80% 15%, rgba(196,163,90,0.06) 0%, transparent 40%);
  pointer-events: none;
}
.blog-featured-card-visual::after {
  content: '';
  position: absolute;
  top: -2rem;
  right: -2rem;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 1px solid rgba(196,163,90,0.08);
}

.blog-visual-year {
  position: absolute;
  top: 2rem;
  right: 2.5rem;
  font-family: var(--font-serif);
  font-size: 5rem;
  font-weight: 700;
  color: rgba(196,163,90,0.1);
  line-height: 1;
  letter-spacing: -0.02em;
  user-select: none;
  z-index: 1;
}

.blog-visual-keywords {
  position: relative;
  z-index: 2;
}
.blog-visual-keyword {
  display: block;
  font-family: var(--font-serif);
  font-weight: 700;
  color: rgba(255,255,255,0.08);
  letter-spacing: 0.04em;
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

.blog-visual-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(196,163,90,0.15);
  border: 1px solid rgba(196,163,90,0.35);
  border-radius: var(--radius-sm);
  padding: 0.5rem 0.85rem;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.blog-featured-card-content {
  padding: 3rem 3rem 3rem 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.blog-post-meta-row {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.blog-category-pill {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
  padding: 0.25rem 0.9rem;
  background: rgba(196,163,90,0.1);
  border: 1px solid rgba(196,163,90,0.25);
  border-radius: 50px;
}

.blog-post-date {
  font-size: 0.82rem;
  color: var(--text-light);
}

.blog-featured-title {
  font-family: var(--font-serif);
  font-size: clamp(1.45rem, 2.5vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.22;
  margin-bottom: 1rem;
  transition: color 0.15s;
}
.blog-featured-card:hover .blog-featured-title { color: var(--navy-mid); }

.blog-featured-excerpt {
  font-size: 0.98rem;
  color: var(--text-mid);
  line-height: 1.78;
  margin-bottom: 2rem;
}

.blog-card-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.85rem;
  padding-bottom: 1.75rem;
  border-bottom: 1px solid var(--border);
}
.blog-card-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 1.5px solid var(--border);
}
.blog-card-author-name {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
}
.blog-card-author-tag {
  display: block;
  font-size: 0.76rem;
  color: var(--text-light);
  margin-top: 0.1rem;
}

.blog-read-time {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-light);
  margin-bottom: 1.5rem;
}

.blog-card-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.blog-card-actions .btn { text-decoration: none; }

/* ══════════════════════════════════════════════
   PRINT-ONLY ELEMENTS
══════════════════════════════════════════════ */
.print-only-header,
.print-only-footer {
  display: none;
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .article-layout {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 4rem 2rem;
  }

  .article-toc-wrapper {
    position: static;
    order: -1;
    margin-bottom: 3rem;
  }

  .article-body h2::before { display: none; }
  .article-body { padding-left: 0; }

  .article-toc {
    max-width: 500px;
  }

  .blog-featured-card {
    grid-template-columns: 1fr;
  }
  .blog-featured-card-visual {
    min-height: 220px;
  }
}

@media (max-width: 768px) {
  .blog-article-hero { padding: 5rem 0 3.5rem; }

  .article-meta-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .article-meta-right {
    gap: 0.85rem;
  }

  .author-bio-card {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .vacancy-warning-word { font-size: 3.25rem; }

  .blog-featured-card-content {
    padding: 2rem 1.75rem;
  }
}

/* ══════════════════════════════════════════════
   PRINT / PDF STYLES
══════════════════════════════════════════════ */
@media print {
  /* Force colors */
  * {
    -webkit-print-color-adjust: exact !important;
    print-color-adjust: exact !important;
  }

  /* Page setup */
  @page {
    margin: 0.75in;
    size: A4 portrait;
  }

  /* Show print-only, hide screen-only elements */
  .print-only-header { display: block !important; }
  .print-only-footer { display: block !important; }

  .reading-progress-bar,
  .site-header,
  .article-toc-wrapper,
  .article-pdf-btn,
  .page-contact,
  .related-links,
  .site-footer,
  .back-to-top,
  .nav-overlay,
  .breadcrumb,
  .toc-pdf-section { display: none !important; }

  /* Body base */
  body {
    font-size: 11pt;
    line-height: 1.6;
    color: #1a2330 !important;
    background: white !important;
  }

  /* Print header */
  .print-only-header {
    border-bottom: 2pt solid #C4A35A;
    padding-bottom: 12pt;
    margin-bottom: 18pt;
  }
  .print-only-header .ph-logo {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 16pt;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #0C2340 !important;
  }
  .print-only-header .ph-sub {
    font-size: 8pt;
    letter-spacing: 0.15em;
    color: #C4A35A !important;
    text-transform: uppercase;
    display: block;
    margin-top: 2pt;
  }

  /* Article hero */
  .blog-article-hero {
    background: white !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
  }
  .blog-article-hero::before,
  .blog-article-hero::after { display: none !important; }
  .blog-article-hero-inner { padding: 0 !important; }

  .article-category-pill {
    color: #A07E38 !important;
    border-color: #A07E38 !important;
    background: white !important;
    font-size: 7pt !important;
    padding: 2pt 6pt !important;
    display: inline-block !important;
    margin-bottom: 8pt !important;
  }

  .blog-article-hero h1 {
    font-size: 20pt !important;
    color: #0C2340 !important;
    text-shadow: none !important;
    margin-bottom: 8pt !important;
  }
  .article-intro-text { display: none !important; }

  .article-meta-strip {
    border-top: 1pt solid #E2D9CC !important;
    padding-top: 8pt !important;
    margin-bottom: 0 !important;
  }
  .article-author-name { color: #0C2340 !important; font-size: 9pt !important; }
  .article-author-role { color: #666 !important; font-size: 8pt !important; }
  .article-meta-tag { color: #666 !important; font-size: 8pt !important; }
  .article-meta-right { gap: 8pt !important; }
  .article-author-photo { border-color: #C4A35A !important; width: 36pt !important; height: 36pt !important; }

  /* Page container */
  .article-page-container { padding: 0 !important; background: white !important; }

  .article-layout {
    display: block !important;
    max-width: 100% !important;
    padding: 12pt 0 0 !important;
    gap: 0 !important;
  }

  .article-body {
    width: 100% !important;
    max-width: 100% !important;
  }

  .article-body .article-lead {
    font-size: 10.5pt !important;
    border-bottom: 1pt solid #E2D9CC !important;
    padding-bottom: 10pt !important;
    margin-bottom: 10pt !important;
    color: #1a2330 !important;
  }

  .article-body h2 {
    font-size: 13pt !important;
    color: #0C2340 !important;
    margin-top: 18pt !important;
    margin-bottom: 5pt !important;
    page-break-after: avoid;
  }
  .article-body h2::before { display: none !important; }

  .article-body h3 {
    font-size: 11pt !important;
    color: #0C2340 !important;
    margin-top: 10pt !important;
    margin-bottom: 4pt !important;
    page-break-after: avoid;
  }

  .article-body p {
    font-size: 10pt !important;
    color: #333 !important;
    line-height: 1.62 !important;
    margin-bottom: 6pt !important;
  }

  .article-body ul li {
    font-size: 10pt !important;
    color: #333 !important;
    margin-bottom: 3pt !important;
    line-height: 1.55 !important;
  }

  /* Tax change cards */
  .tax-change-card {
    border: 1pt solid #E2D9CC !important;
    margin-bottom: 8pt !important;
    page-break-inside: avoid;
  }
  .tax-change-card-header { background: #0C2340 !important; padding: 5pt 10pt !important; }
  .tax-change-card-header h3 { color: #C4A35A !important; font-size: 7pt !important; }
  .tax-change-card-body { background: #F8F4EE !important; padding: 8pt 10pt !important; }
  .tax-change-card-body ul li { font-size: 9.5pt !important; }

  /* Callout boxes */
  .callout-box {
    background: #F8F4EE !important;
    border-left: 3pt solid #C4A35A !important;
    padding: 8pt 12pt !important;
    margin: 8pt 0 !important;
    page-break-inside: avoid;
  }
  .callout-box--warning { background: #FFFBEB !important; border-left-color: #D97706 !important; }
  .callout-box--dark { background: #0C2340 !important; border-radius: 4pt !important; }
  .callout-box--dark p { color: rgba(255,255,255,0.85) !important; }
  .callout-box--dark ul li { color: rgba(255,255,255,0.85) !important; }
  .callout-box p, .callout-box ul li { font-size: 9.5pt !important; }

  /* Pull quote */
  .pull-quote {
    border-left: 3pt solid #C4A35A !important;
    padding: 6pt 0 6pt 10pt !important;
    margin: 10pt 0 !important;
    page-break-inside: avoid;
  }
  .pull-quote-text { font-size: 12pt !important; color: #0C2340 !important; }
  .pull-quote-attribution { font-size: 8pt !important; color: #A07E38 !important; }

  /* Vacancy */
  .vacancy-warning {
    background: #15080A !important;
    border: 1pt solid rgba(217,119,6,0.4) !important;
    padding: 12pt !important;
    page-break-inside: avoid;
    margin: 8pt 0 !important;
  }
  .vacancy-warning-word { font-size: 24pt !important; color: #F59E0B !important; }
  .vacancy-warning-label { color: #F59E0B !important; font-size: 7pt !important; }
  .vacancy-warning-text { color: rgba(255,255,255,0.75) !important; font-size: 9pt !important; }

  /* Market insights */
  .market-insight-item {
    border: 1pt solid #E2D9CC !important;
    padding: 6pt 8pt !important;
    margin-bottom: 5pt !important;
    page-break-inside: avoid;
  }
  .market-insight-num { width: 24pt !important; height: 24pt !important; min-width: 24pt !important; font-size: 9pt !important; }
  .market-insight-body h4 { font-size: 10pt !important; color: #0C2340 !important; }
  .market-insight-body p { font-size: 9pt !important; }

  /* Behavioural */
  .behavioural-list li {
    background: #F8F4EE !important;
    border-left: 2pt solid #C4A35A !important;
    padding: 4pt 8pt !important;
    font-size: 9.5pt !important;
    margin-bottom: 3pt !important;
    page-break-inside: avoid;
  }

  /* Author bio */
  .author-bio-card {
    background: #F8F4EE !important;
    border: 1pt solid #E2D9CC !important;
    padding: 10pt !important;
    margin-top: 16pt !important;
    page-break-inside: avoid;
  }
  .author-bio-photo { border: 2pt solid #C4A35A !important; width: 55pt !important; height: 55pt !important; min-width: 55pt !important; }
  .author-bio-content h3 { color: #0C2340 !important; font-size: 12pt !important; }
  .author-bio-role { color: #A07E38 !important; font-size: 7pt !important; }
  .author-bio-content p { font-size: 9pt !important; color: #555 !important; }

  /* Divider */
  .article-divider { border-top: 1pt solid #E2D9CC !important; margin: 4pt 0 !important; }

  /* Print footer */
  .print-only-footer {
    margin-top: 20pt;
    padding-top: 10pt;
    border-top: 1pt solid #E2D9CC;
    font-size: 7pt;
    color: #666;
    line-height: 1.5;
  }

  /* General page break helpers */
  section { page-break-inside: avoid; }
  h2 + p, h3 + p { page-break-before: avoid; }
  h2, h3 { orphans: 3; widows: 3; }
}
