.image-text-carousel-container {
  position: relative;
  left: calc(50% - 50vw);
  width: 100vw;
  background-color: #e5edf8;
  padding-block: 50px;
  margin-top: 100px;
} 

.image-text-carousel {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
}
.we-believe{
    font-size: 1rem;
    color: #555;
    margin-bottom: 1rem;
    text-transform: uppercase;
}
.carousel-container {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.carousel-image {
  flex: 0 0 40%;
  position: relative;
  overflow: hidden;
  min-height: 300px;
}
.carousel-image img{
		width: 100%;
    aspect-ratio: 4/3;
		object-fit: cover;
    clip-path: polygon(
      50px 0,
      100% 0,
      100% calc(100% - 59.6px),
      calc(100% - 50px) 100%,
      0 100%,
      0 59.6px
    );
}

.carousel-slide {
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  pointer-events: none;
}

.carousel-slide.active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}

.carousel-placeholder {
  aspect-ratio: 4/3;
  background-color: #f0f0f0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #999;
  font-size: 1.2rem;
  min-height: 300px;
}

.carousel-content {
  flex: 1;
  position: relative;
  min-height: 300px;
}

.content-slide {
  display: none;
  opacity: 0;
  transition: opacity 0.5s ease-in-out;
  min-height: 150px;
}

.content-slide.active {
  display: block;
  opacity: 1;
}

.content-slide h3 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: #263e9e;
  font-weight: 700;
}

.content-slide .content-text {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 2rem;
  white-space: pre-wrap;
}

.carousel-indicators {
  display: flex;
  gap: 0.5rem;
  margin-top: 1.5rem;
}

.indicator {
  width: 20px;
  height: 4px;
  /*border-radius: 50%;*/
  background-color: #263e9e;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.3s ease;
}

.indicator:hover {
  background-color: #80CCB8;
  /*transform: scale(1.2);*/
}

.indicator.active {
  background-color: #80CCB8;
  /*width: 32px;
  //border-radius: 6px;*/
}

@media (max-width: 768px) {
  .carousel-container {
    flex-direction: column;
  }
  
  .carousel-image {
    flex: 0 0 100%;
    width: 100%;
  }
  
  .content-slide h3 {
    font-size: 1.5rem;
  }
  
  .content-slide .content-text {
    font-size: 1rem;
  }
}
