/* =============================================================
   MITS Parent Zone – Strefa Rodzica
   Scope: .pr-app
   Accent: #2A5FAC  |  Background: #F0F4FA
   ============================================================= */

/* ── CSS Variables ──────────────────────────────────────────── */
.pr-app {
    --pr-bg:            #F0F4FA;
    --pr-soft-blue:     #E4EBF7;
    --pr-soft-blue2:    #D0DDEF;
    --pr-accent:        #2A5FAC;
    --pr-accent-hover:  #1E4D94;
    --pr-accent-light:  rgba(42,95,172,0.08);
    --pr-accent-light2: rgba(42,95,172,0.16);
    --pr-accent-mid:    #4A7FC4;
    --pr-text:          #1E2A3A;
    --pr-text-sec:      #4A5568;
    --pr-text-light:    #8A98AA;
    --pr-white:         #FFFFFF;
    --pr-border:        #DDE6F0;
    --pr-shadow-sm:     0 2px 8px rgba(42,95,172,0.07);
    --pr-shadow-md:     0 4px 20px rgba(42,95,172,0.11);
    --pr-r-sm:  8px;
    --pr-r-md:  12px;
    --pr-r-lg:  18px;
    --pr-r-xl:  24px;
    --pr-r-full: 50px;
    --pr-sidebar: 290px;
    --pr-header:  72px;
    --pr-transition: 0.2s cubic-bezier(0.4,0,0.2,1);
    --pr-spring: 0.4s cubic-bezier(0.34,1.56,0.64,1);

    font-family: 'DM Sans', system-ui, sans-serif;
    background: var(--pr-bg);
    color: var(--pr-text);
    -webkit-font-smoothing: antialiased;
}

/* ── Layout ─────────────────────────────────────────────────── */
.pr-app {
    display: flex;
    min-height: calc(100vh - var(--pr-header));
}

.pr-main {
    flex: 1;
    min-width: 0;
    padding: 36px 44px 80px;
    min-height: calc(100vh - var(--pr-header));
    background: var(--pr-bg);
}

/* ── Sidebar ────────────────────────────────────────────────── */
.pr-sidebar {
    width: var(--pr-sidebar);
    flex-shrink: 0;
    position: sticky;
    top: var(--pr-header);
    height: calc(100vh - var(--pr-header));
    background: var(--pr-white);
    border-right: 1px solid var(--pr-border);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px 12px 24px;
    display: flex;
    flex-direction: column;
}

.pr-sidebar::-webkit-scrollbar { width: 4px; }
.pr-sidebar::-webkit-scrollbar-thumb { background: var(--pr-border); border-radius: 4px; }

/* ── User Card ──────────────────────────────────────────────── */
.pr-user-card {
    display: block;
    background: linear-gradient(135deg, var(--pr-accent) 0%, #3D72C4 100%);
    border-radius: var(--pr-r-lg);
    padding: 16px 14px;
    margin-bottom: 12px;
    text-decoration: none;
    transition: opacity var(--pr-transition);
}

.pr-user-card:hover { opacity: 0.92; }

.pr-user-card__avatar-row {
    display: flex;
    align-items: center;
    gap: 10px;
}

.pr-user-card__avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255,255,255,0.25);
    border: 2px solid rgba(255,255,255,0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    color: #fff;
    flex-shrink: 0;
}

.pr-user-card__name {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
}

.pr-user-card__email {
    display: block;
    font-size: 0.68rem;
    color: rgba(255,255,255,0.65);
    margin-top: 1px;
}

.pr-user-card__badge {
    display: inline-block;
    margin-top: 8px;
    background: rgba(255,255,255,0.18);
    color: rgba(255,255,255,0.9);
    font-size: 0.65rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--pr-r-full);
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* ── Child selector ─────────────────────────────────────────── */
.pr-child-label {
    display: block;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--pr-text-light);
    text-transform: uppercase;
    padding: 12px 10px 4px;
}

