/* ===========================================================================
   Seal Point Estates — Luxury Coastal Aesthetic
   Colors: Navy (#1a2744), Sand (#d4b896), Gold (#c9a96e), White
   Fonts:  Cormorant Garamond (headings) + DM Sans (body)
   =========================================================================== */

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

:root {
  --navy: #1a2744;
  --navy-light: #2a3d5c;
  --sand: #d4b896;
  --sand-light: #f5efe7;
  --gold: #c9a96e;
  --gold-light: #e0c994;
  --white: #ffffff;
  --off-white: #faf8f5;
  --gray-100: #f7f7f7;
  --gray-200: #e8e8e8;
  --gray-400: #999;
  --gray-600: #666;
  --gray-800: #333;
  --text: #2c2c2c;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --max-width: 1200px;
  --nav-height: 72px;
  --transition: 0.3s ease;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 3vw, 1.75rem); }

.container { max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }

/* --- Navigation --------------------------------------------------------- */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-height);
  background: rgba(26, 39, 68, 0.97);
  backdrop-filter: blur(10px);
  z-index: 1000;
  display: flex;
  align-items: center;
  transition: background var(--transition);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.nav-logo span { color: var(--white); font-weight: 400; }
.nav-links { display: flex; gap: 1.75rem; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Mobile menu toggle */
.nav-toggle {
  display: none;
  background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 5px; padding: 4px;
  /* Comfortable touch target without changing the icon's look */
  min-width: 44px; min-height: 44px;
  align-items: center; justify-content: center;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); transition: var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    top: var(--nav-height); left: 0; right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
    transform: translateY(-120%);
    transition: transform var(--transition);
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { font-size: 1rem; }
}

/* --- Hero --------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  overflow: hidden;
  margin-top: var(--nav-height);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('/images/listings/pool-exterior-night.jpg') center/cover no-repeat;
  opacity: 0.35;
}
.hero-content {
  position: relative;
  z-index: 1;
  padding: 2rem;
  max-width: 800px;
}
.hero h1 {
  color: var(--white);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1rem;
}
.hero .tagline {
  color: var(--sand);
  font-family: var(--font-heading);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic;
  margin-bottom: 2rem;
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}
.hero .cta-group { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* --- Buttons ------------------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.85rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); }
.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-light); }
.btn-small { padding: 0.55rem 1.25rem; font-size: 0.8rem; }

/* --- Sections ----------------------------------------------------------- */
.section {
  padding: 5rem 0;
}
.section-alt { background: var(--off-white); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy h2, .section-navy h3 { color: var(--gold); }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p {
  color: var(--gray-600);
  max-width: 600px;
  margin: 0 auto;
  font-size: 1.05rem;
}
.section-navy .section-header p { color: rgba(255,255,255,0.7); }

.page-top {
  padding-top: calc(var(--nav-height) + 3rem);
  padding-bottom: 2rem;
}

/* --- Listing Cards ------------------------------------------------------ */
.listings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 2rem;
}
.listing-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  transition: transform var(--transition), box-shadow var(--transition);
}
.listing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.listing-card-img {
  position: relative;
  height: 240px;
  background: var(--gray-200);
  overflow: hidden;
}
.listing-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.listing-card:hover .listing-card-img img { transform: scale(1.05); }
.sold-ribbon {
  position: absolute;
  top: 20px;
  right: -32px;
  width: 130px;
  background: #c0392b;
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-align: center;
  padding: 6px 0;
  transform: rotate(45deg);
  text-transform: uppercase;
  z-index: 3;
  pointer-events: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
}
.detail-sold-badge {
  display: inline-block;
  background: #c0392b;
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 0.15rem 0.7rem;
  border-radius: 4px;
  vertical-align: middle;
  margin-left: 0.6rem;
}
.listing-card-price {
  position: absolute;
  bottom: 12px; left: 12px;
  background: var(--navy);
  color: var(--gold);
  padding: 0.4rem 0.85rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 4px;
}
.listing-card-body { padding: 1.25rem; }
.listing-card-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.25rem;
}
.listing-card-address {
  color: var(--gray-600);
  font-size: 0.9rem;
  margin-bottom: 0.85rem;
}
.listing-card-features {
  display: flex;
  gap: 1.25rem;
  color: var(--gray-600);
  font-size: 0.85rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}
