.fs-featured-wrap {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 16px auto; /* small gap above your incidents list */
  position: relative;
  overflow: hidden;
}

.fs-carousel {
  position: relative;
}

.fs-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 400ms ease-in-out;
  pointer-events: none;
}

.fs-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  position: relative;
}

.fs-slide-link,
.fs-slide-img {
  display: block;
  width: 100%;
  height: auto;
}

.fs-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: rgba(0,0,0,0.35);
  color: #fff;
  padding: 8px 12px;
  cursor: pointer;
  z-index: 5;
  font-size: 18px;
  line-height: 1;
  border-radius: 6px;
}

.fs-prev { left: 10px; }
.fs-next { right: 10px; }

.fs-nav:focus { outline: 2px solid #fff; outline-offset: 2px; }

.fs-dots {
  position: absolute;
  bottom: 10px;
  left: 0; right: 0;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 5;
}

.fs-dots button {
  width: 10px; height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.55);
  cursor: pointer;
}
.fs-dots button.is-active { background: #fff; }
/* Title below image */
.fs-caption {
  margin-top: 8px;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 600;
}

.fs-caption-link {
  text-decoration: none;
  color: inherit;
}

.fs-caption-link:hover,
.fs-caption-link:focus {
  text-decoration: underline;
}

/* Single-line ellipsis for long headlines */
.fs-caption-text {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Optional: keep nav buttons off the caption area a bit on small screens */
@media (max-width: 600px) {
  .fs-dots { bottom: 6px; }
}
/* Homepage-only styling for the incidents heading */
body.home .fs-incidents-head, body.front-page .fs-incidents-head, body.blog .fs-incidents-head {
  margin: 12px 0 16px;
}

body.home .fs-incidents-title, body.front-page .fs-incidents-title, body.blog .fs-incidents-title {
  margin: 0 0 6px;
  font-size: 1.25rem;          /* ~20px */
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.2;
}

body.home .fs-incidents-rule, body.front-page .fs-incidents-rule, body.blog .fs-incidents-rule {
  height: 2px;
  background: #0A2740;         /* navy-ish */
  opacity: .22;                 /* subtle */
}

/* =============== Tighten INCIDENT list spacing (homepage only) =============== */

/* Core spacing on each post in the main loop */
body.home #main-content.mh-loop article.mh-post {
  margin: 8px 0;
  padding: 8px 0;
}
body.home #main-content.mh-loop article.mh-post:first-child {
  margin-top: 0;
  padding-top: 0;
}

/* Override theme’s 20px defaults that create big gaps */
body.home #main-content.mh-loop article.mh-post .entry-header { /* theme default is 20px */ 
  margin-bottom: 8px;
}
body.home #main-content.mh-loop article.mh-post .entry-title { 
  padding-bottom: 4px; /* theme default is 10px */
}
body.home #main-content.mh-loop article.mh-post .entry-thumbnail { /* theme default is 20px */
  margin-bottom: 8px;
}
body.home #main-content.mh-loop article.mh-post .entry-content p { /* theme default is 20px */
  margin-bottom: 10px;
}

/* Meta + excerpt trims */
body.home #main-content.mh-loop .mh-meta { 
  margin: 4px 0;
}
body.home #main-content.mh-loop .mh-excerpt {
  margin: 6px 0 0;
}

/* Pagination gap below the list */
body.home #main-content .mh-loop-pagination {
  margin-top: 12px; /* theme default is 20px */
}

/* If your incidents layout outputs a .mh-posts-list wrapper, tighten those too */
body.home #main-content .mh-posts-list article.mh-post {
  margin: 8px 0;
  padding: 8px 0;
}
body.home #main-content .mh-posts-list .mh-excerpt {
  margin: 6px 0 0;
}
