/* SDML Academy — accès admin discret dans la navigation */
.catalogue-admin-link {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    padding: 0 13px;
    border: 1px solid rgba(31, 60, 136, 0.13);
    border-radius: 11px;
    background: #fff;
    color: #12265A;
    font-size: 12px;
    font-weight: 750;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
    transition: border-color .2s ease, background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.catalogue-admin-link svg {
    width: 15px;
    height: 15px;
    flex: 0 0 auto;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.8;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.catalogue-admin-link:hover {
    transform: translateY(-1px);
    border-color: rgba(31, 60, 136, 0.26);
    background: #F8FAFF;
    box-shadow: 0 7px 16px rgba(18, 38, 90, 0.07);
}

.catalogue-admin-link:focus-visible {
    outline: 3px solid rgba(244, 123, 32, 0.42);
    outline-offset: 2px;
}

@media (max-width: 720px) {
    .catalogue-admin-link {
        width: 40px;
        min-width: 40px;
        min-height: 40px;
        padding: 0;
        border-radius: 10px;
    }

    .catalogue-admin-link span {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .catalogue-admin-link { transition: none; }
}
