@charset "UTF-8";
/* CSS Document */

@keyframes tonext {
  75% {
    left: 0;
  }
  95% {
    left: 100%;
  }
  98% {
    left: 100%;
  }
  99% {
    left: 0;
  }
}

@keyframes tostart {
  75% {
    left: 0;
  }
  95% {
    left: -300%;
  }
  98% {
    left: -300%;
  }
  99% {
    left: 0;
  }
}

@keyframes snap {
  96% {
    scroll-snap-align: center;
  }
  97% {
    scroll-snap-align: none;
  }
  99% {
    scroll-snap-align: none;
  }
  100% {
    scroll-snap-align: center;
  }
}

#news-carousel-column h2 {
	line-height: 1;
}

* {
  box-sizing: border-box;
  scrollbar-color: transparent transparent; /* thumb and track color */
  scrollbar-width: 0px;
}

*::-webkit-scrollbar {
  width: 0;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background: transparent;
  border: none;
}

* {
  -ms-overflow-style: none;
}

ol, li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.carousel {
  position: relative;
  padding-top: 75%;
  perspective: 100px;
}

.carousel__viewport {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  overflow-x: scroll;
  counter-reset: item;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.carousel__slide {
  position: relative;
  flex: 0 0 100%;
  width: 100%;
  counter-increment: item;
}

.carousel__slide:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate3d(-50%,-40%,70px);
  color: #fff;
  font-size: 2em;
}

.carousel__snapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  scroll-snap-align: center;
}

.carousel__slide img {
	width: auto; 
}
	
.carousel__viewport,
.carousel__slide {
	height: 590px;
	}

.slider-buttons-centered {
  width: 100%;
  position: absolute;
  bottom: 40px;
  text-align: center;
}

@media (hover: hover) {
  .carousel__snapper {
    animation-name: tonext, snap;
    animation-timing-function: ease;
    animation-duration: 4s;
/*    animation-iteration-count: infinite;*/
  }

  .carousel__slide:last-child .carousel__snapper {
    animation-name: tostart, snap;
  }
}

@media (prefers-reduced-motion: reduce) {
  .carousel__snapper {
    animation-name: none;
  }
}

.carousel:hover .carousel__snapper,
.carousel:focus-within .carousel__snapper {
  animation-name: none;
}

.carousel__navigation {
	top: 590px;
	bottom: inherit;
	position: absolute;
    right: 0;
    left: 0;
    text-align: center;
	background: #ffffffD6;
}

.carousel__navigation-list,
.carousel__navigation-item {
  display: inline-block;
}

.carousel__navigation-button {
  display: inline-block;
  width: 1.5rem;
  height: 1.5rem;
  background-color: #005ca5;
  background-clip: content-box;
  border: 0.25rem solid transparent;
  border-radius: 50%;
  font-size: 0;
  transition: transform 0.1s;
}

.carousel::before,
.carousel::after,
.carousel__prev,
.carousel__next {
  position: absolute;
  top: 0;
/*   margin-top: 37.5%; */
  margin-top: 185px;	
  width: 3rem;
  height: 5rem;
/*   transform: translateY(-50%); */
  border-radius: 10%;
  font-size: 0;
  outline: 0;
}

#homepage-hero .carousel::before,
#homepage-hero .carousel::after, 
#homepage-hero .carousel__prev, 
#homepage-hero .carousel__next {
/* 	margin-top: 182px !important; */
}

.carousel::before,
.carousel__prev {
  left: 1rem;
}
.carousel::after,
.carousel__next {
  right: 1rem;
}

.carousel::before,
.carousel::after {
  content: '';
  z-index: 1;
  background-size: 1.5rem 1.5rem;
  background-repeat: no-repeat;
  background-position: center center;
  color: #fff;
  font-size: 2.5rem;
  line-height: 4rem;
  text-align: center;
  pointer-events: none;
}
.carousel::before {
	content: url(https://clone.emu.edu/_resources/images/news-back-arrow.png);
}
.carousel::after {
	content: url(https://clone.emu.edu/_resources/images/news-forward-arrow.png);
}
.caption {
/* 	padding: 0 30px; */
}
.caption-content h2 {
	margin-top: 20px;
}
.caption-content {
  padding: 5px 20px;
  background: #ffffffD6;
  height: 300px; /* 2026-03-27 */
}

/* Homepage Hero slider */
#homepage-hero-section {
	background: orange;
}
#homepage-hero .carousel__snapper {
	background-size: cover;
}
#homepage-hero h2 {
  color: #fff;
  font-size: 54px;
  text-transform: uppercase;
  line-height: 50px;
  margin-bottom: 10px;
}
#homepage-hero .caption {
  color: #fff;
  font-size: 28px;
  font-weight: bold;
  line-height: 32px;
  margin-bottom: 10px;
}
#homepage-hero .hero-slider-content {
	position: relative;
	top: 140px;
	max-width: 530px;
	padding-left: 7%;
}
#homepage-hero button {
	background: #f6a719;
	text-transform: uppercase;
	width: inherit;
	border: none;
	padding: 10px 20px 30px;
	border-radius: 5px;
	color: #102c52;
	font-size: 15px;
	font-weight: bold;
	font-stretch: condensed;
	letter-spacing: .5px;
	box-shadow: 1px 1px 4px black;
}
#homepage-hero .slider-buttons a {
  margin-top: 20px;
  display: block;
}

@media only screen and (max-width: 1041px) {
	.carousel__viewport,
	.carousel__slide,
	#news-carousel-column { 
		height: 550px; 
		width: 100%; 
		margin-bottom: 20px; 
	}
	#news-headlines-column { 
		width: 100%; 
		margin-bottom: 40px; 
	}
	.carousel__navigation { 
		top: 415px;
	}
}

@media only screen and (max-width: 480px) {
	section.carousel {
	  max-width: 100%;
	  padding: 0;
	}
	.carousel__navigation {
		top: 400px;
	}
	#homepage-hero .carousel__viewport,
	#homepage-hero .carousel__slide,
	#homepage-hero #news-carousel-column { 
		height: 700px;
		background: #025ba5;
/* 		background: gray; */
	}
	#homepage-hero .carousel__navigation { 
		top: 240px;
	}
	#homepage-hero .hero-slider-content {
		top: 60px;
	}
	.carousel::before,
	.carousel::after {
	  display: none;
	}
}