/* Статья */
.article {
	padding: 50px 0;
	background-color: #F3F3F3;
}

.article h1 {
    margin-bottom: 20px;
	font-weight: 700;
	font-size: 48px;
	line-height: 6vw;
	text-transform: uppercase;
    color: #1D4A8E;
}

.article-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-height: 500px;
}

.article-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    font-weight: bold;
}

.article-content {
    padding: 40px;
}

.article-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    color: #7f8c8d;
    font-size: 0.9em;
    border-bottom: 1px solid #ecf0f1;
    padding-bottom: 15px;
}

.article-text {
    font-size: 20px;
    line-height: 1.8;
    color: #424146;
}

.article-text p {
    margin-bottom: 20px;
}

.article-text h2 {
    font-size: 36px;
    margin: 30px 0 15px 0;
    color: #34495e;
}

.article-text blockquote {
    border-left: 4px solid #3498db;
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #7f8c8d;
}

.article-category a {
    color: #424146;
    color: #7f8c8d;
    text-decoration: none;
    transition: color 0.3s;
}

.article-category a:hover {
    color: #3498db;
}

.article li {
    display: list-item;
}

.article ul, ol {
    display: block;
    list-style-type: disc;
    list-style-position: outside;
    margin: 1em 0;
    padding-left: 40px;
}

.article strong {
    font-weight: bold;
}

.article  a {
    color: #7f8c8d;
}

.article  a:hover {
    color: #3498db;
}

/* MOBILE */

@media (max-width: 768px) {
    .article h1 {
        font-size: 5.9vw;
    }

    .article h2 {
        font-size: 4.9vw;
    }

    .article-meta, .article-date, .article-author, .article-category  {
        display: block;
    }
}