/**
 * Media coverage page — home-style cards + refined scroll animations
 */

body.xelp-motion-page {
  background: #fff;
  --mc-ease: cubic-bezier(0.4, 0, 0.2, 1);
  --mc-ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --mc-duration: 0.72s;
  --mc-duration-fast: 0.4s;
  --mc-shift: 18px;
  --mc-stagger: 0.09s;
}

body.xelp-motion-page main {
  font-family: 'Inter', sans-serif;
  color: #2d2d2d;
}

/* Prevent double-fade on headings inside scroll-reveal blocks */
.xelp-motion-page .scroll-reveal-section .reveal-item [class$="-heading"],
.xelp-motion-page .scroll-reveal-section .reveal-item [class$="-subheading"],
.xelp-motion-page .scroll-reveal-section .reveal-item .mc-feature-desc,
.xelp-motion-page .scroll-reveal-section .reveal-item .mc-section-subheading,
.xelp-motion-page .scroll-reveal-section .reveal-item .careers-cta-note {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* Disable global fade-section.css heading/card rules — xelp pages use reveal-item + fade-card */
body.xelp-motion-page .fade-section [class*="-eyebrow"],
body.xelp-motion-page .fade-section [class$="-subheading"]:not(.reveal-item):not(.reveal-item *),
body.xelp-motion-page .fade-section [class$="-heading"]:not([class*="item-heading"]):not(.cta-heading):not(.reveal-item):not(.reveal-item *) {
  opacity: 1;
  transform: none;
  transition: none;
}

body.xelp-motion-page .fade-section .fade-card {
  opacity: 0;
  transform: translateY(22px);
}

/* ── Feature block scroll reveal ── */
.xelp-motion-page .scroll-reveal-section .reveal-item {
  opacity: 0;
  transition:
    opacity var(--mc-duration) var(--mc-ease-out),
    transform var(--mc-duration) var(--mc-ease-out);
  will-change: opacity, transform;
}

.xelp-motion-page .scroll-reveal-section .reveal-up {
  transform: translateY(var(--mc-shift));
}

.xelp-motion-page .scroll-reveal-section .reveal-left {
  transform: translateX(calc(var(--mc-shift) * -1.25));
}

.xelp-motion-page .scroll-reveal-section .reveal-right {
  transform: translateX(calc(var(--mc-shift) * 1.25));
}

.xelp-motion-page .scroll-reveal-section.is-visible .reveal-item {
  opacity: 1;
  transform: translate(0, 0);
}

.xelp-motion-page .scroll-reveal-section.is-visible .reveal-item[data-reveal-delay="0"] {
  transition-delay: 0s;
}

.xelp-motion-page .scroll-reveal-section.is-visible .reveal-item[data-reveal-delay="1"] {
  transition-delay: calc(var(--mc-stagger) * 2);
}

.xelp-motion-page .scroll-reveal-section.is-visible .reveal-item[data-reveal-delay="3"] {
  transition-delay: calc(var(--mc-stagger) * 6);
}

.xelp-motion-page .scroll-reveal-section.is-visible .reveal-item[data-reveal-delay="4"] {
  transition-delay: calc(var(--mc-stagger) * 8);
}

/* Reset stagger on scroll-out — replay when scrolling back */
.xelp-motion-page .scroll-reveal-section:not(.is-visible) .reveal-item,
.xelp-motion-page .fade-section:not(.is-visible) .fade-card {
  transition-delay: 0s !important;
}

/* Bidirectional scroll-out — animate back when leaving viewport */
.xelp-motion-page .scroll-reveal-section:not(.is-visible) .reveal-item {
  opacity: 0;
}

.xelp-motion-page .scroll-reveal-section:not(.is-visible) .reveal-up {
  transform: translateY(var(--mc-shift));
}

.xelp-motion-page .scroll-reveal-section:not(.is-visible) .reveal-left {
  transform: translateX(calc(var(--mc-shift) * -1.25));
}

.xelp-motion-page .scroll-reveal-section:not(.is-visible) .reveal-right {
  transform: translateX(calc(var(--mc-shift) * 1.25));
}

.xelp-motion-page .fade-section:not(.is-visible) .fade-card {
  opacity: 0;
  transform: translateY(22px);
}

.xelp-motion-page .scroll-reveal-section:not(.is-visible) .mc-feature-media {
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.06);
}

