﻿.eventos {
    position: relative;
}

.eventos__item {
    display: flex;
  	height: 100%;
    background: #fff;
    border-radius: 20px;
    flex-direction: column;
    box-shadow: 0px 2px 8px rgb(0 0 0 / 30%);
    overflow: hidden;
}

.eventos__date {
    padding: 10px;
    background: #006633;
}

.eventos__date p {
    display: flex;
    color: #fff;
    margin: 0;
    font-weight: bold;
    align-items: center;
    justify-content: center;
}

.eventos__date p::before {
    content: "";
    display: inline-flex;
    width: 18px;
    height: 17px;
    margin-right: 10px;
    background: url(/Portals/cens/Images/iconos/icono-calendario-blanco.svg) no-repeat center;
    background-size: contain;
}

.eventos__image {
    height: 160px;
}

.eventos__img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.eventos__text {
    display: flex;
    flex-direction: column;
    padding: 20px 15px;
}

.eventos__title {
    display: flex;
    color: #006633;
    font-size: 20px;
    line-height: 25px;
    font-weight: bold;
    margin: 0 0 10px;
}

.eventos__description {
  	display: flex;
  	flex-grow: 1;
  	align-items: center;
}

.eventos__description p:last-child {
    margin-bottom: 0;
}

.eventos__place,
.eventos__hour,
.eventos__guests {
    position: relative;
    margin-top: auto;
    padding: 0 15px 20px;
    padding-left: 40px;
}

.eventos__place::before,
.eventos__hour::before,
.eventos__guests::before {
    content: "";
    position: absolute;
    width: 17px;
    height: 17px;
    background-image: url(/Portals/cens/Images/iconos/icono-lugar-negro.svg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    top: 3px;
    left: 15px;
}

.eventos__hour::before {
    background-image: url(/Portals/cens/Images/iconos/icono-hora-negro.svg);
}

.eventos__guests::before {
    background-image: url(/Portals/cens/Images/iconos/icono-invitados-verde.svg);
}

.eventos__place p,
.eventos__hour p {
    margin: 0;
}

.eventos__button {
    margin-top: auto;
    padding: 0 15px 20px;
}

/* Detalle */
.gray-bg {
    padding: 30px 0;
    background: #EFF2F3;
    border-radius: 20px;
}

.eventosDetalle__title {
    color: #006633;
    font-size: 32px;
    line-height: 42px;
}

.eventosDetalle__title::before {
    content: none;
}

.eventosDetalle__date {
    color: #666666;
    font-weight: bold;
}

.eventosDetalle__category ul {
    display: flex;
    gap: 10px;
    flex-flow: wrap;
}

.eventosDetalle__category ul li {
    margin: 0;
    padding: 5px 10px;
    color: #fff;
    background: #002914;
    border-radius: 8px;
}

.eventosDetalle__category ul li::before {
    content: none;
}

.eventosDetalle__image {
    margin-bottom: 30px;
}

.eventosDetalle__description p:first-child {
    margin-bottom: 10px;
}

.eventosDetalle__info {
    display: flex;
  	margin-top: 30px;
  	flex-wrap: wrap;
    align-items: flex-start;
}

.eventosDetalle__info .eventos__place,
.eventosDetalle__info .eventos__hour,
.eventos__guests {
    flex: 1;
    margin: 0;
    padding-left: 25px;
}

.eventosDetalle__info .eventos__place::before,
.eventosDetalle__info .eventos__hour::before,
.eventos__guests::before {
    left: 0;
}

.eventosDetalle__info .eventos__place p:first-child,
.eventosDetalle__info .eventos__hour p:first-child,
.eventos__guests p:first-child {
    color: #006633;
    margin-bottom: 5px;
}

.eventosDetalle__info .eventos__place::before {
    background-image: url(/Portals/cens/Images/iconos/icono-lugar-verde.svg);
}

.eventosDetalle__info .eventos__hour::before {
    background-image: url(/Portals/cens/Images/iconos/icono-hora-verde.svg);
}

.eventosDetalle__actions {
    display: flex;
    margin-top: 25px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 25px;
}

.eventosDetalle__gallery {
    margin-top: 45px;
}

.eventosDetalle__gallery__content {
    width: 760px;
    max-width: 90%;
    margin: auto;
}

.eventosDetalle__gallery__header .slick-list,
.eventosDetalle__gallery__header .slick-slide,
.eventosDetalle__gallery__body .slick-slide {
    height: auto !important;
}

.eventosDetalle__gallery__title {
    color: #006633;
}

.eventosDetalle__gallery .slick-slide {
    padding: 0;
}

.eventosDetalle__gallery .slick-slide::before {
    content: none;
}

.eventosDetalle__gallery .slick-slide img {
    width: 100%;
}

.eventosDetalle__gallery__body .slick-slider {
    margin: 0;
}

.eventosDetalle__gallery__body .slick-slide {
    padding: 4px;
    margin: 5px;
    background: #fff;
    border-radius: 20px;
    border: 2px solid transparent;
}

.eventosDetalle__gallery__body .slick-slide.slick-current {
    border: 2px solid #006633;
}

.eventosDetalle__gallery__body .slick-slide img {
    border-radius: 15px;
}

@media (max-width: 767px){
    .eventosDetalle__info .eventos__place,
    .eventosDetalle__info .eventos__hour {
        flex: 100%;
    }
}

@media (max-width: 380px){
    .eventosDetalle__gallery__body .slick-slide {
        border-radius: 12px;
    }
    
    .eventosDetalle__gallery__body .slick-slide img {
        border-radius: 7px;
    }
}