/* Learning Styling */
/* Imports shared styles for tag badges, filters, cards, etc. */
@import url('shared.css');

/* Learning-specific status badges */
.status-badge.in-progress {
    background-color: #ffeaa7;
    color: #6c5b00;
}

.status-badge.complete {
    background-color: #d4edda;
    color: #155724;
}

.status-badge.stub {
    background-color: #f8d7da;
    color: #721c24;
}

/* Learning index page */
.learning-index {
    max-width: 100%;
}

.learning-filter {
    margin-bottom: 24px;
    padding: 16px;
    background-color: #f6f8fa;
    border-radius: 8px;
}

.learning-filter h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 0.9em;
    color: #586069;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Learning cards */
.learning-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.learning-card {
    padding: 16px 0;
    border-bottom: 1px solid #e1e4e8;
}

.learning-card:last-child {
    border-bottom: none;
}

.learning-card.hidden {
    display: none;
}

.learning-card-title {
    margin: 0 0 8px 0;
    font-size: 1.1em;
    line-height: 1.3;
}

.learning-card-title a {
    color: #0366d6;
    text-decoration: none;
}

.learning-card-title a:hover {
    text-decoration: underline;
}

.learning-card-meta {
    margin: 0 0 4px 0;
    font-size: 0.85em;
    color: #6a737d;
}

.learning-card-summary {
    margin: 8px 0;
    font-size: 0.9em;
    color: #444;
    line-height: 1.5;
}

.learning-card-tags {
    margin-top: 8px;
}

.learning-card-links {
    margin-top: 8px;
}

.learning-link {
    display: inline-block;
    padding: 3px 8px;
    margin-right: 6px;
    font-size: 0.75em;
    color: #0366d6;
    background-color: #f1f8ff;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.2s ease;
}

.learning-link:hover {
    background-color: #dbedff;
    text-decoration: none;
}

/* Individual learning page */
.learning-page {
    max-width: 100%;
}

.learning-page .learning-title {
    margin-bottom: 16px;
    font-size: 1.5em;
    line-height: 1.3;
}

.learning-page .learning-meta {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e1e4e8;
}

.learning-page .learning-tags {
    margin: 16px 0;
}

.learning-page .learning-summary {
    margin: 24px 0;
    padding: 16px;
    background-color: #f6f8fa;
    border-radius: 8px;
}

.learning-page .learning-summary h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1em;
    color: #24292e;
}

.learning-page .learning-summary p {
    margin: 0;
    font-size: 0.95em;
    line-height: 1.6;
    color: #444;
}

.learning-page .learning-content {
    margin-top: 24px;
}

/* Subtopic count */
.subtopic-count {
    font-size: 0.85em;
    color: #6a737d;
}
