/* Rich content imagery — blog lead art, location banners, shared accents */

.content-lead-media,
.content-page-banner figure {
  margin: 0 0 1.75rem;
  border-radius: 1.15rem;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 18px 48px rgba(15, 23, 42, 0.1);
  background: #0f172a;
}

.content-lead-media img,
.content-page-banner img {
  display: block;
  width: 100%;
  height: auto;
  max-height: min(52vh, 520px);
  object-fit: cover;
  object-position: center;
}

.content-page-banner {
  padding: 0 0 1rem;
}

.content-page-banner .container figure {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .content-lead-media img,
  .content-page-banner img {
    max-height: 42vh;
  }
}

/* Article body pull-quote style visual breaks */
.content-mid-visual {
  margin: 2.5rem auto;
  max-width: 100%;
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
}

.content-mid-visual img {
  width: 100%;
  display: block;
  max-height: 380px;
  object-fit: cover;
}
