/* /Components/Layout/MainLayout.razor.rz.scp.css */
.page[b-jpfpcps2ho] {
    position: relative;
    display: flex;
    flex-direction: column;
}

main[b-jpfpcps2ho] {
    flex: 1;
}

.sidebar[b-jpfpcps2ho] {
    background-image: linear-gradient(180deg, rgb(5, 39, 103) 0%, #3a0647 70%);
}

.top-row[b-jpfpcps2ho] {
    background-color: #f7f7f7;
    border-bottom: 1px solid #d6d5d5;
    justify-content: flex-end;
    height: 3.5rem;
    display: flex;
    align-items: center;
}

    .top-row[b-jpfpcps2ho]  a, .top-row[b-jpfpcps2ho]  .btn-link {
        white-space: nowrap;
        margin-left: 1.5rem;
        text-decoration: none;
    }

    .top-row[b-jpfpcps2ho]  a:hover, .top-row[b-jpfpcps2ho]  .btn-link:hover {
        text-decoration: underline;
    }

    .top-row[b-jpfpcps2ho]  a:first-child {
        overflow: hidden;
        text-overflow: ellipsis;
    }

@media (max-width: 640.98px) {
    .top-row[b-jpfpcps2ho] {
        justify-content: space-between;
    }

    .top-row[b-jpfpcps2ho]  a, .top-row[b-jpfpcps2ho]  .btn-link {
        margin-left: 0;
    }
}

@media (min-width: 641px) {
    .page[b-jpfpcps2ho] {
        flex-direction: row;
    }

    .sidebar[b-jpfpcps2ho] {
        width: 250px;
        height: 100vh;
        position: sticky;
        top: 0;
    }

    .top-row[b-jpfpcps2ho] {
        position: sticky;
        top: 0;
        z-index: 1;
    }

    .top-row.auth[b-jpfpcps2ho]  a:first-child {
        flex: 1;
        text-align: right;
        width: 0;
    }

    .top-row[b-jpfpcps2ho], article[b-jpfpcps2ho] {
        padding-left: 2rem !important;
        padding-right: 1.5rem !important;
    }
}

#blazor-error-ui[b-jpfpcps2ho] {
    color-scheme: light only;
    background: lightyellow;
    bottom: 0;
    box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    display: none;
    left: 0;
    padding: 0.6rem 1.25rem 0.7rem 1.25rem;
    position: fixed;
    width: 100%;
    z-index: 1000;
}

    #blazor-error-ui .dismiss[b-jpfpcps2ho] {
        cursor: pointer;
        position: absolute;
        right: 0.75rem;
        top: 0.5rem;
    }
/* /Components/Pages/Cours.razor.rz.scp.css */
/* === Hero === */
.cours-hero[b-2c7o6ghf1j] {
    background: linear-gradient(135deg, var(--mud-palette-primary) 0%, color-mix(in srgb, var(--mud-palette-primary) 80%, var(--mud-palette-primary-darken) 100%) 100%);
    color: var(--mud-palette-primary-text);
    padding: 4rem 0;
    text-align: center;
}

.cours-hero-title[b-2c7o6ghf1j] {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.cours-hero-intro[b-2c7o6ghf1j] {
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
    opacity: 0.95;
}

.cours-hero-actions[b-2c7o6ghf1j] {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* === Section titles === */
.cours-section-title[b-2c7o6ghf1j] {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    color: var(--mud-palette-text-primary);
}

/* === Benefits === */
.cours-benefits[b-2c7o6ghf1j] {
    padding: 4rem 0;
    background: var(--mud-palette-background);
}

/* === Mentors === */
.cours-mentors[b-2c7o6ghf1j] {
    padding: 4rem 0;
    background: var(--mud-palette-background-grey);
}

.cours-view-all[b-2c7o6ghf1j] {
    text-align: center;
    margin-top: 2rem;
}

/* === Description === */
.cours-description[b-2c7o6ghf1j] {
    padding: 4rem 0;
    background: var(--mud-palette-background);
}

.cours-description-text p[b-2c7o6ghf1j] {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: var(--mud-palette-text-secondary);
}

.cours-description-text p:last-child[b-2c7o6ghf1j] {
    margin-bottom: 0;
}

/* === FAQ === */
.cours-faq[b-2c7o6ghf1j] {
    padding: 4rem 0;
    background: var(--mud-palette-background-grey);
}

.cours-faq-list[b-2c7o6ghf1j] {
    max-width: 700px;
    margin: 0 auto;
}

.cours-faq-item[b-2c7o6ghf1j] {
    border: 1px solid var(--mud-palette-divider);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    background: var(--mud-palette-surface);
    overflow: hidden;
}

.cours-faq-item summary[b-2c7o6ghf1j] {
    padding: 1rem 1.25rem;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--mud-palette-text-primary);
}

.cours-faq-item summary[b-2c7o6ghf1j]::after {
    content: '+';
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--mud-palette-primary);
    transition: transform 0.2s ease;
}

.cours-faq-item[open] summary[b-2c7o6ghf1j]::after {
    content: '\2212';
    transform: rotate(180deg);
}

.cours-faq-item p[b-2c7o6ghf1j] {
    padding: 0 1.25rem 1rem 1.25rem;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--mud-palette-text-secondary);
}

/* === CTA === */
.cours-cta[b-2c7o6ghf1j] {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--mud-palette-primary) 0%, color-mix(in srgb, var(--mud-palette-primary) 80%, var(--mud-palette-primary-darken) 100%) 100%);
}

.cours-cta-content[b-2c7o6ghf1j] {
    text-align: center;
    color: var(--mud-palette-primary-text);
}

.cours-cta-title[b-2c7o6ghf1j] {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cours-cta-text[b-2c7o6ghf1j] {
    font-size: 1.1rem;
    max-width: 550px;
    margin: 0 auto 2rem auto;
    line-height: 1.6;
    opacity: 0.95;
}

/* === Responsive === */
@media (max-width: 600px) {
    .cours-hero-title[b-2c7o6ghf1j] {
        font-size: 1.75rem;
    }

    .cours-hero-intro[b-2c7o6ghf1j] {
        font-size: 1rem;
    }

    .cours-section-title[b-2c7o6ghf1j] {
        font-size: 1.4rem;
    }

    .cours-cta-title[b-2c7o6ghf1j] {
        font-size: 1.5rem;
    }
}
