

/* ========================================================================== */
/* ПЕРЕОПРЕДЕЛЕНИЕ СТИЛЕЙ ХЕДЕРА                                              */
/* ========================================================================== */
.header {
    background-color: #ffffff !important;
    padding: 20px 0 !important;
    border-bottom: 1px solid #eaeaea;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.header .logo-white {
    display: none !important;
}

.header .logo-dark {
    display: block !important;
}

.header .logo,
.header .main-nav a,
.header .lang-switcher .lang-btn {
    color: #1a2b4c !important;
}

.header .main-nav a::after,
.header .lang-switcher .lang-btn::after {
    background-color: #1a2b4c !important;
}

.header .burger-btn svg {
    fill: #1a2b4c !important;
}
/* ========================================================================== */
/* СТИЛИ СТАТЬИ                                                               */
/* ========================================================================== */
.main-content {
    padding: 60px 20px;
}

.article-container {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.article-title {
    font-size: 32px;
    margin-top: 0;
    margin-bottom: 15px;
    color: #1a1a1a;
    line-height: 1.3;
}

.article-date {
    color: #888;
    font-size: 15px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-bottom: 30px;
    object-fit: cover;
    max-height: 450px;
}

.ck-content {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
}

.ck-content p {
    margin-bottom: 20px;
}

.ck-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    display: block;
    margin: 30px auto;
}

.ck-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a2b4c;
    font-size: 24px;
}


@media (max-width: 768px) {
    .header .container {
        padding: 0 20px;
    }

    .main-nav, .lang-switcher {
        display: none;
    }

    .burger-btn {
        display: block;
    }

    .logo {
        font-size: 24px;
    }

    .article-container {
        padding: 20px;
    }

    .article-title {
        font-size: 24px;
    }
}