.xelp-motion-page .scroll-reveal-section:not(.is-visible) .mc-feature-image--home img {
  transform: scale(1.04);
}

.xelp-motion-page .fade-section.is-visible .careers-job-card:nth-child(1) { transition-delay: calc(var(--mc-stagger) * 2); }
.xelp-motion-page .fade-section.is-visible .careers-job-card:nth-child(2) { transition-delay: calc(var(--mc-stagger) * 4); }
.xelp-motion-page .fade-section.is-visible .careers-job-card:nth-child(3) { transition-delay: calc(var(--mc-stagger) * 6); }
.xelp-motion-page .fade-section.is-visible .careers-job-card:nth-child(4) { transition-delay: calc(var(--mc-stagger) * 8); }

.mc-feature-media {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(15, 23, 42, 0.06);
  background: #000;
  transition: box-shadow var(--mc-duration-fast) var(--mc-ease);
}

.xelp-motion-page .scroll-reveal-section.is-visible .mc-feature-media {
  box-shadow: 0 10px 36px rgba(15, 23, 42, 0.1);
}

/* ── Section shell ── */
.mc-section {
  padding: 72px 0;
}

.mc-section--compact {
  padding-top: 0;
  padding-bottom: 72px;
}

.mc-section--compact + .mc-section,
.mc-section + .mc-section--compact {
  padding-top: 0;
}

.mc-section--alt {
  background: #f8f9fa;
}

.mc-inner {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 16px;
}

/* ── Feature (video + copy) blocks ── */
.mc-feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.mc-feature-grid--reverse .mc-feature-media {
  order: 2;
}

.mc-feature-grid--reverse .mc-feature-copy {
  order: 1;
}

@media (max-width: 991px) {
  .mc-feature-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .mc-feature-grid--reverse .mc-feature-copy,
  .mc-feature-grid--reverse .mc-feature-media {
    order: unset;
  }

  .xelp-motion-page .scroll-reveal-section .reveal-left,
  .xelp-motion-page .scroll-reveal-section .reveal-right {
    transform: translateY(var(--mc-shift));
  }
}

.mc-feature-media .embed-responsive {
  margin: 0;
}

.mc-feature-heading {
  font-family: 'GCGatuzoDemo', sans-serif !important;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 500;
  line-height: 1.25;
  color: #1a1a1a;
  margin: 0 0 20px;
  letter-spacing: -0.01em;
}

.mc-feature-heading strong {
  color: #059669;
  font-family: inherit !important;
  font-weight: inherit !important;
}

.mc-feature-desc {
  font-size: 15px;
  line-height: 1.7;
  color: #6b7280;
  margin: 0;
}

/* ── News card grid (home prod-card parity) ── */
.mc-cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

@media (max-width: 768px) {
  .mc-cards-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .mc-section {
    padding: 56px 0;
  }
}

.mc-cards-grid--single {
  grid-template-columns: 1fr;
  max-width: 560px;
}

.mc-card {
  background: #fff;
  border: 1px solid #eef0f2;
  border-radius: 14px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  transition:
    box-shadow var(--mc-duration-fast) var(--mc-ease),
    transform var(--mc-duration-fast) var(--mc-ease),
    border-color var(--mc-duration-fast) var(--mc-ease);
}

.mc-card:hover {
  box-shadow: 0 14px 36px rgba(15, 23, 42, 0.08);
  border-color: rgba(5, 150, 105, 0.18);
}

.xelp-motion-page .fade-section.is-visible .mc-card:hover,
.xelp-motion-page .fade-section.is-visible .careers-job-card:hover {
  transform: translateY(-3px);
}

.mc-card-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  border-radius: 10px;
  overflow: hidden;
  background: #e5e7eb;
  margin-bottom: 18px;
}

.mc-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s var(--mc-ease-out);
}

.mc-card:hover .mc-card-image img {
  transform: scale(1.035);
}

.mc-card-title {
  font-family: 'GCGatuzoDemo', sans-serif !important;
  font-size: 17px;
  font-weight: 500;
  color: #1a1a1a;
  line-height: 1.35;
  margin: 0 0 12px;
}

