/*
 * PropertyVisibles — Page Styles
 * Shared across all sub-pages (About, Services, Agents, Listings, Insights, Article).
 * Tokens live in tokens.css — nothing is re-declared here.
 *
 * Load order: tokens.css → components.css → pages.css
 */

/* ═══════════════════════════════════════════════
   PAGE HERO  (dark, geometric grid, orange glow)
   Used on: About, Services, Agents, Listings, Insights
   ═══════════════════════════════════════════════ */

.page-hero {
  background: #141210;
  min-height: 440px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
}

/* Geometric grid overlay */
.page-hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(230, 126, 34, .03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(230, 126, 34, .03) 1px, transparent 1px);
  background-size: 64px 64px;
  pointer-events: none;
}

/* Ambient glow — top right */
.page-hero-glow {
  position: absolute;
  right: 6%;
  top: 10%;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(230, 126, 34, .06) 0%, transparent 70%);
  animation: pv-breathe 7s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pv-breathe {
  0%, 100% { transform: scale(1); opacity: 1; }
  50%       { transform: scale(1.07); opacity: .65; }
}

/* Gradient vignette bottom — blends into page background */
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 35%, rgba(14, 12, 10, .75) 100%);
  pointer-events: none;
}

/* Content sits above overlays (z-index > hero::after) */
.page-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem 3.5rem;
}

/* Small eyebrow label with leading rule */
.page-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .9rem;
}

.page-hero-eyebrow::before {
  content: '';
  width: 18px;
  height: 1px;
  background: var(--orange);
  flex-shrink: 0;
}

/* Main headline — always light (hero is dark regardless of theme) */
h1.page-hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 2.6rem;
  font-weight: 600;
  letter-spacing: -.03em;
  line-height: 1.1;
  color: #F0EDE8;
  margin-bottom: .9rem;
  max-width: 560px;
}

.page-hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  font-weight: 300;
  color: rgba(240, 237, 232, .55);
  line-height: 1.75;
  max-width: 420px;
  margin-bottom: 2rem;
}

/* ═══════════════════════════════════════════════
   SECTION UTILITIES
   ═══════════════════════════════════════════════ */

/* Reusable max-width wrapper */
.pv-wrap {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Generic page section — horizontal rule between sections */
.pv-section {
  padding: 3.5rem 0;
  border-bottom: 1px solid var(--border);
  transition: border-color .3s;
}

.pv-section:last-child {
  border-bottom: none;
}

/* Section header row: title + optional link */
.pv-section-head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 1.8rem;
}

.pv-section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--orange-text);
  margin-bottom: .4rem;
  transition: color .3s;
}

.pv-section-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--text-primary);
  transition: color .3s;
}

.pv-section-link {
  font-size: .71rem;
  font-weight: 500;
  color: var(--orange-text);
  transition: color .2s;
}

.pv-section-link:hover { color: var(--orange-dark); }

/* ═══════════════════════════════════════════════
   TRUST / STATS BAR  (used on About)
   ═══════════════════════════════════════════════ */

.pv-trust-bar {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
  transition: background .3s, border-color .3s;
}

.pv-trust-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.pv-trust-item { text-align: center; }

.pv-trust-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.6rem;
  font-weight: 600;
  letter-spacing: -.03em;
  color: var(--text-primary);
  line-height: 1;
  transition: color .3s;
}

.pv-trust-num span { color: var(--orange); }

.pv-trust-lbl {
  font-family: 'Inter', sans-serif;
  font-size: .62rem;
  font-weight: 400;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: .3rem;
  transition: color .3s;
}

.pv-trust-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
  flex-shrink: 0;
  transition: background .3s;
}

/* ═══════════════════════════════════════════════
   ABOUT PAGE
   ═══════════════════════════════════════════════ */

.about-layout-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 2.5rem;
}

.about-story {
  font-family: 'Inter', sans-serif;
  font-size: .82rem;
  line-height: 1.85;
  color: var(--text-secondary);
  transition: color .3s;
}

.about-story p + p { margin-top: 1em; }

.about-portrait {
  border-radius: 5px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--bg-secondary);
}

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

.about-badges-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.about-badge-item {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 1.5rem;
  text-align: center;
  transition: background .3s, border-color .3s;
}

.about-badge-num {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: -.03em;
  color: var(--orange);
}