.pr-child-select {
    width: 100%;
    padding: 9px 30px 9px 12px;
    border: 1.5px solid var(--pr-border);
    border-radius: var(--pr-r-md);
    background: var(--pr-white);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pr-text);
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238A98AA' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
    transition: border-color var(--pr-transition);
    margin-bottom: 4px;
}

.pr-child-select:focus { outline: none; border-color: var(--pr-accent); }

.pr-child-single {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--pr-text);
    padding: 9px 12px;
    border: 1.5px solid var(--pr-border);
    border-radius: var(--pr-r-md);
    margin-bottom: 4px;
    background: var(--pr-soft-blue);
}

/* ── Sidebar sections ───────────────────────────────────────── */
.pr-sidebar__content { flex: 1; }

.pr-sidebar__section-label {
    display: block;
    font-size: 0.67rem;
    font-weight: 700;
    letter-spacing: 0.09em;
    color: var(--pr-text-light);
    text-transform: uppercase;
    padding: 14px 10px 6px;
}

.pr-sidebar__empty {
    font-size: 0.78rem;
    color: var(--pr-text-light);
    padding: 4px 10px 10px;
    font-style: italic;
    margin: 0;
}

/* ── Workshop list (sidebar) ────────────────────────────────── */
.pr-workshop-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pr-workshop-item { margin-bottom: 2px; }

.pr-workshop-item__link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--pr-r-md);
    text-decoration: none;
    transition: background var(--pr-transition);
}

.pr-workshop-item__link:hover { background: var(--pr-accent-light); }
.pr-workshop-item--active .pr-workshop-item__link { background: var(--pr-accent-light2); }

.pr-workshop-item__icon {
    width: 32px;
    height: 32px;
    border-radius: var(--pr-r-sm);
    background: var(--pr-soft-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.pr-workshop-item--active .pr-workshop-item__icon { background: var(--pr-accent); }

.pr-workshop-item__info { flex: 1; min-width: 0; }

.pr-workshop-item__name {
    display: block;
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--pr-text);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.3;
}

.pr-workshop-item__meta { display: block; font-size: 0.7rem; color: var(--pr-text-light); margin-top: 1px; }

/* ── Course list (sidebar) ──────────────────────────────────── */
.pr-course-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pr-course-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: var(--pr-r-md);
    margin-bottom: 2px;
    cursor: default;
}

.pr-course-item__icon { font-size: 0.9rem; flex-shrink: 0; }
.pr-course-item__title { flex: 1; font-size: 0.83rem; font-weight: 600; color: var(--pr-text); line-height: 1.3; }
.pr-course-item__lock { color: var(--pr-text-light); flex-shrink: 0; display: flex; }

.pr-courses-link {
    display: block;
    padding: 4px 10px 10px;
    font-size: 0.72rem;
    color: var(--pr-accent);
    font-weight: 600;
    text-decoration: none;
    transition: opacity var(--pr-transition);
}

.pr-courses-link:hover { opacity: 0.75; }

/* ── Sidebar footer / logout ────────────────────────────────── */
.pr-sidebar__footer {
    margin-top: auto;
    padding-top: 16px;
    border-top: 1px solid var(--pr-border);
    margin-left: -12px;
    margin-right: -12px;
    padding-left: 12px;
    padding-right: 12px;
}

.pr-logout-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: var(--pr-r-md);
    cursor: pointer;
    transition: all var(--pr-transition);
    color: var(--pr-text-light);
    font-size: 0.83rem;
    text-decoration: none;
}

.pr-logout-btn:hover { background: #FEF2F2; color: #C0392B; }

/* ── Breadcrumb ─────────────────────────────────────────────── */
.pr-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: var(--pr-text-light);
    margin-bottom: 24px;
}

.pr-breadcrumb__item { color: var(--pr-text-sec); text-decoration: none; transition: color var(--pr-transition); }
.pr-breadcrumb__item:hover { color: var(--pr-accent); }
.pr-breadcrumb__item--current { color: var(--pr-text); font-weight: 500; }
.pr-breadcrumb__sep { font-size: 0.65rem; color: var(--pr-border); }

/* ── Welcome ────────────────────────────────────────────────── */
.pr-welcome { max-width: 720px; }

