/* Стили для страницы статьи */
.article-page {
    background: #FFFFFF;
    padding: 40px 20px;
    margin-top: 100px;
}

.article-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.article-container h1 {
    font-family: 'Roboto', sans-serif;
    font-size: 2.7em;
    font-weight: 800;
    color: #1C2526;
    margin-bottom: 20px;
    text-align: left;
}

.article-hero-image {
    width: 50%;
    max-width: 100%;
    height: auto;
    margin-bottom: 30px;
    border-radius: 10px;
}

.article-section {
    text-align: left;
    margin-bottom: 30px;
}

.article-section h2 {
    font-family: 'Roboto', sans-serif;
    font-size: 2em;
    font-weight: 700;
    color: #1C2526;
    margin-bottom: 15px;
}

.article-section h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5em;
    font-weight: 600;
    color: #1C2526;
    margin-bottom: 10px;
    margin-top: 20px;
}

.article-section p {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1em;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.article-section ul,
.article-section ol {
    margin-left: 20px;
    margin-bottom: 20px;
}

.article-section ul li,
.article-section ol li {
    font-family: 'Open Sans', sans-serif;
    font-size: 1.1em;
    font-weight: 400;
    color: #666;
    line-height: 1.6;
    margin-bottom: 10px;
}

.article-section ul {
    list-style-type: disc;
}

.article-section ol {
    list-style-type: decimal;
}

.article-section p strong {
    font-weight: 600;
    color: #1C2526;
}

/* Адаптивность для страницы статьи */
@media (max-width: 768px) {
    .article-page {
        padding: 40px 15px;
    }

    .article-container {
        padding: 0 15px;
    }

    .article-container h1 {
        font-size: 1.7em;
    }

    .article-hero-image {
        margin-bottom: 20px;
    }

    .article-section h2 {
        font-size: 1.5em;
    }

    .article-section h3 {
        font-size: 1.3em;
    }

    .article-section p,
    .article-section ul li,
    .article-section ol li {
        font-size: 1em;
    }
}

@media (max-width: 480px) {
    .article-container h1 {
        font-size: 1.5em;
    }

    .article-hero-image {
        margin-bottom: 15px;
    }

    .article-section h2 {
        font-size: 1.3em;
    }

    .article-section h3 {
        font-size: 1.2em;
    }

    .article-section p,
    .article-section ul li,
    .article-section ol li {
        font-size: 0.95em;
    }
}