.about-badge-lbl {
  font-family: 'Inter', sans-serif;
  font-size: .65rem;
  color: var(--text-muted);
  margin-top: .35rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  transition: color .3s;
}

/* ═══════════════════════════════════════════════
   SERVICES PAGE
   ═══════════════════════════════════════════════ */

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.srv-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 5px;
  overflow: hidden;
  transition: background .3s, border-color .3s, box-shadow .25s;
}

.srv-card:hover { box-shadow: var(--shadow-hover); }

.srv-header {
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: border-color .3s;
}

.srv-icon    { font-size: 1.5rem; margin-bottom: .6rem; }
.srv-title   { font-family: 'Plus Jakarta Sans', sans-serif; font-size: 1.05rem; font-weight: 600; color: var(--text-primary); transition: color .3s; }
.srv-subtitle { font-size: .7rem; color: var(--orange-text); margin-top: .25rem; transition: color .3s; }

.srv-body    { padding: 1.5rem 2rem 2rem; }

.srv-desc {
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  transition: color .3s;
}

/* Process steps */
.process-steps { display: flex; flex-direction: column; gap: .75rem; margin-bottom: 1.5rem; }

.step { display: flex; gap: 1rem; align-items: flex-start; }

.step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--orange);
  color: #fff;
  font-size: .65rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: .1rem;
}

.step-label { font-family: 'Plus Jakarta Sans', sans-serif; font-size: .78rem; font-weight: 600; color: var(--text-primary); transition: color .3s; }
.step-desc  { font-family: 'Inter', sans-serif; font-size: .72rem; color: var(--text-muted); margin-top: .15rem; transition: color .3s; }

.srv-cta {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .55rem 1.1rem;
  border-radius: 3px;
  background: var(--orange);
  color: #fff;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .03em;
  transition: background .2s;
}

.srv-cta:hover { background: var(--orange-dark); color: #fff; }

/* ═══════════════════════════════════════════════
   AGENTS PAGE  (Konzept: 3-col grid, Foto + Flags)
   ═══════════════════════════════════════════════ */

.agents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.agent-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  transition: background .3s, border-color .3s, box-shadow .25s, transform .25s;
}

.agent-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

/* ── Foto ────────────────────────────────────── */
.agent-photo {
  aspect-ratio: 1 / 1;
  max-height: 320px;
  background: var(--bg-secondary);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background .3s;
}

/* Gradient-Overlay unten — Übergang zum Card-Body */
.agent-photo::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to top, var(--bg-card), transparent);
  transition: background .3s;
  pointer-events: none;
}