.mc-card-title strong {
  font-family: inherit !important;
  font-weight: inherit !important;
}

.mc-card-meta {
  font-size: 13px;
  color: #059669;
  margin: 0 0 12px;
  font-weight: 600;
}

.mc-card-desc {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.65;
  margin: 0 0 16px;
  flex: 1;
}

.mc-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: #059669;
  text-decoration: none;
  transition: color 0.25s var(--mc-ease), gap 0.25s var(--mc-ease);
}

.mc-card-link:hover {
  color: #047857;
  gap: 9px;
  text-decoration: none;
}

.mc-card-link::after {
  content: '\2192';
  transition: transform 0.25s var(--mc-ease);
}

.mc-card-link:hover::after {
  transform: translateX(2px);
}

/* Card entrance — tighter, professional stagger */
.xelp-motion-page .fade-section .fade-card {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity var(--mc-duration) var(--mc-ease-out),
    transform var(--mc-duration) var(--mc-ease-out),
    box-shadow var(--mc-duration-fast) var(--mc-ease),
    border-color var(--mc-duration-fast) var(--mc-ease);
}

.xelp-motion-page .fade-section.is-visible .fade-card {
  opacity: 1;
  transform: translateY(0);
}

.xelp-motion-page .fade-section.is-visible .fade-card:nth-child(1) {
  transition-delay: calc(var(--mc-stagger) * 1);
}

.xelp-motion-page .fade-section.is-visible .fade-card:nth-child(2) {
  transition-delay: calc(var(--mc-stagger) * 3);
}

.xelp-motion-page .fade-section.is-visible .fade-card:nth-child(3) {
  transition-delay: calc(var(--mc-stagger) * 5);
}

.xelp-motion-page .fade-section.is-visible .fade-card:nth-child(4) {
  transition-delay: calc(var(--mc-stagger) * 7);
}

.xelp-motion-page .fade-section.is-visible .fade-card:nth-child(5) {
  transition-delay: calc(var(--mc-stagger) * 9);
}

.xelp-motion-page .fade-section.is-visible .fade-card:nth-child(6) {
  transition-delay: calc(var(--mc-stagger) * 11);
}

@media (prefers-reduced-motion: reduce) {
  .xelp-motion-page .scroll-reveal-section .reveal-item,
  .xelp-motion-page .fade-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* ── Feature image blocks (careers) — overlay reveal section by section ── */
.mc-feature-image {
  position: relative;
}

.mc-image-reveal__inner {
  position: relative;
  overflow: hidden;
  border-radius: inherit;
}

.mc-feature-image img {
  width: 100%;
  height: auto;
  display: block;
  transform: scale(1.08);
  transition: transform 0.85s var(--mc-ease-out);
}

.mc-image-reveal__overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    120deg,
    rgba(5, 150, 105, 0.55) 0%,
    rgba(6, 95, 70, 0.35) 45%,
    rgba(232, 250, 240, 0.25) 100%
  );
  transform: translateX(0);
  opacity: 1;
  transition:
    transform 0.9s var(--mc-ease-out),
    opacity 0.75s var(--mc-ease-out);
}

.xelp-motion-page .scroll-reveal-section.is-visible .mc-feature-image img {
  transform: scale(1);
}

.xelp-motion-page .scroll-reveal-section.is-visible .mc-image-reveal__overlay {
  transform: translateX(105%);
  opacity: 0;
}

.xelp-motion-page .scroll-reveal-section:not(.is-visible) .mc-feature-image img {
  transform: scale(1.08);
}

.xelp-motion-page .scroll-reveal-section:not(.is-visible) .mc-image-reveal__overlay {
  transform: translateX(0);
  opacity: 1;
  transition-delay: 0s;
}

.mc-feature-image:hover img {
  transform: scale(1.02);
}

.xelp-motion-page .scroll-reveal-section.is-visible .mc-feature-image:hover img {
  transform: scale(1.02);
}

/* ── Careers page ── */
.careers-openings-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
}

.careers-openings-header .mc-section-heading {
  font-family: 'GCGatuzoDemo', sans-serif !important;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 500;
  color: #1a1a1a;
  margin: 0 0 16px;
  line-height: 1.2;
}

.careers-openings-header .mc-section-subheading {
  font-size: 15px;
  line-height: 1.7;
  color: #6b7280;
  margin: 0;
}

