.hero-slider-block {
    max-width: 100vw;
    margin-left: calc(-100vw / 2 + 100% / 2);
    margin-right: calc(-100vw / 2 + 100% / 2);
    width: auto;
    position: relative;
    text-align: center;
    margin-top: 0;
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background: transparent;
}

.wp-block .hero-slider-block {
    margin-top: 0;
    margin-bottom: 0;
}

.wp-block-post-content .site-content {
    max-width: 800px;
}

.hero-slider-image-block {
    height: 938px;
    overflow: hidden;
    width: 100%;
    position: relative;
}

.hero-slider-swiper,
.hero-slider-swiper .swiper-wrapper,
.hero-slider-swiper .swiper-slide {
    width: 100%;
    height: 100%;
}

.hero-slider-slide {
    position: relative;
    overflow: hidden;
}

.hero-slider-block .site-content {
    background: #fff;
    padding-top: 40px;
    padding-bottom: 40px;
    transform: translateY(-12%);
    position: absolute;
    bottom: 0;
    width: auto;
    box-shadow: 0 15px 15px rgba(0, 0, 0, 0.08);
    max-width: 1120px;
    z-index: 20;
}

.hero-slider-block h1,
.hero-slider-block h2 {
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 0 10px;
    font-size: 40px;
    line-height: 150%;
    font-weight: 700;
    font-family: Montserrat, sans-serif;
}

.hero-slider-block img {
    width: 100vw;
    height: 100%;
    display: block;
    max-width: 100vw;
    margin: 0 auto;
    object-fit: cover;
    object-position: top;
    min-height: 938px;
}

.hero-slider-tooltip {
    position: absolute;
    left: 32px;
    bottom: 32px;
    max-width: 420px;
    background: rgba(23, 38, 74, 0.92);
    color: #fff;
    padding: 12px 16px;
    border-radius: 6px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
    pointer-events: none;
    text-align: left;
    font-size: 15px;
    line-height: 1.45;
    z-index: 15;
}

.hero-slider-slide:hover .hero-slider-tooltip,
.hero-slider-slide:focus-within .hero-slider-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hero-slider-tooltip-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.hero-slider-editor-preview-image-wrap {
    position: relative;
    height: 100%;
}

.hero-slider-editor-slide-count {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(23, 38, 74, 0.88);
    color: #fff;
    padding: 8px 12px;
    font-size: 13px;
    border-radius: 4px;
    z-index: 10;
}

.hero-slider-swiper .swiper-pagination {
    bottom: 24px !important;
    z-index: 12;
}

.hero-slider-swiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    opacity: 1;
    background: rgba(255, 255, 255, 0.65);
}

.hero-slider-swiper .swiper-pagination-bullet-active {
    background: #ffffff;
}

@media (max-width: 1199px) {
    .hero-slider-image-block {
        height: 700px !important;
    }

    .hero-slider-block .site-content {
        padding: 30px;
        transform: translateY(-30%);
    }

    .hero-slider-block .site-content h1 {
        padding: 0 !important;
    }

    .hero-slider-block img {
        min-height: 700px;
    }
}

@media (max-width: 767px) {
    .hero-slider-image-block {
        height: 400px !important;
    }

    .hero-slider-block h1,
    .hero-slider-block h2 {
        font-size: 24px;
    }

    .hero-slider-block .site-content {
        transform: translateY(0);
    }

    .hero-slider-block .site-content h1 {
        padding: 0 !important;
    }

    .hero-slider-block img {
        min-height: 400px;
    }

    .hero-slider-tooltip {
        left: 16px;
        right: 16px;
        bottom: 16px;
        max-width: none;
        font-size: 14px;
        padding: 10px 12px;
    }
}


/* Down Arrow */
.hero-slider-block {
  position: relative;
}

.hero-slider-block .scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 15%;
  transform: translateX(-50%);
  z-index: 999;

  display: flex;
  align-items: center;
  justify-content: center;

    width: 40px;
    height: 40px;
    border: 1px solid white;
  border-radius: 50%;
  background: #e92423;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

@keyframes scrollCueDouble {
  0%   { transform: translateY(0); }

  /* First bounce */
  10%  { transform: translateY(10px); }
  20%  { transform: translateY(0); }

  /* Second bounce */
  30%  { transform: translateY(10px); }
  40%  { transform: translateY(0); }

  /* Pause */
  100% { transform: translateY(0); }
}

.hero-slider-block .scroll-cue.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.hero-slider-block .scroll-cue__icon {
  font-size: 25px;
  line-height: 1;
  color: #fff;
    animation: scrollCueDouble 2.4s ease-in-out infinite;
}

.hero-slider-block .scroll-cue:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}


@media (max-width: 768px) {

    .hero-slider-block h1 {
    align-items: center;
    color: var(--maryknoll-white);
    display: block;
    font-size: 36px;
    font-weight: 700;
    text-align: left;
    text-shadow: rgba(0, 0, 0, 25%) 0px 4px 4px;
    text-transform: uppercase;
    margin: 0px;
    padding: 0px;
}

.hero-slider-block{

    height: 300px;
}
.hero-slider-block .scroll-cue {
    display: none;
}


}