/* Professional CV Guide Styles */
.cv-hero-section {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    height: 400px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    color: white;
    font-size: 5rem;
}

.article-header {
    margin-bottom: 2rem;
}

.article-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.article-meta-info {
    color: #666;
    font-size: 1rem;
}

[data-theme="dark"] .article-meta-info {
    color: var(--text-light);
}

.article-body {
    line-height: 1.8;
    font-size: 1.1rem;
}

.article-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem 1rem;
}

.related-articles {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #eee;
}

[data-theme="dark"] .related-articles {
    border-top-color: var(--border-color);
}

.related-list {
    list-style: none;
    padding: 0;
}

.related-list li {
    margin-bottom: 1rem;
}

.related-link {
    color: #667eea;
    text-decoration: none;
    font-weight: 600;
}

[data-theme="dark"] .related-link {
    color: var(--primary-light);
}

.cv-example-box {
    background: var(--background-alt);
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 1.5rem 0;
    border-radius: 0 4px 4px 0;
}

.cv-checklist {
    list-style: none;
    padding: 0;
}

.cv-checklist li {
    margin-bottom: 0.5rem;
    padding-left: 1.5rem;
    position: relative;
}

.cv-checklist li::before {
    content: '✅';
    position: absolute;
    left: 0;
}