.pr-welcome__greeting {
    font-family: 'Baloo 2', sans-serif;
    font-size: clamp(1.6rem, 2.8vw, 2.1rem);
    font-weight: 800;
    color: var(--pr-text);
    margin-bottom: 6px;
    line-height: 1.2;
}

.pr-welcome__sub {
    font-size: 0.95rem;
    color: var(--pr-text-sec);
    margin-bottom: 28px;
}

/* ── CTA Banner ─────────────────────────────────────────────── */
.pr-cta-banner {
    background: linear-gradient(135deg, var(--pr-accent) 0%, #1A4A8A 100%);
    border-radius: var(--pr-r-xl);
    padding: 32px 36px;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.pr-cta-banner::before {
    content: '';
    position: absolute;
    right: -40px;
    top: -40px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    pointer-events: none;
}

.pr-cta-banner::after {
    content: '';
    position: absolute;
    right: 60px;
    bottom: -60px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    pointer-events: none;
}

.pr-cta-banner__eyebrow {
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.6);
    margin-bottom: 10px;
    position: relative;
    z-index: 1;
}

.pr-cta-banner__title {
    font-family: 'Baloo 2', sans-serif;
    font-size: clamp(1.25rem, 2.2vw, 1.65rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 12px;
    max-width: 480px;
    position: relative;
    z-index: 1;
}

.pr-cta-banner__body {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.65;
    margin-bottom: 24px;
    max-width: 440px;
    position: relative;
    z-index: 1;
}

.pr-cta-banner__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    color: var(--pr-accent);
    font-family: 'DM Sans', sans-serif;
    font-weight: 800;
    font-size: 0.92rem;
    padding: 13px 26px;
    border-radius: var(--pr-r-full);
    text-decoration: none;
    transition: all var(--pr-spring);
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    position: relative;
    z-index: 1;
}

.pr-cta-banner__btn:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 8px 28px rgba(0,0,0,0.25); }

/* ── Products Summary ───────────────────────────────────────── */
.pr-products__heading {
    font-size: 1rem;
    font-weight: 700;
    color: var(--pr-text);
    margin-bottom: 16px;
}

.pr-products-summary { display: flex; flex-direction: column; gap: 24px; }

.pr-child-block__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.pr-child-block__avatar {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pr-accent), var(--pr-accent-mid));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Baloo 2', sans-serif;
    font-weight: 800;
    font-size: 0.75rem;
    color: #fff;
    flex-shrink: 0;
}

.pr-child-block__name {
    font-family: 'Baloo 2', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--pr-text);
}

.pr-child-block__count {
    font-size: 0.75rem;
    color: var(--pr-text-light);
    margin-left: auto;
}

.pr-child-block__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

/* ── Product Tag ────────────────────────────────────────────── */
.pr-product-tag {
    background: var(--pr-white);
    border: 1px solid var(--pr-border);
    border-radius: var(--pr-r-md);
    padding: 12px 14px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    text-decoration: none;
    color: inherit;
}

.pr-product-tag--clickable { cursor: pointer; transition: border-color var(--pr-transition); }
.pr-product-tag--clickable:hover { border-color: var(--pr-accent-mid); }

.pr-product-tag__icon { font-size: 1rem; flex-shrink: 0; margin-top: 1px; }
.pr-product-tag__info { flex: 1; min-width: 0; }
.pr-product-tag__name { display: block; font-size: 0.82rem; font-weight: 600; color: var(--pr-text); line-height: 1.3; margin-bottom: 2px; }
.pr-product-tag__type { display: block; font-size: 0.7rem; color: var(--pr-text-light); }

.pr-product-tag__badge {
    font-size: 0.62rem;
    font-weight: 700;
    padding: 2px 7px;
    border-radius: var(--pr-r-full);
    white-space: nowrap;
    flex-shrink: 0;
    margin-top: 2px;
}

.pr-product-tag__badge--workshop { background: rgba(42,95,172,0.1); color: var(--pr-accent); }
.pr-product-tag__badge--course   { background: rgba(234,120,30,0.1); color: #B85C1A; }

.pr-no-products-inline {
    background: var(--pr-soft-blue);
    border-radius: var(--pr-r-md);
    padding: 16px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--pr-text-light);
    grid-column: 1 / -1;
    line-height: 1.6;
}

