.learning-path-panel {
    background: #FFFFFF;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.06);
    margin-bottom: 16px;
    overflow: hidden;
}

.learning-path-panel__header {
    align-items: center;
    background: linear-gradient(135deg, #F8FAFC 0%, #ECFDF5 100%);
    border-bottom: 1px solid #E5E7EB;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    padding: 16px 18px;
}

.learning-path-panel__title-block {
    min-width: 0;
}

.learning-path-panel__eyebrow {
    align-items: center;
    color: #0F766E;
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 800;
    gap: 7px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.learning-path-panel__title-block h3 {
    color: #111827;
    font-size: 1.18rem;
    line-height: 1.25;
    margin: 0;
}

.learning-path-panel__title-block p {
    color: #64748B;
    font-size: 0.86rem;
    font-weight: 600;
    margin: 5px 0 0;
}

.learning-path-panel__summary {
    align-items: flex-end;
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 3px;
    text-align: right;
}

.learning-path-panel__summary span,
.learning-path-panel__summary small {
    color: #64748B;
    font-size: 0.78rem;
    font-weight: 700;
}

.learning-path-panel__summary strong {
    color: #FF5A1F;
    font-size: 1rem;
    line-height: 1.2;
}

.learning-path-panel__levels {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    padding: 14px;
}

.learning-path-panel__level {
    background: #F9FAFB;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-width: 0;
    padding: 13px;
}

.learning-path-panel__level-top {
    align-items: flex-start;
    display: flex;
    gap: 10px;
    min-width: 0;
}

.learning-path-panel__level-icon {
    align-items: center;
    background: #FFFFFF;
    border-radius: 8px;
    display: inline-flex;
    flex: 0 0 34px;
    height: 34px;
    justify-content: center;
    width: 34px;
}

.learning-path-panel__level-main {
    min-width: 0;
}

.learning-path-panel__level-name {
    color: #111827;
    font-size: 0.94rem;
    font-weight: 900;
    line-height: 1.3;
}

.learning-path-panel__level-meta {
    align-items: center;
    color: #64748B;
    display: flex;
    flex-wrap: wrap;
    font-size: 0.78rem;
    font-weight: 800;
    gap: 6px;
    margin-top: 5px;
}

.learning-path-panel__current-badge {
    background: #FFEDD5;
    border-radius: 8px;
    color: #C2410C;
    padding: 3px 7px;
}

.learning-path-panel__progress {
    background: #E5E7EB;
    border-radius: 999px;
    height: 8px;
    overflow: hidden;
}

.learning-path-panel__progress span {
    background: #14B8A6;
    border-radius: inherit;
    display: block;
    height: 100%;
}

.learning-path-panel__level-bottom,
.learning-path-panel__course-count {
    align-items: center;
    display: flex;
    font-size: 0.78rem;
    justify-content: space-between;
}

.learning-path-panel__level-bottom span,
.learning-path-panel__course-count {
    color: #64748B;
    font-weight: 700;
}

.learning-path-panel__level-bottom strong {
    color: #111827;
    font-weight: 900;
}

.learning-path-panel__course-count {
    gap: 6px;
    justify-content: flex-start;
}

.learning-path-panel__level--completed {
    background: #F0FDF4;
    border-color: #BBF7D0;
}

.learning-path-panel__level--completed .learning-path-panel__level-icon,
.learning-path-panel__level--completed .learning-path-panel__progress span {
    background: #22C55E;
    color: #FFFFFF;
}

.learning-path-panel__level--current {
    background: #FFF7ED;
    border-color: #FDBA74;
}

.learning-path-panel__level--current .learning-path-panel__level-icon,
.learning-path-panel__level--current .learning-path-panel__progress span {
    background: #FF5A1F;
    color: #FFFFFF;
}

.learning-path-panel__level--available {
    background: #EFF6FF;
    border-color: #BFDBFE;
}

.learning-path-panel__level--available .learning-path-panel__level-icon,
.learning-path-panel__level--available .learning-path-panel__progress span {
    background: #2563EB;
    color: #FFFFFF;
}

.learning-path-panel__level--locked {
    background: #F8FAFC;
    border-color: #CBD5E1;
}

.learning-path-panel__level--locked .learning-path-panel__level-icon,
.learning-path-panel__level--locked .learning-path-panel__progress span {
    background: #94A3B8;
    color: #FFFFFF;
}

@media (max-width: 1024px) {
    .learning-path-panel__levels {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .learning-path-panel__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .learning-path-panel__summary {
        align-items: flex-start;
        text-align: left;
    }
}
