/**
 * Announcement strip — thin, centered one-line banner.
 *
 * Structural only: section spacing (kept tight — this is a thin strip, not
 * a full section) and a max-width container equivalent to the mockup's own
 * `.wrap` class (html/Home.html), which doesn't exist in this theme.
 * Background color/image is handled one level up, on the paragraph wrapper.
 */
.mk3-sdc--announcement-strip {
  padding-top: clamp(0.75rem, 2vw, 1.25rem);
  padding-bottom: clamp(0.75rem, 2vw, 1.25rem);
}

.mk3-sdc--announcement-strip .mk3-sdc__inner {
  max-width: 80rem; /* 1280px, matches .mk3-header__wrap / .mk3-footer__top */
  margin: 0 auto;
  padding-left: clamp(1.25rem, 4vw, 3rem);
  padding-right: clamp(1.25rem, 4vw, 3rem);
}

@media (max-width: 768px) {
  .mk3-sdc--announcement-strip .mk3-sdc__inner {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
}
