/* ── Blog / Insights page ─────────────────────────────────────────── */

/* Full-width hero flush against the header */
.uae-blog-page .uae-blog-hero {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: calc(-1 * var(--sp-12, 48px));
  margin-bottom: 40px;
  background: linear-gradient(135deg, #081d33 0%, #17395d 100%) !important;
  padding: 8px 0 58px !important;
  text-align: center;
}

/* ── Breadcrumbs wrapper — aligned to content column ── */
.uae-blog-hero__crumbs {
  max-width: 1160px;
  margin: 0 auto 20px;
  padding: 0 clamp(16px, 4vw, 32px);
  text-align: left;
  box-sizing: border-box;
}

/* ── Base breadcrumb component ── */
.site-breadcrumb { display: block; }

.site-breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
}

.site-breadcrumb__item {
  display: flex;
  align-items: center;
  font-size: .75rem;
  font-weight: 500;
  
  line-height: 1;
}

.site-breadcrumb__item a {
  text-decoration: none;
  transition: opacity .15s;
}
.site-breadcrumb__item a:hover { opacity: 1; text-decoration: underline; }

/* Separator */
.site-breadcrumb__item--sep {
  margin: 0 7px;
  font-size: .68rem;
  opacity: .5;
}

.site-breadcrumb__item--current { font-weight: 600; }

/* ── Dark-background variant (hero) ── */
.site-breadcrumb--light .site-breadcrumb__item a {
  color: rgba(255, 255, 255, .6);
}
.site-breadcrumb--light .site-breadcrumb__item a:hover {
  color: #fff;
  opacity: 1;
}
.site-breadcrumb--light .site-breadcrumb__item--sep {
  color: rgba(255, 255, 255, .4);
}
.site-breadcrumb--light .site-breadcrumb__item--current {
  color: rgba(255, 255, 255, .9);
}

/* ── Centered hero content ── */
.uae-blog-page .uae-blog-hero__inner {
  max-width: 720px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}

/* Color overrides for hero text */
.uae-blog-page .uae-blog-hero,
.uae-blog-page .uae-blog-hero * { color: #fff !important; }
.uae-blog-page .uae-blog-hero__title {
  color: #fff !important;
  font-size: clamp(1.8rem, 3.8vw, 2.7rem) !important;
  line-height: 1.15 !important;
  text-shadow: 0 2px 14px rgba(0,0,0,.28) !important;
}
.uae-blog-page .uae-blog-hero__sub {
  color: rgba(255,255,255,.9) !important;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.uae-blog-page .uae-eyebrow { color: rgba(255,255,255,.65) !important; }

/* Card text colors */
.uae-blog-featured__title a,
.uae-blog-card__title a { color: #0a2540 !important; }
.uae-blog-featured__excerpt,
.uae-blog-card__excerpt,
.uae-blog-card__date,
.uae-blog-card__read { color: #51657d !important; }
