.pac26-wrap {
    --pac-red: #ed1b2f;
    --pac-black: #050505;
    --pac-muted: #6b7280;
    width: min(1180px, calc(100% - 32px));
    margin: 0 auto;
    padding: 70px 0;
    font-family: Inter, Arial, sans-serif;
}

.pac26-wrap * {
    box-sizing: border-box;
}

.pac26-head {
    max-width: 780px;
    margin: 0 auto 36px;
    text-align: center;
}

.pac26-head span,
.pac26-kicker {
    display: inline-block;
    color: var(--pac-red);
    font-size: 13px;
    font-weight: 900;
    letter-spacing: .08em;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.pac26-head h1,
.pac26-head h2,
.pac26-course-hero h1 {
    margin: 0;
    color: var(--pac-black);
    font-size: clamp(36px, 6vw, 70px);
    line-height: 1;
    letter-spacing: -.06em;
    font-weight: 900;
}

.pac26-head p,
.pac26-wrap p {
    color: var(--pac-muted);
    line-height: 1.75;
}

.pac26-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.pac26-card,
.pac26-empty,
.pac26-module,
.pac26-panel {
    background: #fff;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 26px;
    box-shadow: 0 22px 70px rgba(0,0,0,.07);
}

.pac26-card {
    overflow: hidden;
}

.pac26-img {
    aspect-ratio: 16 / 9;
    background: #111;
}

.pac26-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pac26-card-body,
.pac26-empty,
.pac26-module,
.pac26-panel {
    padding: 26px;
}

.pac26-badge {
    display: inline-flex;
    padding: 7px 11px;
    border-radius: 999px;
    background: rgba(237,27,47,.10);
    color: var(--pac-red);
    font-size: 12px;
    font-weight: 900;
    margin-bottom: 14px;
}

.pac26-card h3,
.pac26-module h3,
.pac26-panel h3 {
    margin: 0 0 12px;
    color: var(--pac-black);
    letter-spacing: -.04em;
}

.pac26-btn {
    border: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 46px;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--pac-red);
    color: #fff !important;
    text-decoration: none !important;
    font-size: 13px;
    font-weight: 900;
}

.pac26-btn b {
    display: grid;
    place-items: center;
    min-width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #fff;
    color: var(--pac-red);
}

.pac26-course-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, .9fr);
    gap: 34px;
    align-items: center;
}

.pac26-cover {
    min-height: 360px;
    border-radius: 34px;
    overflow: hidden;
    background: linear-gradient(135deg, #050505, #2a0509);
    color: white;
    display: grid;
    place-items: center;
    box-shadow: 0 30px 90px rgba(0,0,0,.18);
}

.pac26-cover img {
    width: 100%;
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.pac26-cover strong {
    font-size: 44px;
    line-height: .95;
    text-align: center;
    letter-spacing: -.06em;
}

.pac26-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin: 18px 0;
}

.pac26-tags span {
    padding: 7px 11px;
    border-radius: 999px;
    background: #f1f1f3;
    font-size: 13px;
    font-weight: 900;
}

.pac26-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
}

.pac26-program {
    padding-top: 70px;
}

.pac26-module {
    margin-bottom: 22px;
}

.pac26-lesson-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px;
    margin-top: 10px;
    border: 1px solid rgba(0,0,0,.08);
    border-radius: 18px;
    background: #fafafa;
}

.pac26-lesson-row a {
    color: var(--pac-red);
    font-weight: 900;
    text-decoration: none;
}

.pac26-lesson-row small {
    display: block;
    color: var(--pac-muted);
    margin-top: 4px;
}

.pac26-success {
    padding: 18px;
    margin: 18px 0;
    border-radius: 18px;
    background: #f0fdf4;
    color: #166534;
    font-weight: 900;
}

.pac26-alert {
    padding: 18px;
    border-radius: 18px;
    background: #fff7ed;
    color: #9a3412;
    font-weight: 900;
}

.pac26-video {
    overflow: hidden;
    border-radius: 28px;
    background: #050505;
    margin-bottom: 26px;
}

.pac26-video iframe {
    width: 100%;
    min-height: 520px;
    display: block;
}

.pac26-lesson-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 24px;
}

.pac26-panel {
    margin-bottom: 16px;
}

.pac26-back {
    display: inline-flex;
    margin-bottom: 20px;
    color: var(--pac-red);
    font-weight: 900;
    text-decoration: none;
}

.pac26-progress em {
    display: block;
    height: 10px;
    border-radius: 999px;
    background: #ececef;
    overflow: hidden;
    margin: 8px 0;
}

.pac26-progress i {
    display: block;
    height: 100%;
    background: var(--pac-red);
}

.pac26-admin-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 24px;
}

.pac26-admin-card {
    background: #fff;
    border: 1px solid #dcdcde;
    border-radius: 14px;
    padding: 20px;
}

@media(max-width: 980px) {
    .pac26-grid,
    .pac26-course-hero,
    .pac26-lesson-grid,
    .pac26-admin-grid {
        grid-template-columns: 1fr;
    }

    .pac26-video iframe {
        min-height: 260px;
    }
}