.careers-openings-header .mc-section-subheading a {
  color: #059669;
  font-weight: 600;
  text-decoration: none;
}

.careers-openings-header .mc-section-subheading a:hover {
  color: #047857;
  text-decoration: underline;
}

.careers-filter-row {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 24px;
}

.careers-location-dropdown {
  min-width: 180px;
  padding: 10px 14px;
  border: 1px solid #eef0f2;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
  font-size: 14px;
  color: #374151;
  cursor: pointer;
  transition: border-color var(--mc-duration-fast) var(--mc-ease), box-shadow var(--mc-duration-fast) var(--mc-ease);
}

.careers-location-dropdown:focus {
  outline: none;
  border-color: rgba(5, 150, 105, 0.35);
  box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.12);
}

.careers-category-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #059669;
  margin: 0 0 16px;
}

.careers-jobs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
  align-items: stretch;
}

.careers-job-card {
  height: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
}

.careers-job-card .mc-card-desc {
  flex: 1 1 auto;
  margin-bottom: 0;
}

.careers-job-card .mc-card-title {
  color: #059669;
}

.careers-job-card .mc-card-meta {
  color: #374151;
  font-weight: 500;
}

.careers-job-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding-top: 16px;
  font-size: 13px;
  font-weight: 600;
  color: #059669;
  text-decoration: none;
  transition: color 0.25s var(--mc-ease), gap 0.25s var(--mc-ease);
}

.careers-job-link:hover {
  color: #047857;
  gap: 11px;
}

.careers-job-link i {
  font-size: 12px;
}

.careers-empty-note,
.careers-cta-note {
  text-align: center;
  font-size: 15px;
  line-height: 1.65;
  color: #6b7280;
  margin: 0;
}

.careers-cta-note a {
  color: #059669;
  font-weight: 600;
  text-decoration: none;
}

.careers-cta-note a:hover {
  color: #047857;
  text-decoration: underline;
}

.careers-job-card.is-hidden {
  display: none;
}

/* ── Contact page ── */
.contact-page-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.contact-page-intro .mc-section-heading {
  font-family: 'GCGatuzoDemo', sans-serif !important;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 500;
  color: #1a1a1a;
  margin: 0 0 16px;
  line-height: 1.2;
}

.contact-page-intro .mc-section-subheading {
  font-size: 15px;
  line-height: 1.7;
  color: #6b7280;
  margin: 0;
}

.contact-cards-grid {
  display: grid;
  gap: 16px;
}

.contact-cards-grid--offices {
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
}

.contact-cards-grid--methods {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  max-width: 640px;
  margin: 0 auto;
}

.contact-cards-grid--social {
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  max-width: 720px;
  margin: 0 auto;
}

.contact-card {
  min-height: 100%;
  text-decoration: none;
  color: inherit;
}

.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: rgba(5, 150, 105, 0.08);
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 20px;
  transition: background var(--mc-duration-fast) var(--mc-ease), color var(--mc-duration-fast) var(--mc-ease);
}

.contact-card-icon .icon {
  font-size: 22px;
  line-height: 1;
}

.contact-card-icon--social {
  font-size: 18px;
}

.contact-office-card .mc-card-title {
  color: #059669;
}

.contact-card-line {
  font-size: 14px;
  line-height: 1.65;
  color: #6b7280;
  margin: 0 0 4px;
}

.contact-card-line:last-child {
  margin-bottom: 0;
}

