/* =========================
   Tokens / Theme
   ========================= */
:root {
  --brand-purple: #703E97;
  --m-padding-x: 16px;
  --m-padding-b: 116px;
  --m-content-max: 560px;
  --Brand-Light-Purple: #F7EDFF;
  --Core-White: #fff;
  --btn-bg: #FFFFFF;
  --btn-color: #262626;
  --container-max: 1200px;
}

/* =========================
   Global base
   ========================= */
* {
  box-sizing: border-box;
}


/* Optional smooth scroll fallback for keyboard/hash navigation */
html:focus-within {
  scroll-behavior: smooth;
}

/* =========================
   HERO (DIV-only, mobile-first)
   ========================= */
.hero-new {
  position: relative;
  /* overridden by mobile/desktop blocks */
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
 /* padding: 24px var(--m-padding-x) 60px; */
  padding: 24px 24px 35px 24px;
  color: var(--Core-White);
  overflow: hidden;
  /* safe fallback */
  isolation: isolate;
  /* clean stacking for overlay */
}

/* Full-bleed video */
.hero__video-wrap {
  position: absolute;
  width: 100%;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.hero__video {
 position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: 100% !important;
    aspect-ratio: 16 / 9;
    height: 100% !important;
    transform: translate(-50%, -50%);
    object-fit: cover !important;
    object-position: top center !important;
    background: #0c0830;
    pointer-events: none !important;
}


/* Overlay for legibility */
.hero__overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.75;
  background:
    linear-gradient(270deg, rgba(112, 62, 151, 0.00) 0%, #563492 68.27%),
    radial-gradient(50% 50% at 50% 50%, #8F00FF 0%, rgba(143, 0, 255, 0.00) 100%);
}

/* Content */
.hero__content {
  position: relative;
  width: 100% !important;
  max-width: var(--m-content-max);
  text-shadow: 0 4px 16px rgba(0, 0, 0, .35);
}

.hero__title {
  margin: 0 0 16px;
  font-family: 'AwesomeSerif';
  font-size: 48px;
  font-style: italic;
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: 2.2px;
}

.hero__subtitle {
  margin: 0 0 24px;
  color: var(--Core-White);
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
}


/* Button */
.btn {
  display: flex;
  height: 48px;
  width: 100%;
  padding: 16px;
  justify-content: center;
  align-items: center;
  gap: 8px;
  align-self: stretch;
  border-radius: 4px;
  text-decoration: none;
  background: var(--btn-bg);
  color: var(--btn-color) !important;
  box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
}

.btn:hover {
  background: var(--btn-bg);
  color: var(--btn-color);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
}

/* Button Icon SVG */
.btn__icon {
  width: 18px;
  height: 18px;
  fill: none;
}

/* =========================
   Seam indicator wrapper (AFTER the hero)
   ========================= */
.seam-indicator-wrap {
  position: relative;
  height: 0;
  /* zero-height container to anchor the seam */
  z-index: 49;
  overflow: visible;

  /* Prevent the next block’s first-child margin from collapsing upward */
  border-top: 1px solid transparent;
  margin-top: -1px;
}

/* Indicator visuals */
.seam-indicator {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #f4ecff;
  border: 1px solid rgba(0, 0, 0, .06);
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  }


.seam-indicator__arrow {
  width: 20px;
  height: 20px;
  display: block;
  color: var(--brand-purple);
  transform: translateY(-1px);
}

/* =========================
   MOBILE (≤ 767.98px): fixed 391px hero
   ========================= */
@media (max-width: 767.98px) {
  .hero-new {
    height: 600px !important;
    /* min-height: 391px; */
    padding-top: 24px;
    /* padding-bottom: 85px; */
    overflow: hidden;
  }

  .hero__video-wrap {
    height: 100%;
  }

  .hero__video {
    width: 100%;
    height: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    pointer-events: none !important;
  }

  .hero__title {
    margin: 0 0 16px;
    font-family: 'AwesomeSerif';
    font-size: 44px;
    font-style: italic;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: 2.2px;
  }

   .seam-indicator {
    width: 56px;
    height: 56px;
    gap: 10px;
    border-radius: 100px;
    border: 1px solid rgba(112, 62, 151, 0.10);
    background: var(--Brand-Light-Purple, #F7EDFF);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.12);
  }

  .seam-indicator__arrow {
    width: 18px;
    height: 18px;
  }

  .hero__content {
    position: relative;
    width: 100% !important;
    max-width: var(--m-content-max);
    text-shadow: 0 4px 16px rgba(0, 0, 0, .35);
}
}

/* =========================
   TABLET (768–1279px): simple px padding
   ========================= */
@media (min-width: 768px) and (max-width: 1279.98px) {
  .hero-new {
   height: 100%;
        padding-bottom: 0;
        aspect-ratio: 16 / 9;
  }

  .hero__content {
    position: relative;
    width: 100% !important;
    padding: 72px 32px;
    text-shadow: 0 4px 16px rgba(0, 0, 0, .35);
  }

  /* Button */
  .btn {
    display: flex;
    height: 48px;
    white-space: nowrap;
    width: max-content;
    padding: 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 4px;
    text-decoration: none;
    background: var(--btn-bg);
    color: var(--btn-color) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
  }
}

/* =========================
   DESKTOP (≥1280px): simple px padding + layout
   ========================= */
@media (min-width: 1280px) {
  .hero-new {
        padding-top: 80px;
        display: flex;
        width: 100% !important;
        height: 100% !important;
        aspect-ratio: 16 / 9;
        padding-left: 150px;
        padding-right: 150px;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
        gap: 10px;
  }


  /* Button */
  .btn {
    display: flex;
    height: 48px;
    white-space: nowrap;
    width: max-content;
    padding: 16px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    align-self: stretch;
    border-radius: 4px;
    text-decoration: none;
    background: var(--btn-bg);
    color: var(--btn-color) !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .25);
  }
}

/* This id present in sitecore */
#viatris-video-banner {
width: 100%;
padding-top: 0px !important;
}

@media screen and (min-width: 1024px) and (max-width: 1024px) {
	.hero-new {
		padding-bottom: 60px !important;
	}
}




 