/* ── Reset & Base ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, 'Segoe UI', Roboto, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #374151;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Variables ──────────────────────────────────────────────────── */
:root {
  --navy:        #1B3A6B;
  --navy-dark:   #122849;
  --navy-light:  #2C5282;
  --amber:       #f59e0b;
  --amber-dark:  #d97706;
  --blue:        #2563eb;
  --blue-light:  #eff6ff;
  --gray-50:     #f9fafb;
  --gray-100:    #f3f4f6;
  --gray-200:    #e5e7eb;
  --gray-400:    #9ca3af;
  --gray-500:    #6b7280;
  --gray-600:    #4b5563;
  --gray-700:    #374151;
  --radius-sm:   8px;
  --radius:      12px;
  --radius-lg:   20px;
  --shadow-sm:   0 1px 3px rgba(0,0,0,.08);
  --shadow:      0 4px 16px rgba(0,0,0,.10);
}

/* ── Layout ─────────────────────────────────────────────────────── */
.container {
  max-width: 1152px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 80px 0; }
.section--sm { padding: 56px 0; }
.section--gray { background: var(--gray-50); }
.section--navy { background: var(--navy); color: #fff; }

/* ── Typography ─────────────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  padding: 80px 0;
  text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 5vw, 3rem); font-weight: 700; margin-bottom: 12px; }
.page-hero p  { color: #bfdbfe; font-size: 1.1rem; max-width: 560px; margin: 0 auto; }

h2.section-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.section-sub {
  color: var(--gray-500);
  font-size: 1.05rem;
  margin-bottom: 48px;
}
.text-center { text-align: center; }

/* ── Buttons ─────────────────────────────────────────────────────── */
.btn {
  display: inline-block;
  font-weight: 600;
  border-radius: var(--radius-sm);
  padding: 14px 28px;
  font-size: 1rem;
  transition: background .2s, color .2s, border-color .2s;
  cursor: pointer;
  border: none;
  text-align: center;
}
.btn-amber {
  background: var(--amber);
  color: var(--navy);
}
.btn-amber:hover { background: var(--amber-dark); }

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

.btn-outline {
  background: transparent;
  border: 2px solid rgba(255,255,255,.5);
  color: #fff;
}
.btn-outline:hover { border-color: #fff; }

.btn-white {
  background: #fff;
  color: var(--navy);
}
.btn-white:hover { background: var(--blue-light); }

.btn-lg { padding: 16px 36px; font-size: 1.1rem; border-radius: var(--radius); }
.btn-full { width: 100%; display: block; }

/* ── Top Bar ─────────────────────────────────────────────────────── */
.topbar {
  background: var(--navy);
  color: #fff;
  font-size: .825rem;
  padding: 8px 0;
  text-align: center;
}
.topbar a { color: #bfdbfe; transition: color .15s; }
.topbar a:hover { color: #fff; }
.topbar .sep { margin: 0 12px; color: #3b5998; }

/* ── Header / Nav ────────────────────────────────────────────────── */
.site-header {
  background: #fff;
  box-shadow: 0 1px 4px rgba(0,0,0,.08);
  position: sticky;
  top: 0;
  z-index: 100;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 24px;
  max-width: 1152px;
  margin: 0 auto;
}
.site-logo { height: 40px; width: auto; }

.site-nav { display: flex; align-items: center; gap: 36px; }
.site-nav a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color .15s;
  padding-bottom: 2px;
}
.site-nav a:hover,
.site-nav a.active {
  color: var(--blue);
}
.site-nav a.active {
  border-bottom: 2px solid var(--blue);
}
.nav-cta { margin-left: 8px; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: var(--gray-700);
}
.nav-toggle svg { display: block; }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 16px;
  padding: 16px 24px 20px;
  border-top: 1px solid var(--gray-100);
  background: #fff;
}
.mobile-nav a {
  font-size: .95rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: color .15s;
}
.mobile-nav a:hover { color: var(--blue); }
.mobile-nav .btn { text-align: center; }
.mobile-nav.open { display: flex; }

@media (max-width: 768px) {
  .site-nav { display: none; }
  .nav-toggle { display: block; }
}

/* ── Hero (Home) ─────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  padding: 80px 0 96px;
}
.hero-inner {
  display: flex;
  align-items: center;
  gap: 64px;
}
.hero-content { flex: 1; }
.hero-badge {
  display: inline-block;
  background: var(--amber);
  color: var(--navy);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 999px;
  margin-bottom: 20px;
}
.hero h1 {
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
}
.hero h1 span { color: var(--amber); }
.hero-sub {
  font-size: 1.1rem;
  color: #bfdbfe;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 16px; }
.hero-note { font-size: .85rem; color: #93c5fd; }

.hero-photo-wrap {
  flex-shrink: 0;
  position: relative;
}
.hero-photo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(245,158,11,.18);
  border-radius: var(--radius-lg);
  transform: rotate(3deg);
}
.hero-photo-wrap img {
  position: relative;
  width: 280px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  object-position: top;
  aspect-ratio: 2/3;
  box-shadow: var(--shadow);
}

@media (max-width: 768px) {
  .hero-photo-wrap { display: none; }
  .hero-buttons { flex-direction: column; }
  .hero-buttons .btn { text-align: center; }
}

/* ── Appointment Cards ───────────────────────────────────────────── */
.appt-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.appt-card {
  border: 2px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: border-color .2s;
}
.appt-card:hover { border-color: var(--blue); }
.appt-card--amber:hover { border-color: var(--amber); }

.appt-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
  transition: background .2s, color .2s;
}
.appt-icon--blue { background: var(--blue-light); color: var(--blue); }
.appt-card:hover .appt-icon--blue { background: var(--blue); color: #fff; }
.appt-icon--amber { background: #fef3c7; color: var(--amber-dark); }
.appt-card--amber:hover .appt-icon--amber { background: var(--amber); color: #fff; }

.appt-card h3 { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.appt-card p  { color: var(--gray-500); line-height: 1.65; margin-bottom: 24px; }

/* ── How It Works ────────────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  text-align: center;
}
.step-num {
  width: 56px; height: 56px;
  background: var(--navy);
  color: #fff;
  font-size: 1.25rem;
  font-weight: 700;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.step h3 { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.step p  { color: var(--gray-500); font-size: .95rem; }

/* ── Services Grid ───────────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}
.service-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: box-shadow .2s;
}
.service-card:hover { box-shadow: var(--shadow); }
.service-icon {
  width: 48px; height: 48px;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.service-card h3 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.service-card p  { font-size: .9rem; color: var(--gray-500); line-height: 1.65; }

/* ── Self-Quote Banner ───────────────────────────────────────────── */
.quote-banner { text-align: center; }
.quote-banner h2 { font-size: 1.5rem; font-weight: 700; color: #fff; margin-bottom: 8px; }
.quote-banner p  { color: #bfdbfe; margin-bottom: 32px; }
.quote-buttons  { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ── Carrier Logos ───────────────────────────────────────────────── */
.carrier-section { text-align: center; }
.carrier-label {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray-400);
  margin-bottom: 20px;
}
.carrier-section img { margin: 0 auto; max-width: 720px; opacity: .65; }

.badge-row { display: flex; align-items: center; justify-content: center; gap: 0; flex-wrap: wrap; }
.award-badge { height: 220px; width: 220px; object-fit: contain; margin: 0 -10px; }

/* ── About: Agent Cards ──────────────────────────────────────────── */
.agent-list { display: flex; flex-direction: column; gap: 72px; }

.agent-card {
  display: flex;
  align-items: flex-start;
  gap: 48px;
}
.agent-card:nth-child(even) { flex-direction: row-reverse; }

.agent-photo-wrap {
  flex-shrink: 0;
  position: relative;
  width: 240px;
}
.agent-photo-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--blue-light);
  border-radius: var(--radius-lg);
  transform: rotate(2deg);
}
.agent-photo-wrap img {
  position: relative;
  width: 100%;
  border-radius: var(--radius-lg);
  object-fit: cover;
  object-position: top;
  aspect-ratio: 2/3;
  box-shadow: var(--shadow);
}

.agent-info { flex: 1; }
.agent-info h2 { font-size: 1.75rem; font-weight: 700; color: var(--navy); margin-bottom: 4px; }
.agent-creds  { color: var(--blue); font-weight: 600; margin-bottom: 4px; }
.agent-loc    { color: var(--gray-400); font-size: .875rem; margin-bottom: 20px; }
.agent-bio    { color: var(--gray-600); line-height: 1.75; margin-bottom: 16px; }

.tag-label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--gray-400);
  margin-bottom: 8px;
}
.tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px; }
.tag {
  background: var(--blue-light);
  color: var(--blue);
  font-size: .8rem;
  font-weight: 500;
  padding: 4px 12px;
  border-radius: 999px;
}

@media (max-width: 768px) {
  .agent-card,
  .agent-card:nth-child(even) { flex-direction: column; }
  .agent-photo-wrap { width: 100%; max-width: 280px; }
}

/* ── Why Section ─────────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.why-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
}
.why-card h3 { font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.why-card p  { font-size: .9rem; color: var(--gray-500); line-height: 1.65; }

/* ── Contact Page ────────────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: start;
}
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
}

.contact-info h2 { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.contact-item-icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--blue-light);
  color: var(--blue);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
}
.contact-item-label { font-size: .85rem; font-weight: 600; color: var(--navy); margin-bottom: 4px; }
.contact-item-body  { font-size: .95rem; color: var(--gray-600); line-height: 1.65; }
.contact-item-body a { color: var(--gray-600); transition: color .15s; }
.contact-item-body a:hover { color: var(--blue); }
.contact-item-note  { font-size: .8rem; color: var(--gray-400); margin-top: 2px; }

.booking-callout {
  background: #fffbeb;
  border: 1px solid #fde68a;
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-top: 32px;
}
.booking-callout h3 { font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.booking-callout p  { font-size: .9rem; color: var(--gray-600); margin-bottom: 16px; }

/* ── Form ────────────────────────────────────────────────────────── */
.form-section h2 { font-size: 1.5rem; font-weight: 700; color: var(--navy); margin-bottom: 24px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

.field { margin-bottom: 16px; }
.field label {
  display: block;
  font-size: .875rem;
  font-weight: 500;
  color: var(--gray-700);
  margin-bottom: 6px;
}
.field label .req { color: #ef4444; }
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 10px 14px;
  font-size: .95rem;
  font-family: inherit;
  color: var(--gray-700);
  transition: border-color .15s, box-shadow .15s;
  background: #fff;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.field textarea { resize: vertical; }

.radio-group { display: flex; gap: 20px; margin-top: 4px; }
.radio-group label { display: flex; align-items: center; gap: 6px; font-weight: 400; cursor: pointer; }
.radio-group input[type="radio"] { accent-color: var(--blue); }

.checkbox-row { display: flex; align-items: flex-start; gap: 10px; margin-top: 4px; }
.checkbox-row input[type="checkbox"] { margin-top: 3px; flex-shrink: 0; accent-color: var(--blue); }
.checkbox-row span { font-size: .8rem; color: var(--gray-500); line-height: 1.6; }
.checkbox-row a { color: var(--blue); text-decoration: underline; }

.form-success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: var(--radius-lg);
  padding: 40px;
  text-align: center;
  display: none;
}
.form-success.visible { display: block; }
.form-success .check-circle {
  width: 52px; height: 52px;
  background: #dcfce7;
  color: #16a34a;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
}
.form-success h3 { font-weight: 700; color: #15803d; font-size: 1.25rem; margin-bottom: 8px; }
.form-success p  { color: #166534; }

/* ── Legal Pages ─────────────────────────────────────────────────── */
.legal-body { max-width: 720px; margin: 0 auto; }
.legal-body p { color: var(--gray-600); line-height: 1.8; margin-bottom: 12px; font-size: .95rem; }
.legal-body ul { list-style: disc; padding-left: 24px; margin-bottom: 12px; }
.legal-body ul li { color: var(--gray-600); line-height: 1.8; font-size: .95rem; margin-bottom: 4px; }
.legal-body a { color: var(--blue); text-decoration: underline; }
.legal-section { margin-bottom: 40px; }
.legal-section h2 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin-bottom: 12px; }
.legal-address {
  background: var(--gray-50);
  border-radius: var(--radius);
  padding: 20px 24px;
  margin-top: 12px;
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.8;
}
.legal-address strong { color: var(--navy); }

/* ── Footer ──────────────────────────────────────────────────────── */
.site-footer { background: var(--navy); color: #fff; margin-top: auto; }

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 48px;
  padding: 56px 0;
}
@media (max-width: 768px) {
  .footer-main { grid-template-columns: 1fr; gap: 32px; }
}

.footer-logo { height: 48px; width: auto; margin-bottom: 16px; }
.footer-tagline { font-size: .875rem; color: #bfdbfe; line-height: 1.65; }

.footer-col h3 {
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: #93c5fd;
  margin-bottom: 16px;
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col a { font-size: .875rem; color: #bfdbfe; transition: color .15s; }
.footer-col a:hover { color: #fff; }
.footer-col address {
  font-style: normal;
  font-size: .875rem;
  color: #bfdbfe;
  line-height: 1.75;
  margin-top: 8px;
}

.footer-bottom {
  border-top: 1px solid #1e3a6e;
  padding: 20px 0;
  font-size: .75rem;
  color: #60a5fa;
}
.footer-disclaimer { line-height: 1.7; margin-bottom: 12px; }
.footer-disclaimer a { color: #93c5fd; text-decoration: underline; }
.footer-disclaimer a:hover { color: #fff; }
.footer-meta {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.footer-links { display: flex; gap: 20px; }
.footer-links a { color: #60a5fa; text-decoration: underline; }
.footer-links a:hover { color: #fff; }

/* ── Utility ─────────────────────────────────────────────────────── */
.mt-8  { margin-top: 32px; }
.mt-10 { margin-top: 40px; }
.mb-6  { margin-bottom: 24px; }

/* ── Blog Index ──────────────────────────────────────────────────── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}
.blog-card {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: box-shadow .2s, border-color .2s;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}
.blog-card:hover { box-shadow: var(--shadow); border-color: var(--blue); }
.blog-card-img { width: 100%; height: 180px; object-fit: cover; }
.blog-card-img-placeholder {
  width: 100%; height: 180px;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  display: flex; align-items: center; justify-content: center;
}
.blog-card-img-placeholder span { color: rgba(255,255,255,.2); font-size: 3rem; }
.blog-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-card-meta { font-size: .8rem; color: var(--gray-400); margin-bottom: 8px; }
.blog-card-title { font-size: 1.05rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; line-height: 1.4; }
.blog-card-excerpt { font-size: .9rem; color: var(--gray-500); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.blog-read-more { font-size: .875rem; font-weight: 600; color: var(--blue); }

/* ── Blog Post Page ──────────────────────────────────────────────── */
.post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 56px;
  align-items: start;
}
@media (max-width: 900px) {
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { display: none; }
}

.post-breadcrumb { font-size: .85rem; color: var(--gray-400); margin-bottom: 24px; }
.post-breadcrumb a { color: var(--gray-500); }
.post-breadcrumb a:hover { color: var(--blue); }
.post-breadcrumb span { margin: 0 6px; }

.post-category {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 4px 12px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.post-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: 14px;
}
.post-meta {
  font-size: .875rem;
  color: var(--gray-400);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-bottom: 32px;
}
.post-meta-author { font-weight: 600; color: var(--gray-600); }
.post-hero-img {
  width: 100%;
  border-radius: var(--radius-lg);
  margin-bottom: 36px;
  max-height: 420px;
  object-fit: cover;
}

.post-body { font-size: 1.05rem; line-height: 1.8; color: var(--gray-700); }
.post-body h2 { font-size: 1.4rem; font-weight: 700; color: var(--navy); margin: 36px 0 14px; }
.post-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--navy); margin: 28px 0 10px; }
.post-body p  { margin-bottom: 20px; }
.post-body a  { color: var(--blue); text-decoration: underline; }
.post-body a:hover { color: var(--navy); }
.post-body ul, .post-body ol { padding-left: 24px; margin-bottom: 20px; }
.post-body li { margin-bottom: 8px; }
.post-body img { max-width: 100%; border-radius: var(--radius); margin: 24px 0; }
.post-body strong { color: var(--navy); }
.post-body blockquote {
  border-left: 4px solid var(--amber);
  padding: 16px 24px;
  margin: 28px 0;
  background: #fffbeb;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-style: italic;
}

.post-cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: #fff;
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  margin-top: 48px;
}
.post-cta h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.post-cta p  { color: #bfdbfe; font-size: .95rem; margin-bottom: 20px; }

.post-sidebar-card {
  background: var(--gray-50);
  border-radius: var(--radius-lg);
  padding: 24px;
  margin-bottom: 24px;
  position: sticky;
  top: 88px;
}
.post-sidebar-card h4 {
  font-size: .75rem; font-weight: 700; color: var(--navy);
  margin-bottom: 14px; text-transform: uppercase; letter-spacing: .08em;
}
.sidebar-agent-photo {
  width: 68px; height: 68px;
  border-radius: 50%; object-fit: cover; object-position: top;
  margin-bottom: 10px;
}
.sidebar-agent-name  { font-weight: 700; color: var(--navy); font-size: .95rem; }
.sidebar-agent-title { font-size: .8rem; color: var(--gray-500); margin-bottom: 14px; }
