/* CSS Document */
.evento-item {
    display: flex;
    align-items: center;
    padding: 10px;
    background: #ffffff;
    border-radius: 10px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform .2s ease, box-shadow .2s ease;
    cursor: pointer;
    text-decoration: none !important;
}

.evento-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}

/* Fecha */
.evento-fecha {
    width: 60px;
    text-align: center;
    margin-right: 12px;
    border-radius: 8px;
    background: #16c5bd;
    color: #fff;
    padding: 6px 0;
}

.evento-dia {
    font-size: 22px;
    font-weight: bold;
    line-height: 1;
}

.evento-mes {
    font-size: 12px;
    text-transform: uppercase;
    opacity: .9;
}

/* Imagen */
.evento-img {
    width: 75px;
    height: 75px;
    border-radius: 8px;
    object-fit: cover;
    margin-right: 12px;
    box-shadow: 0 0 5px rgba(0,0,0,0.15);
}

/* Texto */
.evento-titulo h3 {
    font-size: 14px;
    margin: 0;
    color: #204d9c;
    font-weight: 600;
    line-height: 1.2;
}	
	

