/**
 * Pages Liées - Design ultra-fin et moderne
 * Sidebar navigation pour pages pilier
 */

/* Container principal */
.page-pilier-toc-related {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #f3f4f6;
}

.page-pilier-toc-related h3 {
    font-size: 0.75rem;
    font-weight: 600;
    margin: 0 0 0.5rem;
    color: #6b7280;
    letter-spacing: 0.025em;
    text-transform: uppercase;
}

/* Section groupée */
.related-section {
    margin-bottom: 0.5rem;
}

.related-section:last-child {
    margin-bottom: 0;
}

/* Label de catégorie - Ultra-minimaliste */
.related-label {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #9ca3af;
    margin-bottom: 0.125rem;
    padding: 0;
    background: transparent;
}

/* Liste reset */
.related-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
}

.related-section li {
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #f3f4f6;
}

.related-section li:last-child {
    border-bottom: none;
}

/* Liens - Design ultra-fin avec alternance blanc/bleu */
.related-section a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.25rem;
    color: #374151;
    text-decoration: none;
    font-size: 0.75rem;
    line-height: 1.2;
    padding: 0.188rem 0.25rem;
    min-height: 1.5rem;
    transition: all 0.12s ease;
    position: relative;
}

/* Alternance blanc/bleu clair */
.related-section li:nth-child(odd) a {
    background: #dbeafe;
}

.related-section li:nth-child(even) a {
    background: #ffffff;
}

.related-section a:hover {
    background: #3b82f6;
    color: #ffffff;
    padding-left: 0.75rem;
}

/* Icône - Ultra-minimaliste */
.related-icon {
    flex-shrink: 0;
    color: #d1d5db;
    font-size: 0.625rem;
    font-weight: 400;
    width: 6px;
    text-align: center;
    margin: 0;
}

.related-section a:hover .related-icon {
    color: #6b7280;
}

/* Titre - Retour à la ligne sur 2 lignes max */
.related-title {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-height: 1.3;
    font-size: 0.75rem;
    align-self: center;
}

/* Page parente - Accent très subtil */
.related-parent .related-label {
    color: #f59e0b;
}

.related-parent a {
    border-left: 2px solid #fbbf24;
    padding-left: 0.5rem;
    font-weight: 500;
}

.related-parent a:hover {
    background: #fffbeb;
    border-left-color: #f59e0b;
}

/* Pages enfants - Accent minimal */
.related-children .related-label {
    color: #3b82f6;
}

/* Pages sœurs - Accent minimal */
.related-siblings .related-label {
    color: #8b5cf6;
}

/* Responsive - Ultra-compact sur mobile */
@media (max-width: 768px) {
    .page-pilier-toc-related {
        margin-top: 1rem;
        padding-top: 1rem;
    }

    .page-pilier-toc-related h3 {
        font-size: 0.688rem;
    }

    .related-section a {
        font-size: 0.688rem;
        padding: 0.188rem 0.313rem;
    }

    .related-label {
        font-size: 0.563rem;
    }
}
