/* =========================================================
   Blog – Cómo organizar Navidad o Año Nuevo para 20 personas
   Complementa blog-navidad-familia.css y el sistema le-*
   (luxury-estate.css / pool-weekend.css)
   ========================================================= */

/* ── Actividades por edad: 4 tarjetas con listado ────────── */
.nv20-edades {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: 2rem;
}
.nv20-edad-card {
    background: #fff;
    border: 1px solid #ece5db;
    border-radius: 10px;
    padding: 26px 22px;
    box-shadow: 0 8px 24px rgba(60, 50, 40, .05);
    transition: transform .2s ease, box-shadow .2s ease;
}
.nv20-edad-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(60, 50, 40, .1);
}
.nv20-edad-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c2a27;
    margin-bottom: 12px;
}
.nv20-edad-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.nv20-edad-card ul li {
    font-family: 'Jost', sans-serif;
    font-size: .92rem;
    color: #6b6459;
    line-height: 1.5;
    padding: 5px 0 5px 18px;
    position: relative;
}
.nv20-edad-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 13px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #c19b76;
}

/* ── Pasos en dos filas de 4 ─────────────────────────────
   .le-steps usa auto-fit y acomoda 6 tarjetas arriba y 2 abajo.
   Con 8 pasos se ve mejor en 4 + 4.
   ───────────────────────────────────────────────────────── */
.nv20-steps-4 {
    grid-template-columns: repeat(4, 1fr);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 991px) {
    .nv20-edades,
    .nv20-steps-4 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 575px) {
    .nv20-edades,
    .nv20-steps-4 {
        grid-template-columns: 1fr;
    }
}
