.hero {
    padding: 60px 0 !important;
}

.hero-inner {
    max-width: 1000px;
    margin: 0 auto;
}

.article-date {
    color: var(--text-secondary);
    font-size: 0.9375rem;
    margin-bottom: 1rem;
}

.hero h1 {
    line-height: 1.1;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.125rem;
    line-height: 1.6;
}

.article-container {
    padding: 3rem 1rem;
}

.article-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

/* Stylowanie treści artykułu */
.article-content {
    background: #fff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    color: #333;
    line-height: 1.6;
    font-size: 1.0625rem;
}

.article-content h1 {
    color: #1a2332;
    font-size: 2.25rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.article-content h2 {
    color: #1a2332;
    font-size: 1.75rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-top: 2rem;
    margin-bottom: 1rem;
    border-bottom: 2px solid var(--text-secondary);
    padding-bottom: 0.5rem;
}

.article-content h3 {
    color: #1a2332;
    font-size: 1.375rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.article-content h4 {
    color: var(--accent-red);
    font-size: 1.125rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

.article-content p {
    margin-bottom: 1rem;
}

.article-content ul,
.article-content ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.article-content table th,
.article-content table td {
    padding: 12px;
    border: 1px solid #ddd;
    text-align: left;
}

.article-content table th {
    background-color: #1a2332;
    color: white;
    font-weight: 600;
}

.article-content table tr:nth-child(even) {
    background-color: #f5f5f5;
}

.article-content blockquote {
    border-left: 4px solid var(--accent-red);
    padding-left: 1.5rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #555;
    background: #f9f9f9;
    padding: 1rem 1rem 1rem 1.5rem;
    border-radius: 4px;
}

.article-content strong {
    color: #1a2332;
    font-weight: 600;
}

.article-content em {
    color: var(--accent-red);
}

.article-content a {
    color: var(--accent-red);
    text-decoration: underline;
}

.article-content a:hover {
    color: var(--text-secondary);
}

.article-back {
    margin-top: 2rem;
    text-align: center;
}

.btn-back {
    display: inline-block;
    background: #1a2332;
    color: #fff;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-size: 1rem;
    font-family: 'Montserrat', 'Inter', sans-serif;
    font-weight: 600;
    transition: background 0.3s ease;
}

.btn-back:hover {
    background: var(--accent-red) !important;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.6667rem !important;
    }

    .hero p {
        font-size: 1rem !important;
    }

    .article-content {
        padding: 1.5rem;
        font-size: 1rem;
    }

    .article-content h1 {
        font-size: 1.8889rem;
    }

    .article-content h2 {
        font-size: 1.5556rem;
    }

    .article-content h3 {
        font-size: 1.2222rem;
    }

    .article-content h4 {
        font-size: 1.0556rem;
    }

    .article-container {
        padding: 1.5rem 1rem;
    }
}