.pr-no-products-inline__link {
    color: var(--pr-accent);
    font-weight: 600;
    text-decoration: underline;
}

/* ── Workshop View ──────────────────────────────────────────── */
.pr-workshop-view { max-width: 700px; }

.pr-workshop-header {
    background: linear-gradient(135deg, var(--pr-soft-blue) 0%, var(--pr-soft-blue2) 100%);
    border-radius: var(--pr-r-xl);
    padding: 28px 32px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.pr-workshop-header::before {
    content: '🧩';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 4rem;
    opacity: 0.15;
    pointer-events: none;
}

.pr-workshop-header__tag {
    display: inline-block;
    background: #fff;
    color: var(--pr-accent);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: var(--pr-r-full);
    margin-bottom: 10px;
    letter-spacing: 0.04em;
}

.pr-workshop-header__title {
    font-family: 'Baloo 2', sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    color: var(--pr-text);
    margin-bottom: 4px;
}

.pr-workshop-header__sub { font-size: 0.88rem; color: var(--pr-text-sec); margin-bottom: 10px; }

.pr-workshop-header__child-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    background: rgba(255,255,255,0.7);
    border-radius: var(--pr-r-md);
    padding: 8px 14px;
    font-size: 0.8rem;
    color: var(--pr-text-sec);
}

.pr-workshop-header__child-note svg { stroke: var(--pr-accent); flex-shrink: 0; }

/* ── Info Note ──────────────────────────────────────────────── */
.pr-info-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    background: var(--pr-soft-blue);
    border: 1px solid var(--pr-border);
    border-radius: var(--pr-r-lg);
    padding: 14px 18px;
    margin-bottom: 20px;
    font-size: 0.82rem;
    color: var(--pr-text-sec);
    line-height: 1.55;
}

.pr-info-note svg { stroke: var(--pr-accent); flex-shrink: 0; margin-top: 1px; }

/* ── Sessions ───────────────────────────────────────────────── */
.pr-sessions { display: flex; flex-direction: column; gap: 12px; }
.pr-sessions-empty { padding: 20px 0; font-size: 0.9rem; color: var(--pr-text-light); }

.pr-session-card {
    background: var(--pr-white);
    border: 1px solid var(--pr-border);
    border-radius: var(--pr-r-lg);
    padding: 18px 20px;
    display: flex;
    flex-direction: column;
    gap: 0;
    transition: all var(--pr-transition);
}

.pr-session-card:hover { border-color: var(--pr-accent-mid); box-shadow: var(--pr-shadow-sm); }

.pr-session-card__top {
    display: flex;
    align-items: center;
    gap: 16px;
}

.pr-session-card__bottom {
    padding-left: 76px;
    margin-top: 10px;
}

/* ── Date Box ───────────────────────────────────────────────── */
.pr-date-box {
    background: var(--pr-accent-light2);
    border-radius: var(--pr-r-md);
    padding: 8px 14px;
    text-align: center;
    flex-shrink: 0;
    min-width: 60px;
}

.pr-date-box--tbd { background: var(--pr-soft-blue); }

.pr-date-box__day {
    display: block;
    font-family: 'Baloo 2', sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--pr-accent);
    line-height: 1;
}

.pr-date-box__month {
    display: block;
    font-size: 0.68rem;
    color: var(--pr-accent);
    font-weight: 600;
    text-transform: uppercase;
}

.pr-session-card__info { flex: 1; }
.pr-session-card__title { font-size: 0.9rem; font-weight: 600; color: var(--pr-text); margin-bottom: 3px; }

.pr-session-card__time {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.78rem;
    color: var(--pr-text-light);
    margin: 0;
}

/* ── Session Status ─────────────────────────────────────────── */
.pr-session-status {
    font-size: 0.72rem;
    font-weight: 700;
    padding: 5px 12px;
    border-radius: var(--pr-r-full);
    flex-shrink: 0;
    white-space: nowrap;
}

