/* Learning Path Styles */
.msh-learning-path-container {
    max-width: 800px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #242424;
}

.msh-lp-description {
    margin-bottom: 32px;
}

.msh-lp-description p {
    font-size: 16px;
    line-height: 1.6;
    color: #000000;
    margin-bottom: 16px;
}
.msh-lp-description p:last-child {
    margin-bottom: 0;
}

.msh-lp-header h1 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 8px;
}

.msh-lp-header p {
    font-size: 14px;
    color: #6b6b6b;
    margin-bottom: 24px;
}

.msh-lp-accordion {
    background: #fafafa;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.msh-lp-section {
    border-bottom: 1px solid #f0f0f0;
}

.msh-lp-section:last-child {
    border-bottom: none;
}

.msh-lp-section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    transition: background-color 0.2s;
}

.msh-lp-section-header:hover {
    background: #f0f0f0;
}

.msh-lp-section-header:focus-visible {
    outline: 2px solid #22c55e;
    outline-offset: -2px;
    background: #f0f0f0;
}

.msh-lp-section-header h2 {
    font-size: 18px !important;
    font-weight: 600;
    margin: 0;
    line-height: 26px !important;
}

.msh-lp-meta {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #6b6b6b;
    font-size: 14px;
}

.msh-lp-icon {
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
}

.msh-lp-section.active .msh-lp-icon {
    transform: rotate(180deg);
}

.msh-lp-section-content {
    display: none;
    padding: 0;
    background: #fff;
}

.msh-lp-post-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.msh-lp-post-list li {
    border-bottom: 1px solid #f0f0f0;
}

.msh-lp-post-list li:last-child {
    border-bottom: none;
}

.msh-lp-post-list a {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    text-decoration: none;
    color: #242424;
    transition: background-color 0.2s;
}

.msh-lp-post-list a:hover {
    background: #fafafa;
}

.msh-lp-post-list a:focus-visible {
    outline: 2px solid #22c55e;
    outline-offset: -2px;
    background: #fafafa;
}

.msh-lp-post-icon {
    display: flex;
    align-items: center;
    color: #6b6b6b;
    margin-right: 16px;
}

.msh-lp-post-title {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

.msh-lp-check-icon {
    display: flex;
    align-items: center;
    margin-left: 16px;
    opacity: 0;
    /* Hidden by default */
}

/* Show check icon for completed items */
.msh-lp-post-list li.completed .msh-lp-check-icon {
    opacity: 1;
    background: #f0fdf4;
    padding: 4px;
    border-radius: 4px;
}
@media only screen and (max-width: 768px) {
    .msh-lp-section-header {
    padding: 15px 15px;
}
   .msh-lp-post-title {
    flex: 1;
    font-size: 14px;
    line-height: 1.5;
}
    .msh-lp-post-list a {
    padding: 12px 15px;
}
.msh-lp-section-header h2 {
    font-size: 16px !important;
    font-weight: 600;
    margin: 0;
    line-height: 26px !important;
}
}