.blog {
  position: relative;
  max-height: 90vh;
  text-align: center;
  margin-top: 0;
  margin: 20px;
  overflow: hidden;
  border-radius: 30px;
  /* border: solid 2px yellow; */
}

.carousel-wrapper {
  position: relative;
  height: 90vh;
  /* border: solid 2px yellow; */
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
  height: 100%;
}

.carousel-item {
  min-width: 100%;
  box-sizing: border-box;
  text-decoration: none;
  color: inherit;
  position: relative;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  /* display: block; */
  /* height: 90vh; */
  filter: brightness(0.5);
  object-fit: cover;
  /* object-position: 60% 50%; */
  object-position: center center;
  border-radius: 30px;
}

.carousel-info {
  position: absolute;
  text-align: left;
  left: 60px;
  top: 50px;
  /* transform: translateX(-50%); */
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

.carousel-info h1 {
  margin: 0px;
  /* font-size: 36px; */
}

.carousel-info h2 {
  margin: 0px;
  /* font-size: 24px; */
}

.carousel-info p {
  margin: 0;
  width: 50%;
  font-size: 16px;
  color: #EADFC8;
}

.carousel-btn {
  position: absolute;
  top: 45vh;
  transform: translateY(-50%);
  background: #EADFC8;
  border: none;
  font-size: 30px;
  cursor: pointer;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

.carousel-btn.prev {
  left: 10px;
}

.carousel-btn.next {
  right: 10px;
}

.carousel-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 20;
}

.carousel-dots button {
  border: none;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: black;
  border: #EADFC8 0.5px solid;
  cursor: pointer;
}

.carousel-dots button.active {
  background: #EADFC8;
}