.listing-card-features .feature {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.listing-card-features .feature svg { width: 16px; height: 16px; fill: var(--gold); }
.listing-card-actions {
  display: flex; gap: 0.75rem;
}

/* Skeleton loading */
.skeleton {
  background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-100) 50%, var(--gray-200) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }
.skeleton-card { height: 400px; border-radius: 8px; }

/* --- Listing Detail ----------------------------------------------------- */
.detail-hero {
  margin-top: var(--nav-height);
  background: var(--navy);
  padding: 3rem 0 2rem;
}
.detail-hero h1 { color: var(--white); font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 0.5rem; }
.detail-hero .detail-price {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.detail-hero .detail-address { color: rgba(255,255,255,0.7); font-size: 1rem; }

.detail-features {
  display: flex;
  gap: 2rem;
  padding: 1.5rem 0;
  border-bottom: 1px solid var(--gray-200);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.detail-feature {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1rem;
}
.detail-feature svg { width: 22px; height: 22px; fill: var(--gold); }
.detail-feature strong { color: var(--navy); }

.detail-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 0.75rem;
  margin-bottom: 2.5rem;
}
.detail-gallery img {
  width: 100%; height: 220px;
  object-fit: cover;
  border-radius: 6px;
  cursor: pointer;
  transition: opacity var(--transition);
}
.detail-gallery img:hover { opacity: 0.85; }
.detail-gallery img:first-child {
  grid-column: 1 / -1;
  height: 400px;
}

.detail-description {
  line-height: 1.8;
  color: var(--gray-800);
  margin-bottom: 2.5rem;
  font-size: 1.02rem;
}
.detail-description p { margin-bottom: 1rem; }

.detail-cta-bar {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.5rem 0;
  border-top: 1px solid var(--gray-200);
}

/* --- Bond Calculator ---------------------------------------------------- */
.bond-calc {
  background: var(--off-white);
  border-radius: 8px;
  padding: 2rem;
  margin: 2rem 0;
}
.bond-calc h3 { margin-bottom: 1.25rem; }
.bond-form { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.bond-form .form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.bond-form label { font-size: 0.85rem; font-weight: 500; color: var(--gray-600); }
.bond-form input {
  padding: 0.65rem 0.85rem;
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color var(--transition);
}
.bond-form input:focus { outline: none; border-color: var(--gold); }
.bond-results {
  margin-top: 1.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.bond-result-item {
  text-align: center;
  padding: 1rem;
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--gray-200);
}
.bond-result-item .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--gray-600);
  margin-bottom: 0.25rem;
}
.bond-result-item .value {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}

@media (max-width: 600px) {
  .bond-form { grid-template-columns: 1fr; }
  .bond-results { grid-template-columns: 1fr; }
}

/* --- Forms -------------------------------------------------------------- */
.form { display: flex; flex-direction: column; gap: 1.25rem; max-width: 600px; }
.form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form .form-group { display: flex; flex-direction: column; gap: 0.35rem; }
.form label { font-size: 0.9rem; font-weight: 500; color: var(--gray-600); }
.form input, .form textarea, .form select {
  padding: 0.75rem 1rem;
  border: 1px solid var(--gray-200);
  border-radius: 4px;
  font-size: 1rem;
  transition: border-color var(--transition);
  background: var(--white);
}
.form input:focus, .form textarea:focus { outline: none; border-color: var(--gold); }
.form textarea { min-height: 120px; resize: vertical; }
.form-success {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 1rem;
  border-radius: 4px;
  font-weight: 500;
}
.form-error {
  background: #ffebee;
  color: #c62828;
  padding: 1rem;
  border-radius: 4px;
  font-weight: 500;
}

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

/* --- About / Area Guide content ----------------------------------------- */
.content-page { padding-top: calc(var(--nav-height) + 2rem); }
.content-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.content-two-col.reverse { direction: rtl; }
.content-two-col.reverse > * { direction: ltr; }

.content-img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--sand-light), var(--sand));
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-style: italic;
}

.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  counter-reset: step;
}
.process-step {
  position: relative;
  padding: 2rem 1.5rem 1.5rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  counter-increment: step;
}
.process-step::before {
  content: counter(step);
  position: absolute;
  top: -14px; left: 1.5rem;
  width: 32px; height: 32px;
  background: var(--gold);
  color: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}
.process-step h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.process-step p { color: var(--gray-600); font-size: 0.95rem; }

