/* article.css — единые стили для всех статей */
.article-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 0;
    color: #3a3a3a;
    font-family: 'Montserrat', Arial, Helvetica, sans-serif;
    line-height: 1.6;
    font-size: 16px;
    text-align: justify;
}
.article-content h1 {
    color: #0a1a3a;
    border-left: 4px solid #cc6600;
    padding-left: 20px;
    font-size: 2.2rem;
    margin: 20px 0 10px 0;
}
.article-content .subhead {
    font-size: 1.2rem;
    color: #3a3a3a;
    margin-bottom: 30px;
    font-weight: 400;
}
.article-content h2,
.article-content h3 {
    color: #0a1a3a;
    border-left: none;
    padding-left: 0;
    margin: 20px 0 10px 0;
}
.article-content h2 {
    font-size: 28px;
    font-weight: 700;
}
.article-content h3 {
    font-size: 22px;
    font-weight: 600;
}
.article-content p {
    margin-bottom: 1.2em;
    text-indent: 25px;
}
.article-content ul {
    margin: 15px 0 20px 25px;
}
.article-content li {
    margin-bottom: 8px;
}
.article-content a {
    color: #cc6600;
    text-decoration: none;
    transition: color 0.2s ease;
}
.article-content a:hover {
    color: #cc6600;
    text-decoration: underline;
}
.article-content img {
    max-width: 100%;
    height: auto;
    margin: 10px 0;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.img-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: center;
    margin: 20px 0;
}
.img-row img {
    flex: 1;
    min-width: 150px;
}
.text-center {
    text-align: center;
}
.breadcrumbs {
    margin-bottom: 25px;  /* увеличенный отступ снизу */
    font-size: 14px;
    color: #6c6c6c;
}
.breadcrumbs a {
    color: #cc6600;
}
.form-block {
    margin-top: 40px;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 16px;
}
.form-block h3 {
    color: #222;
}
.related-articles {
    margin: 40px 0 30px;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 12px;
}
.related-articles h3 {
    font-size: 22px;
    margin-top: 0;
    margin-bottom: 15px;
    color: #0a1a3a;
}
.related-articles ul {
    margin: 0;
    padding-left: 20px;
}
.related-articles li {
    margin-bottom: 8px;
}
.related-articles a {
    color: #cc6600;
    text-decoration: none;
}
.related-articles a:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .container.first-container {
        padding-top: 110px;
    }
    .article-content h1 { font-size: 1.8rem; }
    .article-content h2 { font-size: 24px; }
    .img-row { flex-direction: column; }
}
/* Скрываем ненужные блоки (преимущества и пр.) */
.advantages-icons {
    display: none;
}