:root {
  --bg: #e7ecf1;
  --panel: #ffffff;
  --text: #10243c;
}
* {
  box-sizing: border-box;
}
html,
body {
  margin: 0;
  padding: 0;
  background: linear-gradient(180deg, #e9edf2, #dde3ea);
  font-family: Inter, Arial, sans-serif;
  color: var(--text);
}
a {
  text-decoration: none;
  color: inherit;
}
.mockup-shell {
  min-height: 100vh;
  padding: 22px;
}
.mockup-frame {
  max-width: 1660px;
  margin: 0 auto;
  background: var(--panel);
  border-radius: 26px;
  box-shadow: 0 18px 48px rgba(16, 36, 60, 0.16);
  overflow: hidden;
}
.mockup-frame img {
  display: block;
  width: 100%;
  height: auto;
}
.notice {
  max-width: 1660px;
  margin: 0 auto 14px;
  padding: 14px 18px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: 0 10px 24px rgba(16, 36, 60, 0.08);
  font-size: 14px;
  line-height: 1.5;
}
.notice strong {
  color: #c8102e;
}
@media (max-width: 900px) {
  .mockup-shell {
    padding: 12px;
  }
  .notice {
    font-size: 13px;
    padding: 12px 14px;
  }
}

/* EC-BTN-104 + EC-NAV-121: Re-assert hero / CTA text-white on buttons & links.
   Uses class~= (word match) not class*= (substring) to avoid matching hover:text-white etc. */
button[class~='text-white/90'],
a[class~='text-white/90'] {
  color: rgba(255, 255, 255, 0.9);
}
button[class~='text-white/80'],
a[class~='text-white/80'] {
  color: rgba(255, 255, 255, 0.8);
}
button[class~='text-white/70'],
a[class~='text-white/70'] {
  color: rgba(255, 255, 255, 0.7);
}
button[class~='text-white/60'],
a[class~='text-white/60'] {
  color: rgba(255, 255, 255, 0.6);
}
button[class~='text-white/50'],
a[class~='text-white/50'] {
  color: rgba(255, 255, 255, 0.5);
}
button[class~='text-white/40'],
a[class~='text-white/40'] {
  color: rgba(255, 255, 255, 0.4);
}
button[class~='text-white'],
a[class~='text-white'] {
  --tw-text-opacity: 1;
  color: rgb(255 255 255 / var(--tw-text-opacity, 1));
}

/* EC-ANIM-008b / EC-ANIM-009: carousel-only override — scroll-reveal elements animate via IO in functions.php */
.scroll-fade-up:has([aria-roledescription='carousel']),
.scroll-fade-up:has([data-wpconvert-blog-filter-bar]),
.scroll-fade-left:has([aria-roledescription='carousel']),
.scroll-fade-right:has([aria-roledescription='carousel']),
.scroll-scale-in:has([aria-roledescription='carousel']) {
  opacity: 1 !important;
  transform: none !important;
}