@media (max-width: 768px) {
  .content-two-col { grid-template-columns: 1fr; }
  .listings-grid { grid-template-columns: 1fr; }
}

/* --- Footer ------------------------------------------------------------- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 3.5rem 0 1.5rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer h4 {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 1.15rem;
  margin-bottom: 1rem;
}
.footer-brand p { margin-bottom: 0.5rem; font-size: 0.9rem; }
.footer-links a {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  padding: 0.25rem 0;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--gold); }
.footer-contact p {
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
}
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
}

/* --- WhatsApp FAB ------------------------------------------------------- */
.whatsapp-fab {
  position: fixed;
  bottom: 32px; right: 24px;
  width: 56px; height: 56px;
  background: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  z-index: 999;
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 24px rgba(37,211,102,0.5);
}

/* --- Modal -------------------------------------------------------------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
}
.modal-overlay.open { display: flex; }
.modal {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  max-width: 540px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.modal-close {
  position: absolute;
  top: 1rem; right: 1rem;
  background: none; border: none;
  font-size: 1.5rem;
  color: var(--gray-400);
  cursor: pointer;
  line-height: 1;
}
.modal-close:hover { color: var(--navy); }

/* --- Utilities ---------------------------------------------------------- */
.text-center { text-align: center; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }
.mb-4 { margin-bottom: 2rem; }
.mt-2 { margin-top: 1rem; }
.mt-4 { margin-top: 2rem; }

/* --- Page Transition ---------------------------------------------------- */
#app {
  opacity: 1;
  transition: opacity 0.25s ease;
}
#app.fade-out { opacity: 0; }

/* --- Last Updated Indicator --------------------------------------------- */
.last-updated {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-400);
  margin-top: 2rem;
}

/* --- Lightbox ----------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 3000;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: 4px;
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  color: white; font-size: 2rem;
  cursor: pointer;
}
.lightbox-nav {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  background: rgba(255,255,255,0.15);
  border: none; color: white;
  font-size: 2rem; padding: 0.5rem 1rem;
  cursor: pointer; border-radius: 4px;
}
.lightbox-nav:hover { background: rgba(255,255,255,0.3); }
.lightbox-prev { left: 1rem; }
.lightbox-next { right: 1rem; }

/* --- Google Map placeholder --------------------------------------------- */
.map-placeholder {
  width: 100%;
  height: 350px;
  background: var(--gray-200);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-600);
  font-style: italic;
}
.map-embed {
  width: 100%;
  height: 350px;
  border: 0;
  border-radius: 8px;
}

/* ===========================================================================
   Blog
   =========================================================================== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,.07);
  display: flex;
  flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 28px rgba(0,0,0,.12);
}

.blog-card-img {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--navy-light);
}
.blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}
.blog-card:hover .blog-card-img img {
  transform: scale(1.04);
}

.blog-card-badge {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .7rem;
  border-radius: 4px;
}

.blog-card-body {
  padding: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.blog-card-body h2 {
  font-size: 1.15rem;
  margin: .4rem 0 .75rem;
  line-height: 1.35;
}
.blog-card-body h2 a {
  color: var(--navy);
  text-decoration: none;
}
.blog-card-body h2 a:hover { color: var(--gold); }

.blog-meta {
  font-size: .78rem;
  color: var(--gray-400);
  letter-spacing: .02em;
  margin-bottom: .25rem;
}

.blog-excerpt {
  color: var(--gray-600);
  font-size: .9rem;
  line-height: 1.6;
  flex: 1;
  margin-bottom: 1.25rem;
}

/* Blog post detail */
.blog-container {
  max-width: 820px;
  margin: 0 auto;
}

.blog-hero-img {
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2.5rem;
  max-height: 520px;
}
.blog-hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-content {
  color: var(--gray-700);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}
.blog-content h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--navy);
  margin: 2rem 0 .75rem;
}
.blog-content p { margin-bottom: 1.25rem; }
.blog-content a { color: var(--gold); }
.blog-content a:hover { text-decoration: underline; }

.blog-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
  margin-bottom: 2.5rem;
}
.blog-gallery-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.blog-cta {
  background: var(--navy);
  color: var(--white);
  padding: 2rem 2.5rem;
  border-radius: 12px;
  margin-top: 2.5rem;
}
.blog-cta h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--sand);
  margin-bottom: .5rem;
}
.blog-cta p {
  color: rgba(255,255,255,.8);
  margin: 0;
}
