.swiper-button-next, .swiper-button-prev {color:#014f95!important;}
.swiper-button-next {
  margin-top: 0px;
  position: absolute;
  top: 50%;
  right: -25px;  
  transform: translateY(-50%);
}
.swiper-button-prev {
  position: absolute;
  top: 50%;
  left: -25px;  
  transform: translateY(-50%);
  margin-top: 0px;
}

.swiper-button-next::after, .swiper-button-prev::after{
	font-size:26px!important;
	font-weight:900;
}

.event-carousel-wrapper {
	margin:0 auto;
    width: 96%;
    position: relative;
}

.event-item {padding:15px;}

.event-item-inner {
	min-height:570px;
    display: flex;
    flex-direction: column;    
	justify-content: flex-start;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0px 0px 10px 4px rgba(11,40,58,0.1);
	padding:30px;
}

.event-info {    
	margin-top:10px;
}

.event-info h3.event-title{
	font-size:24px;
	line-height:1.2;
    margin: 10px 0px;
	font-weight:800;
	color:#014f95;
	text-align:left;
}

h3.slide-webinar-title{
	font-size:20px;
	line-height:1.2;
    margin: 20px 0px;
	font-weight:800;
	color:#014f95;
	text-align:left;
	
	
}

.slide-sessions{
	margin-bottom:20px;
}

.session-number {
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 0.8em;  
  color:#94a5b2;  
  margin-bottom:6px;
}

.session-number::after {
  content: "";
  flex: 1;
  height: 1px; /* grosor de la línea */
  background: #ececed; /* color de la línea */
  margin-left: 12px; /* espacio entre texto y línea */
  min-width: 40px;   /* longitud mínima opcional */
}

.slide-live-webinar{		
	font-weight:300;
	border-radius:10px;
	padding:0px 30px;	
	position: relative;
	color: #00a7b4;
	font-size:0.9em;
	margin-bottom:6px;
}

.slide-live-webinar::before {
  content: "";
  position: absolute;
  left: 0;
  top: 20%; 
  width: 20px;   /* ajusta al tamaño del PNG */
  height: 20px;  /* ajusta al tamaño del PNG */
  background-image: url('img/live-icon-green.png');
  background-size: contain;
  background-repeat: no-repeat;
}

.slide-webinar-image {
  /* Contenedor obligando aspect ratio 3:1 */
  position: relative;
  width: 100%; /* o un ancho fijo si quieres */
  aspect-ratio: 2 / 1;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.slide-webinar-image img {
  border-radius: 5px;
  width: 100%;
  height: 100%;
  object-fit: cover;      /* rellena el contenedor sin deformarse */
  object-position: center;/* centra la imagen dentro del contenedor */
  display: block;
}

.session-info{
	display: flex;
    flex-direction: row;	
	margin-bottom:10px;
}

.session-date, .session-time{
	font-weight:300;
	color:#0b283a;
	position:relative;
	padding-left:20px;
	margin-right:30px;
}

.session-date::before {
  content: "\f073"; /* código Unicode del icono podcast */
  font-family: "Font Awesome 5 Free";
  font-weight: 900; /* estilo solid */
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color:#94a5b2;
}

.session-time::before {
  content: "\f017"; /* código Unicode del icono podcast */
  font-family: "Font Awesome 5 Free";
  font-weight: 900; /* estilo solid */
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 16px;
  color:#94a5b2;
}


.event-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
	border-radius:5px;
}

.event-date{
	color: #0b283a;
    font-size: 1em;
	font-weight:300;
    margin-bottom: 10px;
	letter-spacing:-0.02em;
}

.event-location {
    color: #94a5b2;
    font-size: 1em;
	font-weight:300;
    margin-bottom: 10px;
	letter-spacing:-0.02em;
}


.event-link{
	color:#014f95;
	background-color: none;
	letter-spacing:-0.02em;
	display:flex;
	align-items:center;
	margin-bottom:20px;
}

.event-button {
    display: inline-block!important;
	align-self: flex-start;
	margin-top: auto;
	width: auto;
	max-width: none;
	font-family:'Mulish';
	border:none;    
    padding: 10px 30px;
    color: #fff;
    background-color: #00a7b4;
    text-decoration: none;
    border-radius: 30px;
	font-size:13px;
	cursor:pointer;
}

.event-button:hover {
	color:white;
    background-color: rgb(3, 116, 124);
}

.icon-website{margin-right:10px;}

/* Estilo base para los bullets */
.swiper-pagination-bullet {
    background: #fff; /* Color de los bullets inactivos */
    width: 10px; /* Ancho del bullet */
    height: 10px; /* Altura del bullet */
    margin: 0 5px; /* Espaciado entre bullets */
    opacity: 1; /* Transparencia */
    transition: background 0.3s, opacity 0.3s; /* Transiciones suaves */
}

/* Bullet activo */
.swiper-pagination-bullet-active {
    background: #00a7b4; /* Color del bullet activo */
    opacity: 1;
}

/* Centramos los bullets en la parte inferior */
.swiper-pagination {
    position: absolute;
    bottom: 10px; /* Ajusta la distancia desde la parte inferior */
    text-align: center; /* Centra los bullets horizontalmente */
    width: 100%;
    z-index: 10; /* Asegura que esté por encima del slider */
	
}

.swiper-pagination-events{
	justify-content:center!important;
	margin-top:20px;
}

.no-available-events{min-height: 200px;}