/* Foto-Placeholder-Farben */
.agent-photo.ap1 { background: linear-gradient(160deg, #c8c0b8 0%, #a89888 100%); }
.agent-photo.ap2 { background: linear-gradient(160deg, #b8c0b8 0%, #909890 100%); }
.agent-photo.ap3 { background: linear-gradient(160deg, #c0b8b0 0%, #988878 100%); }
[data-theme="dark"] .agent-photo.ap1 { background: linear-gradient(160deg, #3a3228 0%, #2a2218 100%); }
[data-theme="dark"] .agent-photo.ap2 { background: linear-gradient(160deg, #283028 0%, #182818 100%); }
[data-theme="dark"] .agent-photo.ap3 { background: linear-gradient(160deg, #322820 0%, #221810 100%); }

.agent-photo-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .5rem;
  opacity: .18;
  z-index: 1;
}
[data-theme="dark"] .agent-photo-placeholder { opacity: .12; }

.agent-photo-label {
  font-family: 'Inter', sans-serif;
  font-size: .58rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-primary);
}

/* Verfügbarkeits-Badge oben rechts */
.agent-avail {
  position: absolute;
  top: .75rem; right: .75rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: .35rem;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: .22rem .65rem;
  font-family: 'Inter', sans-serif;
  font-size: .58rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: background .3s, border-color .3s;
}

.avail-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}
.ad-green  { background: #22C55E; }
.ad-orange { background: var(--orange); }

/* Sprachen-Flags unten links */
.agent-langs {
  position: absolute;
  bottom: .85rem; left: .85rem;
  z-index: 2;
  display: flex;
  gap: .3rem;
}

.agent-lang-flag {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .72rem;
  line-height: 1;
  transition: background .3s, border-color .3s;
}

/* ── Textbereich ─────────────────────────────── */
.agent-body { padding: 1.2rem 1.3rem 1.4rem; }

.agent-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: -.02em;
  color: var(--text-primary);
  margin-bottom: .15rem;
  transition: color .3s;
}

.agent-role {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .65rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange-text);
  margin-bottom: .75rem;
  transition: color .3s;
}

.agent-bio {
  font-family: 'Inter', sans-serif;
  font-size: .76rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 1.1rem;
  transition: color .3s;
}

/* Spec-Tags / Spezialisierungen */
.agent-specialisms {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  margin-bottom: 1.1rem;
}

.agent-spec {
  font-family: 'Inter', sans-serif;
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .05em;
  padding: .22rem .6rem;
  border-radius: 20px;
  background: var(--tag-bg);
  color: var(--tag-text);
  transition: background .3s, color .3s;
}

/* ── Footer: Buttons + Listing-Count ────────── */
.agent-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: .9rem;
  border-top: 1px solid var(--border);
  transition: border-color .3s;
}

.agent-contact-btns { display: flex; gap: .5rem; }

.agent-btn {
  display: inline-flex;
  align-items: center;
  gap: .3rem;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .65rem;
  font-weight: 500;
  padding: .35rem .8rem;
  border-radius: 3px;
  cursor: pointer;
  transition: all .2s;
  border: none;
  text-decoration: none;
}

.agent-btn-primary {
  background: var(--orange);
  color: #fff;
}
.agent-btn-primary:hover { background: var(--orange-dark); color: #fff; }

.agent-btn-secondary {
  background: var(--bg-secondary);
  color: var(--text-secondary);
  border: 1px solid var(--border);
  transition: all .2s, background .3s, color .3s, border-color .3s;
}
.agent-btn-secondary:hover {
  border-color: var(--border-strong);
  color: var(--text-primary);
}

.agent-listings-count {
  font-family: 'Inter', sans-serif;
  font-size: .63rem;
  color: var(--text-muted);
  transition: color .3s;
}
.agent-listings-count strong {
  color: var(--text-primary);
  font-weight: 500;
  transition: color .3s;
}




/* ═══════════════════════════════════════════════
   AGENT DETAIL PAGE  (single-agent.php)
   ═══════════════════════════════════════════════ */

.pv-agents-page-wrap {
  padding: 2.5rem 0 4rem;
}

/* Horizontal card: Foto links | Info rechts */
.agent-profile-card {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  transition: background .3s, border-color .3s, box-shadow .25s;
}
.agent-profile-card:hover { box-shadow: var(--shadow-hover); }

/* Foto-Spalte */
.agent-profile-photo {
  position: relative;
  min-height: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: background .3s;
}

/* Placeholder-Farben (gleiche wie Listing-Cards) */
.ap-photo1 { background: linear-gradient(160deg, #c8bfb0, #9a8f82); }
.ap-photo2 { background: linear-gradient(160deg, #b0bfb8, #7a9a90); }
.ap-photo3 { background: linear-gradient(160deg, #c0b0a8, #9a8070); }
[data-theme="dark"] .ap-photo1 { background: linear-gradient(160deg, #3a3028, #2a2018); }
[data-theme="dark"] .ap-photo2 { background: linear-gradient(160deg, #283028, #182018); }
[data-theme="dark"] .ap-photo3 { background: linear-gradient(160deg, #382820, #281810); }

/* Detail-Info-Spalte */
.agent-profile-info {
  padding: 2rem 2.25rem;
}

.agent-profile-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -.025em;
  color: var(--text-primary);
  margin-bottom: .2rem;
  transition: color .3s;
}

.agent-profile-role {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .65rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange-text);
  margin-bottom: 1.1rem;
  transition: color .3s;
}

.agent-profile-bio {
  font-family: 'Inter', sans-serif;
  font-size: .79rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  transition: color .3s;
}

/* Stats-Zeile */
.agent-stats-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 1.5rem;
}

.agent-stat-val {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: -.02em;
  transition: color .3s;
}
.agent-stat-val span { color: var(--orange); }

.agent-stat-lbl {
  font-family: 'Inter', sans-serif;
  font-size: .6rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: .15rem;
  transition: color .3s;
}

/* Coverage / Region-Tags */
.agent-coverage {
  display: flex;
  gap: .4rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.agent-region-tag {
  font-family: 'Inter', sans-serif;
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .05em;
  padding: .2rem .65rem;
  border-radius: 20px;
  background: var(--tag-bg);
  color: var(--tag-text);
  transition: background .3s, color .3s;
}

/* Footer: Action-Buttons */
.agent-profile-footer {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-wrap: wrap;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
  transition: border-color .3s;
}

.agent-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  padding: .5rem 1.1rem;
  border-radius: 3px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .7rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
}

.acb-primary { background: var(--orange); color: #fff; border-color: var(--orange); }
.acb-primary:hover { background: var(--orange-dark); border-color: var(--orange-dark); color: #fff; }

.acb-secondary {
  background: var(--bg-secondary);
  color: var(--text-secondary);
  border-color: var(--border);
  transition: all .2s, background .3s, color .3s, border-color .3s;
}
.acb-secondary:hover {
  border-color: var(--border-strong);
  color: var(--text-primary);
}

/* Featured Listings Preview (alp = agent-listings-preview) */
.agent-listings-preview {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  transition: border-color .3s;
}

.alp-title {
  font-family: 'Inter', sans-serif;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: .75rem;
  transition: color .3s;
}

.alp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
}

.alp-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: .85rem;
  cursor: pointer;
  transition: all .2s, background .3s, border-color .3s;
  text-decoration: none;
  display: block;
}
.alp-card:hover { border-color: var(--orange); background: var(--orange-soft); }

.alp-name {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .72rem;
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: .25rem;
  transition: color .3s;
}

.alp-price {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .8rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: -.01em;
}

.alp-meta {
  font-family: 'Inter', sans-serif;
  font-size: .6rem;
  color: var(--text-muted);
  margin-top: .15rem;
  transition: color .3s;
}

/* ═══════════════════════════════════════════════
   BREADCRUMB  (shared across sub-pages)

   ═══════════════════════════════════════════════ */

.pv-breadcrumb {
  display: flex;
  align-items: center;
  gap: .45rem;
  font-family: 'Inter', sans-serif;
  font-size: .68rem;
  color: var(--text-muted);
  margin-bottom: 1.1rem;
  transition: color .3s;
}

.pv-breadcrumb a {
  color: var(--text-muted);
  transition: color .2s;
}
.pv-breadcrumb a:hover { color: var(--orange); }
.pv-breadcrumb span { opacity: .5; }

/* ═══════════════════════════════════════════════
   AGENTS LIGHT HERO  (concept: page-title style)
   ═══════════════════════════════════════════════ */

.pv-agents-hero {
  padding: 2rem 0 0;
  border-bottom: 1px solid var(--border);
  transition: border-color .3s;
}

.pv-agents-hero-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-bottom: 1.5rem;
}

.pv-agents-hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--orange-text);
  margin-bottom: .35rem;
  transition: color .3s;
}

.pv-agents-hero-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -.03em;
  color: var(--text-primary);
  line-height: 1.15;
  margin: 0;
  transition: color .3s;
}

.pv-agents-hero-meta {
  font-family: 'Inter', sans-serif;
  font-size: .75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: .4rem;
  white-space: nowrap;
  padding-bottom: .2rem;
  transition: color .3s;
}

.pv-agents-hero-count {
  font-weight: 500;
  color: var(--text-secondary);
  transition: color .3s;
}

.pv-agents-hero-dot {
  opacity: .4;
}

.pv-agents-hero-intro {
  font-family: 'Inter', sans-serif;
  font-size: .8rem;
  font-weight: 300;
  color: var(--text-secondary);
  line-height: 1.8;
  max-width: 680px;
  padding-bottom: 2.5rem;
  margin: 0;
  transition: color .3s;
}

/* ═══════════════════════════════════════════════
   INSIGHTS — ARCHIVE GRID

   ═══════════════════════════════════════════════ */

/* Category filter bar */
.insights-filter-bar {
  display: flex;
  gap: .5rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.insights-filter-btn {
  padding: .4rem 1rem;
  border-radius: 3px;
  border: 1px solid var(--border);
  background: var(--bg-primary);
  color: var(--text-secondary);
  font-family: 'Inter', sans-serif;
  font-size: .7rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .2s;
}

.insights-filter-btn:hover,
.insights-filter-btn.active {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

.insights-grid-full {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

/* Insights card (archive + homepage snippet share this) */
.pv-ins-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 5px;
  overflow: hidden;
  transition: background .3s, border-color .3s, box-shadow .25s;
}

.pv-ins-card:hover { box-shadow: var(--shadow-hover); }

.ins-img {
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--bg-secondary);
}

.ins-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}

.pv-ins-card:hover .ins-img img { transform: scale(1.03); }

.ins-body { padding: 1.25rem 1.5rem 1.5rem; }

.ins-date {
  font-family: 'Inter', sans-serif;
  font-size: .62rem;
  color: var(--text-muted);
  margin-bottom: .4rem;
  transition: color .3s;
}

.ins-category-tag {
  display: inline-block;
  padding: .2rem .6rem;
  background: var(--tag-bg);
  color: var(--tag-text);
  border-radius: 3px;
  font-family: 'Inter', sans-serif;
  font-size: .58rem;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: .5rem;
  transition: background .3s, color .3s;
}

.ins-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  color: var(--text-primary);
  line-height: 1.35;
  margin-bottom: .5rem;
  transition: color .3s;
}

.ins-title a { color: inherit; }
.ins-title a:hover { color: var(--orange); }

.ins-excerpt {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  color: var(--text-secondary);
  line-height: 1.75;
  transition: color .3s;
}

/* Pagination */
.pv-pagination {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
  gap: .35rem;
  flex-wrap: wrap;
}

.pv-pagination a,
.pv-pagination span {
  padding: .4rem .85rem;
  border-radius: 3px;
  border: 1px solid var(--border);
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  color: var(--text-secondary);
  background: var(--bg-primary);
  transition: all .2s;
}

.pv-pagination .current,
.pv-pagination a:hover {
  background: var(--orange);
  color: #fff;
  border-color: var(--orange);
}

/* ═══════════════════════════════════════════════
   ARTICLE — SINGLE POST
   ═══════════════════════════════════════════════ */

.article-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 4rem;
  align-items: start;
}

.article-body {
  font-family: 'Inter', sans-serif;
  font-size: .85rem;
  line-height: 1.9;
  color: var(--text-secondary);
  transition: color .3s;
}

.article-body h2 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 2rem 0 .75rem;
  letter-spacing: -.02em;
  transition: color .3s;
}

.article-body h3 {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: .95rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 1.5rem 0 .5rem;
  transition: color .3s;
}

.article-body p + p { margin-top: 1rem; }

.article-body ul,
.article-body ol {
  padding-left: 1.5rem;
  margin: .75rem 0;
}

.article-body li {
  margin-bottom: .35rem;
  line-height: 1.7;
}

/* Sticky sidebar */
.article-sidebar {
  position: sticky;
  top: 80px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.article-sidebar-box {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 1.25rem 1.5rem;
  transition: background .3s, border-color .3s;
}

.article-sidebar-box .pv-section-eyebrow { margin-bottom: .75rem; }

.related-item {
  display: block;
  padding: .6rem 0;
  border-bottom: 1px solid var(--border);
  font-family: 'Inter', sans-serif;
  font-size: .78rem;
  color: var(--text-secondary);
  transition: color .2s, border-color .3s;
  line-height: 1.45;
}

.related-item:last-child { border-bottom: none; }
.related-item:hover { color: var(--orange); }

/* Article meta bar (author + date) */
.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  transition: border-color .3s;
}

.article-meta-item {
  font-family: 'Inter', sans-serif;
  font-size: .72rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: .3rem;
  transition: color .3s;
}

/* ═══════════════════════════════════════════════
   LISTINGS PAGE
   ═══════════════════════════════════════════════ */

.pv-listings-search-strip {
  background: var(--bg-secondary);
  border-bottom: 1px solid var(--border);
  padding: 1.5rem 0;
  transition: background .3s, border-color .3s;
}

/* ═══════════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════════ */

@media (max-width: 1100px) {
  .agents-grid { grid-template-columns: repeat(2, 1fr); }
  .insights-grid-full { grid-template-columns: repeat(2, 1fr); }
  .about-layout-grid { grid-template-columns: 1fr; }
  .about-portrait { aspect-ratio: 16/9; }
  .article-layout { grid-template-columns: 1fr; }
  .article-sidebar { position: static; }
}

@media (max-width: 700px) {
  h1.page-hero-title { font-size: 1.8rem; }
  .page-hero { min-height: 320px; }

  .agents-grid,
  .services-grid,
  .insights-grid-full { grid-template-columns: 1fr; }

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

  .pv-trust-inner { gap: 1.5rem; }
  .pv-trust-divider { display: none; }
}
