/* Fix pour les pages d'entrée d'univers - Garder le texte dans l'espace blanc */

.category-summary-container {
    width: 100%;
    height: 100%;
    padding: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

/* Zone de contenu texte - occupe la partie gauche/blanche */
.category-summary-content {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category-title {
    font-size: 3rem;
    font-weight: bold;
    color: #4a3d85;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.subcategories-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    max-width: 90%;
}

.subcategory-item {
    font-size: 1.1rem;
    color: #4a3d85;
    padding: 0.5rem 0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subcategory-item:hover {
    color: #6b5ca5;
    transform: translateX(10px);
}

/* Empêcher le débordement du texte */
.category-description {
    display: none;
}

.subcategories-title {
    display: none;
}

/* Style pour les lignes de sous-catégories */
.subcategory-link {
    text-decoration: none;
    color: inherit;
    display: block;
    position: relative;
}

.subcategory-link::before {
    content: '';
    position: absolute;
    left: -20px;
    top: 50%;
    transform: translateY(-50%);
    width: 10px;
    height: 2px;
    background-color: currentColor;
    transition: width 0.3s ease;
}

.subcategory-link:hover::before {
    width: 15px;
}

/* S'assurer que le numéro de page reste en bas */
.page-number {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}