.hero-carousel {
	position: relative;
	overflow: hidden;
	min-height: 80vh;
	max-height: 90vh;
/* 	background: #070b14; */
  background: linear-gradient(180deg, rgb(7 11 20 / 40%), #0000007d);
}

.hero-carousel .carousel__slides article .is-active{
      width: 100%;
}
 
.hero-carousel .carousel__slides {
	position: relative;
	height: 100vh;
  mix-blend-mode: multiply;
}

.carousel__slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.1s ease-in-out, visibility 0s linear 1.1s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.carousel__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-width: 100%;
    min-height: 100%;
}
.carousel__slide.is-active {
	opacity: 1;
	visibility: visible;
	transition: opacity 1.1s ease-in-out;
}

.carousel__image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

.carousel__content {
    align-items: center;
    bottom: 0;
    display: grid;
    gap: 0;
  color: #fff;
    grid-template-columns: 5fr 3fr;
    /* left: 3rem; */
    margin: 0 auto;
    /* max-width: 1440px; */
    padding: 2rem;
    position: absolute;
    /* right: 3rem; */
    top: 10vh;
    /* width: 100%;
    /* backdrop-filter: blur(10px); */
    /* background: linear-gradient(180deg, rgba(7, 11, 20, .04), rgba(7, 11, 20, .92)); */
    /* border-radius: 24px; */
    
}

/* .carousel__content strong {
	display: block;
	font-size: 0.95rem;
	letter-spacing: 0.22em;
	text-transform: uppercase;
	color: #73d2ff;
	margin-bottom: 1rem;
} */

.carousel__content h1 {
  
    font-style: normal;
    font-weight: 400;
    line-height: 125%;
    letter-spacing: -1.2px;
    color: #FFFFFF;
    font-size: 60px;
/* 	font-size: clamp(2.4rem, 4vw, 4.4rem);
	line-height: 1.02;
	margin: 0 0 1rem; */
}

/* .carousel__content p {
	font-size: 1rem;
	line-height: 1.8;
	max-width: 38rem;
	margin: 0;
} */
.carousel__content a {
    display: inline-flex;
    height: 44px;
    padding: 10px 18px;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    border-radius: 8px;
    background: linear-gradient(90deg, #45D42E 0%, #45D42E 100%);
    box-shadow: 0px 2px 1px 0px rgba(33, 39, 43, 0.04);
    color: #0D2408;
    text-decoration: none;
    font-family: "source-sans-pro";
    font-size: 18px;
    font-style: normal;
    font-weight: 600;
    line-height: 28px;
}
.carousel__controls {
	position: absolute;
	inset: auto 2rem 2rem;
	display: flex;
	gap: 0.75rem;
	z-index: 2;
}

.carousel__button {
	border: none;
	background: rgba(0, 0, 0, 0.45);
	color: #ffffff;
	padding: 0.88rem 1.15rem;
	border-radius: 999px;
	cursor: pointer;
	font-size: 0.95rem;
	transition: background-color 0.2s ease, transform 0.2s ease;
}

.carousel__button:hover,
.carousel__button:focus-visible {
	background: rgba(115, 210, 255, 0.95);
	color: #070b14;
	outline: none;
	transform: translateY(-1px);
}

.carousel__indicators {
    position: absolute;
    left: 50%;
    height: 3rem;
    /* width: 48px; */
    bottom: 0.4rem;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 2;
}

.carousel__indicator {
	    width: 15px;
    height: 15px;
    border-radius: 50%;
    background: rgb(59 59 59 / 45%);
    border: 1px solid #ffffff5c;
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.2s ease;
      transform: scale(0.8);
}

.carousel__indicator.is-active {
	background: #ffffff70; 
      transform: scale(1);
}

@media (max-width: 900px) {
	.carousel__content {
    display: block;
        align-content: center;
/* 		left: 1.5rem;
		right: 1.5rem;
		bottom: 2rem;
		padding: 1.5rem; */
	}

	.carousel__controls {
		inset: auto 1.5rem 1.5rem;
	}
}

@media (max-width: 640px) {
	.hero-carousel {
		min-height: 50vh;
	}

	.carousel__content {
		padding: 1.2rem;
		border-radius: 18px;
	}

	.carousel__button {
		padding: 0.75rem 1rem;
		font-size: 0.85rem;
	}
}
