.article-hero {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-tertiary) 50%, #0f3460 100%);
    padding: 120px 20px 60px;
    text-align: center;
    margin-top: 70px;
}
body.light-mode .article-hero {
    background: linear-gradient(135deg, #f8f9fa 0%, #e3e7f1 50%, #d4dff7 100%);
}
.article-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -1px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.article-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
}
.article-category {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
}
.article-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
    background: var(--bg-primary);
}
.article-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 50px 0 20px;
    color: var(--text-primary);
    letter-spacing: -0.5px;
}
.article-content h3 {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 30px 0 15px;
    color: var(--text-primary);
}
.article-content h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 25px 0 12px;
    color: var(--text-primary);
}
.article-content p {
    font-size: 1.15rem;
    line-height: 1.9;
    margin-bottom: 25px;
    color: var(--text-secondary);
}
.article-content ul {
    margin: 20px 0;
    padding-left: 25px;
    list-style: none;
}
.article-content li {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 12px;
    color: var(--text-secondary);
    position: relative;
}
.article-content li:last-child {
    margin-bottom: 0;
}
.article-content li:before {
    content: "•";
    color: var(--accent-start);
    font-weight: bold;
    font-size: 1.2rem;
    position: absolute;
    left: -20px;
    top: 2px;
}
.article-content strong {
    color: var(--text-primary);
    font-weight: 600;
}
.highlight-box {
    background: var(--card-bg);
    border-left: 4px solid var(--accent-start);
    padding: 25px;
    margin: 40px 0;
    border-radius: 8px;
}
body.light-mode .highlight-box {
    background: #f8f9fa;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.cta-box {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    margin: 60px 0;
}
.cta-box h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}
.cta-box p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 25px;
    font-size: 1.1rem;
}
.cta-button {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s;
}
.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
.leadership-style-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 25px;
    margin: 40px 0;
}
.leadership-style-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 16px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
}
body.light-mode .leadership-style-card {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}
.leadership-style-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-start);
}
.leadership-style-card h3 {
    color: var(--accent-start);
    font-size: 1.4rem;
    margin-bottom: 8px;
    font-weight: 700;
}
.leadership-style-card .subtitle {
    color: var(--text-secondary);
    font-size: 0.95rem;
    margin-bottom: 20px;
    font-weight: 500;
}
.leadership-style-card .characteristics ul {
    list-style: none;
    padding: 0;
    text-align: left;
}
.leadership-style-card .characteristics li {
    padding: 6px 0;
    border-bottom: 1px solid var(--card-border);
    font-size: 0.95rem;
    line-height: 1.5;
}
.leadership-style-card .characteristics li:last-child {
    border-bottom: none;
}
.leadership-style-card .characteristics li:before {
    content: "✓";
    color: #28a745;
    font-weight: bold;
    margin-right: 8px;
}

@media (max-width: 768px) {
    .article-hero h1 {
        font-size: 2.2rem;
    }
    .article-content h2 {
        font-size: 1.8rem;
    }
    .article-content h3 {
        font-size: 1.4rem;
    }
    .article-content p {
        font-size: 1.05rem;
    }
    .article-meta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
    .leadership-style-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .leadership-style-card {
        padding: 25px;
    }
}
