/* Style dla podstron z artykułami */
body {
    background-color: var(--light-gray);
}

.article-header {
    background-color: var(--white);
    padding: 20px 0;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
}

.article-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.back-link {
    background: var(--primary-green);
    color: white;
    padding: 10px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-link:hover {
    background: #2F855A;
}

.article-container {
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    background-color: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
}

.article-content h3 {
    font-size: 32px;
    margin-bottom: 25px;
    color: var(--primary-blue);
    line-height: 1.3;
}

.article-content h4 {
    font-size: 22px;
    margin: 35px 0 15px;
    color: var(--dark-gray);
}

.article-content p, .article-content li {
    line-height: 1.8;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.article-content ul {
    list-style-position: inside;
    padding-left: 0;
}

.article-content strong {
    color: var(--primary-blue);
}