/*
 * SENSEI LÚDICO - HOJA DE ESTILO PARA CHANGELOG
 * Descripción: Estilos para la página de historial de versiones.
 * Se integra con las variables y estilos de style.css.
 */

.version {
    background-color: var(--white);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius);
    padding: 1.5rem 2rem;
    margin-bottom: 2rem;
    box-shadow: var(--shadow);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.version:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.version-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--bg-light);
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.version-header h2 {
    margin: 0;
    color: var(--secondary-color);
    font-size: 1.8rem;
}

.version-date {
    background-color: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: bold;
}

.version h3 {
    color: var(--secondary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

ul {
    list-style-type: none;
    padding-left: 0;
}

li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    color: var(--text-color);
}

/* Crear un marcador de lista personalizado */
li::before {
    content: '✓';
    position: absolute;
    left: 2px;
    color: var(--primary-color);
    font-weight: bold;
}

strong {
    color: var(--primary-text);
    font-weight: 700;
}
