.carousel-home-adjust{
height: 35rem;
}


.carousel-container {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.carousel {
  display: flex;
  transition: transform 0.5s ease-in-out;
  width: 100%;
}

.carousel-item {
  flex: 0 0 100%; /* Cada item ocupa el 100% del contenedor */
  position: relative;
  width: 100%;
  height: 35rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.carousel-item-content {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  padding: 0 24%;    
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.5));
}
/*
.carousel-item h3 {
	font-size: 1.5rem;
    color: white;
    line-height: 1.5rem;
  	text-transform: math-auto;
}*/

.carousel-item h3 {
    font-size: 2.4rem;
    color: white;
    line-height: 2.8rem;
    text-transform: none !important;
    padding: 0 21%;
}


/*
.carousel-item p {
  font-size: 1rem;
  color:white;
  margin-bottom: 0.8rem;
  line-height: 1.5rem;
}
*/

.carousel-item p {
    font-size: 1.4rem;
    color: white;
    margin-bottom: 1.8rem;
    line-height: 2rem;
    padding: 0px 15%;
}

.carousel-meta{
	font-size: 1rem;
    margin-top: 0.25rem;
    text-decoration: none;
    text-transform: uppercase;
}
/*
.carousel-item .author, 
.carousel-item .label {
  font-size: 1rem;
  margin-top: 0.25rem;
}
*/

.carousel-item .author, .carousel-item .label {
    font-size: 1rem;
    margin-top: 0.25rem;
}

.carousel-prev {
  left: 10px;
}

.carousel-next {
  right: 10px;
}

.carousel-dots {
  position: absolute;
  bottom: 5%; /* Ajusta el padding desde la parte inferior */
  left: 50%;
  transform: translateX(-50%); /* Centra horizontalmente los puntos */
  display: flex;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none; /* Elimina los puntos de lista por defecto */
  z-index: 10; /* Asegura que los puntos estén sobre las imágenes */
}

.carousel-dot {
  width: 10px;
  height: 10px;
  background-color: #ccc; /* Color gris sutil */
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.carousel-dot.active {
  background-color: #333; /* Color más oscuro para el punto activo */
}
/*
.carousel-meta .category-link a {
  font-weight: bold;
  text-decoration:none;
  color: white;
}
*/

.carousel-meta .category-link a {
    font-weight: bold;
    text-decoration: none;
    color: white;
}

.carousel-title{
text-decoration:none !important;
}

.carousel-excerpt{
text-decoration:none !important;
}


.chevron {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 2rem;
  color: white;
  background-color: transparent;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  
}

.carousel-prev {
  padding: 100% 5% !important;
  width:10rem !important;
}

.carousel-next {
  padding: 100% 5% !important;
}

.chevron:hover {
  background-color: transparent;
}