/* CSS Document */
/* Item del listado */
.fest-item {
    display: flex;
    align-items: center;
    padding: 12px;
    background: #ffffff;
    border-radius: 12px;
    margin-bottom: 14px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform .2s ease, box-shadow .2s ease;
    text-decoration: none !important;
    color: inherit;
}

.fest-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(0,0,0,0.18);
}

/* Imagen */
.fest-img {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    object-fit: cover;
    margin-right: 14px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.18);
}

/* Título */
.fest-titulo {
    font-family: 'EB Garamond', serif;
    font-size: 18px;
    font-weight: 700;
    color: #234b8a;
    margin: 0 0 5px 0;
}

/* Detalles */
.fest-detalle {
    font-size: 13px;
    color: #555;
    line-height: 1.4;
}

.fest-lugar {
    color: #16a2bd;
    font-weight: 600;
    font-size: 13px;
}

/* Botón */
.btn-ver-todos {
    background-color: #2c9cdf;
    color: white !important;
    border-radius: 18px;
    padding: 6px 16px;
    font-size: 13px;
}

.btn-ver-todos:hover {
    background-color: #1a7bb1;
}
