/* Styles extraits de page-admissions.php — servis en fichier cacheable (voir colibris_enqueue_template_css). */

    .adm-help-band {
        background: var(--color-bg, #faf7f2);
        padding: 32px max(40px, 5vw);
        font-family: 'Montserrat', sans-serif;
    }
    .adm-help-band__inner {
        max-width: 1100px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 48px;
        background: #ffffff;
        border: 1px solid rgba(26, 22, 18, 0.07);
        border-radius: 20px;
        padding: 28px 40px;
        box-shadow: 0 2px 16px rgba(26, 22, 18, 0.06);
        min-height: 110px;
    }
    .adm-help-band__left {
        flex-shrink: 0;
    }
    .adm-help-band__title {
        font-size: 1.05rem;
        font-weight: 700;
        color: #1a1612;
        margin: 0 0 4px;
        letter-spacing: -0.01em;
    }
    .adm-help-band__sub {
        font-size: 0.78rem;
        color: #6b6460;
        margin: 0;
        line-height: 1.5;
    }
    .adm-help-band__actions {
        display: flex;
        align-items: center;
        gap: 0;
        flex: 1;
        justify-content: flex-end;
        flex-wrap: wrap;
    }
    .adm-help-action {
        display: flex;
        align-items: center;
        gap: 8px;
        padding: 10px 20px;
        font-size: 0.8rem;
        font-weight: 600;
        color: #1a1612;
        text-decoration: none;
        border-radius: 10px;
        transition: background 0.18s ease, color 0.18s ease;
        white-space: nowrap;
    }
    .adm-help-action:hover {
        background: rgba(26, 22, 18, 0.05);
        text-decoration: none;
        color: #1a1612;
    }
    .adm-help-band__sep {
        width: 1px;
        height: 28px;
        background: rgba(26, 22, 18, 0.1);
        flex-shrink: 0;
    }
    @media (max-width: 768px) {
        .adm-help-band__inner {
            flex-direction: column;
            align-items: flex-start;
            gap: 20px;
            padding: 24px 24px;
            min-height: auto;
        }
        .adm-help-band__actions {
            justify-content: flex-start;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4px;
            width: 100%;
        }
        .adm-help-band__sep { display: none; }
        .adm-help-action { padding: 10px 12px; font-size: 0.75rem; }
    }
