/* General override for tighter, centered spotlight layout */
.spotlights.style1 > section > .content > .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3em 2em;
}

/* Optional: tighter image scaling */
.spotlights.style1 > section > .image img {
  object-fit: cover;
  width: 100%;
  height: auto;
}

/* Optional: center section titles more cleanly */
section#one .inner,
section#three .inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3em 2em;
}

.image.narrow {
  max-width: 60%;
  margin: 0 auto;
  display: block;
}



.floating-flash-wrapper {
  position: fixed;
  top: 5.5rem; /* or adjust to your header height */
  left: 0;
  right: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.floating-flash {
  background-color: #d1f0e2;
  color: #1b5e20;
  border: 1px solid #a0e1bc;
  padding: 1rem 2rem;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
  pointer-events: auto;
  opacity: 1;
  transition: opacity 0.6s ease;
  margin: 0 auto;
  text-align: center;
}


.flash-success {
  background-color: #d1f0e2;
  color: #1b5e20;
  border: 1px solid #a0e1bc;
}

.flash-error {
  background-color: #ffe0e0;
  color: #b00020;
  border: 1px solid #f4aaaa;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translate(-50%, -10px); }
  to   { opacity: 1; transform: translate(-50%, 0); }
}
