.dade-team-card{
	position: relative;
}

.dade-team-card__inner{
	position: absolute;
	width: calc(100% - 0.5rem);
	bottom: 0.25rem;
	justify-content: end;
	background-color: rgba(0, 0, 0, 0.5);
}



/* Movil: una columna */
@media (max-width: 767px) {
    .dade-team-card-list {
        width: 100%; /* Asegura que ocupe todo el ancho disponible */
    }
}

/* Tablet: dos columnas */
@media (min-width: 768px) and (max-width: 1024px) {
    .dade-team-card-list {
        width: 50%; /* Tamaño para dos columnas */
        float: left; /* Hace que dos widgets se coloquen lado a lado */
        box-sizing: border-box; /* Asegura que el padding y border no aumenten el ancho */
    }
}


/* EVENTS  */
 .dade-event-img{
	object-fit: cover;
    display: block;
    width: 100%;
  }


.dade-events-img-container img {
    display: block;
}

.dade-events-block{
	
}

.is-style-highlight:after {
    background: #FECC00;
	width: 3rem;
    height: 0.2rem;
}

.dade-events-img-container{
	position: relative;
	cursor: pointer;
}

.overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  opacity: 0;
  transition: .5s ease;
  background-color: #FECC00;
}

.dade-events-img-container:hover .overlay{
	opacity: 0.4;
  }

.dade-events-block:nth-child(odd) {
	background-color: #EEEDED;
}

@media (max-width: 767px) {
	
	.dade-events-text-container{
		padding-top: 2rem;
		padding-bottom: 2rem;
	}
}



/* END - EVENTS  */
