/* === ОБЩИЕ НАСТРОЙКИ === */
* {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #f8f6f2;
    color: #2a2a2a;
    margin: 0;
    padding: 0;
    line-height: 1.7;
    font-size: 17px;
}

/* === ХЕДЕР === */
header {
    background: linear-gradient(90deg, #2e7d5c 0%, #4caf50 100%);
    padding: 1.5rem 0;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.header-container {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 0 1.5rem;
}

.header-container img {
    max-width: 200px;
    height: 100%;
}

/* === СТАТЬЯ === */
.cz-article {
    max-width: 760px;
    margin: 3rem auto;
    padding: 1rem;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    animation: fadeIn 1s ease;
}

.cz-article__title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1e2a38;
}

.cz-article__date {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 2rem;
}

.cz-article h2 {
    font-size: 1.3rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1e2a38;
    font-weight: 600;
}

.cz-article p {
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

/* === БЛОК КАРТЫ === */
.map-box {
    background: #f1f6f3;
    border: 1px solid #c6e2d3;
    padding: 2rem 1.5rem;
    border-radius: 10px;
    margin: 3rem auto;
    max-width: 720px;
    text-align: center;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.04);
}

.map-box h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2f28;
}

.map-box .map-placeholder {
    background: repeating-linear-gradient(45deg, #dcefe8, #dcefe8 10px, #f5fbf9 10px, #f5fbf9 20px);
    border-radius: 8px;
    margin-top: 1rem;
}

/* === ФУТЕР === */
footer {
    background: #e4f0ea;
    padding: 2rem 1rem;
    font-size: 0.9rem;
    color: #555;
    text-align: center;
    border-top: 1px solid #c4d7ce;
    margin-top: 4rem;
}

.footer__links {
    margin-bottom: 1rem;
}

.footer__links a {
    color: #2e7d5c;
    margin: 0 0.75rem;
    text-decoration: none;
    font-weight: 500;
}

.footer__links a:hover {
    text-decoration: underline;
}

.footer__disclaimer {
    font-size: 0.85rem;
    color: #777;
    line-height: 1.5;
    max-width: 700px;
    margin: 0 auto;
}

/* === АНИМАЦИЯ === */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* modal */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    overflow: auto;
    padding: 20px;
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 10px;
    max-width: 600px;
    position: relative;
    font-family: sans-serif;
    line-height: 1.6;
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 24px;
    cursor: pointer;
    color: #888;
}

.close:hover {
    color: #000;
}

.footer__links a {
    margin-right: 20px;
    color: #555;
    text-decoration: underline;
    cursor: pointer;
}

.footer__legal {
    color: #666;
    line-height: 1.5;
    max-width: 800px;
    padding: 10px 0;
    margin: 0 auto;
}