.pr-session-status--done     { background: var(--pr-soft-blue); color: var(--pr-text-light); }
.pr-session-status--upcoming { background: var(--pr-accent-light2); color: var(--pr-accent); }
.pr-session-status--ongoing  { background: #fef3c7; color: #92400e; }

.pr-session-card__note {
    padding: 10px 14px;
    background: var(--pr-bg);
    border-radius: var(--pr-r-sm);
    font-size: 0.78rem;
    color: var(--pr-text-sec);
    line-height: 1.5;
}

.pr-session-file-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--pr-white);
    border: 1px solid var(--pr-border);
    color: var(--pr-text-sec);
    font-size: 0.75rem;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: var(--pr-r-full);
    text-decoration: none;
    transition: all var(--pr-transition);
    margin-top: 8px;
}

.pr-session-file-btn:hover { border-color: var(--pr-accent); color: var(--pr-accent); background: var(--pr-accent-light); }

/* ── Courses View ───────────────────────────────────────────── */
.pr-courses-view { max-width: 660px; }

.pr-courses-view__title {
    font-family: 'Baloo 2', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--pr-text);
    margin-bottom: 6px;
}

.pr-courses-view__sub {
    font-size: 0.9rem;
    color: var(--pr-text-sec);
    margin-bottom: 20px;
}

.pr-course-cards { display: flex; flex-direction: column; gap: 12px; }

.pr-course-card {
    background: var(--pr-white);
    border: 1px solid var(--pr-border);
    border-radius: var(--pr-r-lg);
    padding: 20px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: border-color var(--pr-transition);
}

.pr-course-card:hover { border-color: var(--pr-accent-mid); }

.pr-course-card__icon {
    width: 48px;
    height: 48px;
    border-radius: var(--pr-r-md);
    background: var(--pr-soft-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.pr-course-card__info { flex: 1; }

.pr-course-card__name {
    font-family: 'Baloo 2', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--pr-text);
    margin-bottom: 3px;
}

.pr-course-card__meta { font-size: 0.78rem; color: var(--pr-text-light); margin: 0 0 4px; }

.pr-course-card__lock {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.73rem;
    color: var(--pr-text-light);
    margin: 0;
}

.pr-course-card__badge {
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--pr-r-full);
    flex-shrink: 0;
    background: var(--pr-soft-blue);
    color: var(--pr-accent);
}

/* ── Empty State ────────────────────────────────────────────── */
.pr-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 40px;
    max-width: 460px;
    margin: 0 auto;
}

.pr-empty__icon {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--pr-soft-blue), var(--pr-soft-blue2));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    margin-bottom: 24px;
    box-shadow: 0 8px 32px rgba(42,95,172,0.15);
}

.pr-empty__title {
    font-family: 'Baloo 2', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--pr-text);
    margin-bottom: 12px;
    line-height: 1.3;
}

.pr-empty__sub {
    font-size: 0.9rem;
    color: var(--pr-text-sec);
    line-height: 1.7;
    margin-bottom: 24px;
}

.pr-empty__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--pr-accent);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 13px 24px;
    border-radius: var(--pr-r-full);
    text-decoration: none;
    transition: all var(--pr-spring);
    box-shadow: 0 4px 20px rgba(42,95,172,0.35);
}

.pr-empty__cta:hover { background: var(--pr-accent-hover); transform: translateY(-2px); }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 900px) {
    .pr-sidebar {
        position: fixed;
        top: var(--pr-header);
        left: 0;
        height: calc(100vh - var(--pr-header));
        transform: translateX(-100%);
        transition: transform var(--pr-transition);
        z-index: 200;
    }
    .pr-sidebar.is-open { transform: translateX(0); }
    .pr-main { padding: 24px 20px 60px; }
}

@media (max-width: 600px) {
    .pr-child-block__grid { grid-template-columns: 1fr; }
    .pr-cta-banner { padding: 24px 20px; }
    .pr-course-card { flex-wrap: wrap; }
    .pr-session-card__bottom { padding-left: 0; }
}