.contact-card-value {
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.contact-card-value a {
  color: #059669;
  text-decoration: none;
  transition: color 0.25s var(--mc-ease);
}

.contact-card-value a:hover {
  color: #047857;
  text-decoration: underline;
}

.contact-social-card {
  align-items: center;
  text-align: center;
}

.contact-social-label {
  font-family: 'GCGatuzoDemo', sans-serif !important;
  font-size: 16px;
  font-weight: 500;
  color: #1a1a1a;
}

.contact-social-card:hover .contact-card-icon {
  background: rgba(5, 150, 105, 0.14);
  color: #047857;
}

.contact-social-card:hover .contact-social-label {
  color: #059669;
}

.xelp-motion-page .fade-section.is-visible .contact-card:nth-child(1) { transition-delay: calc(var(--mc-stagger) * 2); }
.xelp-motion-page .fade-section.is-visible .contact-card:nth-child(2) { transition-delay: calc(var(--mc-stagger) * 4); }
.xelp-motion-page .fade-section.is-visible .contact-card:nth-child(3) { transition-delay: calc(var(--mc-stagger) * 6); }
.xelp-motion-page .fade-section.is-visible .contact-card:nth-child(4) { transition-delay: calc(var(--mc-stagger) * 8); }
.xelp-motion-page .fade-section.is-visible .contact-card:nth-child(5) { transition-delay: calc(var(--mc-stagger) * 10); }

@media (max-width: 768px) {
  .contact-cards-grid--offices,
  .contact-cards-grid--methods,
  .contact-cards-grid--social {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
}

/* ── Shared section tones + home-style overlays (careers, media coverage, etc.) ── */
body.xelp-motion-page .bg-gray {
  background-color: #ffffff;
}

body.xelp-motion-page main {
  display: block;
}

.xelp-motion-page .mc-section {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.xelp-motion-page .mc-section--tone-white {
  background: #ffffff;
}

.xelp-motion-page .mc-section--tone-gray,
.xelp-motion-page .mc-section--tone-surface {
  background: #f9f9f9;
}

.xelp-motion-page .mc-section--tone-mint {
  background: linear-gradient(135deg, #ffffff 0%, #f3faf6 45%, #dcf0e6 100%);
}

.xelp-motion-page .mc-section--tone-soft {
  background: #f8f9fa;
}

.xelp-motion-page .mc-section--tone-accent {
  background: #e6fdf2;
}

.xelp-motion-page .mc-inner {
  position: relative;
  z-index: 1;
}

.xelp-motion-page .xelp-section-overlays {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.xelp-motion-page .xelp-section-overlay {
  position: absolute;
  pointer-events: none;
  transition: opacity 0.85s var(--mc-ease-out), transform 0.85s var(--mc-ease-out);
}

.xelp-motion-page .xelp-section-overlay--left,
.xelp-motion-page .xelp-section-overlay--right {
  top: 0;
  bottom: 0;
  height: 100%;
  width: 42%;
  max-width: 560px;
  background-repeat: no-repeat;
  background-size: auto 88%;
  filter: invert(1) sepia(1) saturate(5.5) hue-rotate(118deg) brightness(0.72) contrast(1.75)
    drop-shadow(0 0 0.35px #059669) drop-shadow(0 0 0.7px #059669);
  mix-blend-mode: multiply;
  opacity: 0.78;
}

.xelp-motion-page .xelp-section-overlay--left {
  left: -4%;
  background-position: left center;
}

.xelp-motion-page .xelp-section-overlay--right {
  right: -4%;
  background-position: right center;
}

.xelp-motion-page .xelp-section-overlay--center {
  left: 50%;
  top: 50%;
  width: min(120%, 1440px);
  height: 100%;
  max-height: 380px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 108% auto;
  filter: invert(1) sepia(1) saturate(7) hue-rotate(118deg) brightness(0.7) contrast(2.4)
    drop-shadow(0 0 0.35px #059669);
  mix-blend-mode: multiply;
  transform: translate(-50%, -50%);
  opacity: 0.55;
}

.xelp-motion-page .xelp-section-overlay--header {
  left: -4%;
  right: -4%;
  top: 8px;
  height: 240px;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 100% auto;
  opacity: 0.55;
  filter: none;
  mix-blend-mode: normal;
}

.xelp-motion-page .xelp-section-overlay--watermark {
  right: -8%;
  bottom: -12%;
  width: 72%;
  height: 85%;
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: contain;
  opacity: 0.42;
  filter: none;
  mix-blend-mode: normal;
}

.xelp-motion-page .xelp-section-overlay--cap {
  left: -6%;
  top: 50%;
  width: clamp(260px, 42vw, 404px);
  height: clamp(300px, 50vw, 535px);
  transform: translateY(-52%);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  opacity: 0.45;
  filter: none;
  mix-blend-mode: normal;
}

.xelp-motion-page .xelp-section-overlay--wave-left,
.xelp-motion-page .xelp-section-overlay--wave-right {
  top: 0;
  bottom: 0;
  width: 34%;
  max-width: 420px;
  background-repeat: no-repeat;
  background-size: 120% auto;
  background-position: center;
  filter: invert(1) brightness(1.05) contrast(0.85);
  mix-blend-mode: multiply;
  opacity: 0.38;
}

.xelp-motion-page .xelp-section-overlay--wave-left {
  left: -6%;
  mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, transparent 88%);
  -webkit-mask-image: linear-gradient(to right, rgba(0, 0, 0, 0.75) 0%, transparent 88%);
}

.xelp-motion-page .xelp-section-overlay--wave-right {
  right: -6%;
  mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.75) 0%, transparent 88%);
  -webkit-mask-image: linear-gradient(to left, rgba(0, 0, 0, 0.75) 0%, transparent 88%);
}

.xelp-motion-page .fade-section.is-visible .xelp-section-overlay--left,
.xelp-motion-page .fade-section.is-visible .xelp-section-overlay--right,
.xelp-motion-page .scroll-reveal-section.is-visible .xelp-section-overlay--left,
.xelp-motion-page .scroll-reveal-section.is-visible .xelp-section-overlay--right {
  opacity: 0.82;
}

.xelp-motion-page .fade-section.is-visible .xelp-section-overlay--center,
.xelp-motion-page .scroll-reveal-section.is-visible .xelp-section-overlay--center {
  opacity: 0.72;
}

.xelp-motion-page .fade-section.is-visible .xelp-section-overlay--header,
.xelp-motion-page .scroll-reveal-section.is-visible .xelp-section-overlay--header {
  opacity: 0.62;
}

.xelp-motion-page .fade-section.is-visible .xelp-section-overlay--watermark,
.xelp-motion-page .scroll-reveal-section.is-visible .xelp-section-overlay--watermark {
  opacity: 0.48;
}

.xelp-motion-page .fade-section.is-visible .xelp-section-overlay--cap,
.xelp-motion-page .scroll-reveal-section.is-visible .xelp-section-overlay--cap {
  opacity: 0.52;
}

.xelp-motion-page .mc-section--tone-gray .mc-card,
.xelp-motion-page .mc-section--tone-surface .mc-card,
.xelp-motion-page .mc-section--tone-mint .mc-card,
.xelp-motion-page .mc-section--tone-soft .mc-card,
.xelp-motion-page .mc-section--tone-accent .mc-card {
  background: #fff;
}

/* Media coverage — strict white / gray alternation on main sections */
.media-coverage-page main .mc-section--tone-white {
  background: #ffffff !important;
}

.media-coverage-page main .mc-section--tone-gray {
  background: #f9f9f9 !important;
}

/* Media coverage — 30px headings in main content (hero slider excluded) */
body.media-coverage-page main :is(h1, h2, h3, h4, .border-heading, .mc-feature-heading, .mc-card-title) {
  font-size: 30px;
}

/* Careers — strict white / gray alternation on main sections */
.careers-page main .mc-section--tone-white {
  background: #ffffff !important;
}

.careers-page main .mc-section--tone-gray {
  background: #f9f9f9 !important;
}

.xelp-motion-page .mc-feature-image--home .mc-image-reveal__inner {
  box-shadow: 0 9px 25px rgba(0, 0, 0, 0.18);
  border-radius: 14px;
}

.xelp-motion-page .mc-feature-image--home img {
  transform: scale(1.04);
}

.xelp-motion-page .scroll-reveal-section.is-visible .mc-feature-image--home img {
  transform: scale(1);
}

.xelp-motion-page .mc-feature-image--home:hover img {
  transform: scale(1.02);
}

@media (max-width: 900px) {
  .xelp-motion-page .xelp-section-overlay--left,
  .xelp-motion-page .xelp-section-overlay--right {
    width: 48%;
    max-width: 500px;
    opacity: 0.62;
  }

  .xelp-motion-page .xelp-section-overlay--center {
    width: 130%;
    max-height: 280px;
    opacity: 0.45;
  }

  .xelp-motion-page .xelp-section-overlay--watermark {
    width: 90%;
    opacity: 0.28;
  }

  .xelp-motion-page .xelp-section-overlay--cap {
    width: 72%;
    height: 320px;
    left: -12%;
    opacity: 0.32;
  }
}