.summary-card {
    position: sticky;
    top: 5rem;
    max-height: calc(100vh - 4rem);
    overflow-y: auto;
    border: 1px solid #e2e8f0 !important;
    transition: box-shadow 0.25s ease;
}
.summary-card:hover {
    box-shadow: 0 10px 20px rgba(15, 23, 42, 0.04) !important;
}
.summary-card::-webkit-scrollbar {
    width: 4px;
}
.summary-card::-webkit-scrollbar-track {
    background: transparent;
}
.summary-card::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
.summary-card::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}
.summary-content ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.summary-content a {
    color: var(--black);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: start;
    gap: 0.5rem;
    transition: color 0.2s ease, padding-left 0.2s ease;
    line-height: 1.4;
    margin-bottom: 8px;
}
.summary-content a:hover {
    color: var(--orange);
    padding-left: 4px;
}
.summary-content a::before {
    content: "\f105";
    font-size: 0.7rem;
    margin-top: 0.25rem;
    color: var(--orange);
    transition: transform 0.2s ease;
    --_fa-family: var(--fa-family,var(--fa-style-family,"Font Awesome 7 Free"));
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    display: var(--fa-display,inline-block);
    font-family: var(--_fa-family);
    font-feature-settings: normal;
    font-style: normal;
    font-synthesis: none;
    font-variant: normal;
    font-weight: var(--fa-style,900);
    line-height: 1;
    text-align: center;
    text-rendering: auto;
    width: var(--fa-width,1.25em);
}
.summary-content a:hover::before {
    transform: translateX(2px);
}
.dossier-article-card {
    border: 1px solid #e2e8f0 !important;
}