.has-sidebar-inner {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 0 48px;
    align-items: start;
    width: 93vw;
    max-width: 1920px;
    margin: 0 auto;
    padding: 0 0.5em;
}

.has-sidebar-inner .main-content {
    min-width: 0;
    width: 100%;
    overflow: hidden;
}

.has-sidebar-inner .main-content > article,
.has-sidebar-inner .main-content > section {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
}

.has-sidebar-inner .main-content > article > .wrapper,
.has-sidebar-inner .main-content > article > section,
.has-sidebar-inner .main-content > article > section.wrapper,
.has-sidebar-inner .main-content > article > div.wrapper {
    max-width: 100%;
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
}

.has-sidebar-inner .main-content article .wrapper,
.has-sidebar-inner .main-content article section {
    max-width: 100%;
    box-sizing: border-box;
}

.has-sidebar-inner .sidebar {
    position: sticky;
    top: 0;
    align-self: start;
    min-width: 0;
}

.has-sidebar-inner .sidebar .suggestion-wrapper {
    background-color: var(--alice-blue-2);
    padding: 2rem 1.75rem;
    border-radius: 10px;
    overflow: visible;
}

.has-sidebar-inner .sidebar .suggestion-wrapper .suggestion-title {
    margin: 0 0 1.25rem;
}

.has-sidebar-inner .sidebar .c-link {
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    color: var(--oxford-blue);
    margin: 0;
    padding: 0.9rem 1.25rem;
    border: 0.5px solid rgba(0, 32, 74, 0.102);
    border-radius: 5px;
    transition: background-color 0.2s ease-in-out, color 0.15s ease-in-out;
}

.has-sidebar-inner .sidebar .c-link:hover {
    background-color: var(--bleu-de-france);
    color: var(--white);
}

.has-sidebar-inner .sidebar .c-link::after {
    content: "\279C";
    font-size: inherit;
}

.has-sidebar-inner .sidebar .c-link:hover::after {
    color: var(--white);
}

.has-sidebar-inner .sidebar .c-link:not(.animate) {
    animation: faded-slide-up 1s both 0.2s;
}

.has-sidebar-inner .sidebar .suggestion-wrapper .c-link {
    margin: 1rem 0;
}

.has-sidebar-inner .sidebar .suggestion-wrapper .c-link:not(:hover):not(.current) {
    background-color: var(--white);
}

.has-sidebar-inner .sidebar .suggestion-wrapper .c-link:last-of-type {
    margin-bottom: 0;
}

@media (max-width: 1080px) {
    .has-sidebar-inner {
        grid-template-columns: 1fr 260px;
        gap: 0 32px;
    }
}

@media (max-width: 800px) {
    .has-sidebar-inner {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .has-sidebar-inner .sidebar {
        position: static;
        order: -1;
        padding: 1rem;
        align-self: auto;
    }
}