/* ШРИФТ */
body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f6fa;
    color: #2b2b2b;
    margin: 0;
    line-height: 1.7;
    font-size: 17px;
}

/* ОБЩИЙ КОНТЕЙНЕР */
.container {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem 1.5rem;
}

/* ЗАГОЛОВКИ */
.article__title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 1rem;
}
.article__subtitle {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 2.5rem;
    color: #0e1726;
}
.article__meta,
.article__date-author {
    font-size: 0.85rem;
    color: #777;
    text-align: center;
    margin-bottom: 1rem;
}

/* ИЗОБРАЖЕНИЕ */
.article__image {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* ПАРАГРАФЫ И СПИСКИ */
p {
    margin-bottom: 1rem;
}
ul {
    margin-top: 0.5rem;
    padding-left: 1.2rem;
}
ul li {
    margin-bottom: 0.5rem;
}

/* РЕГИОНЫ */
.article__age-selector {
    margin-top: 3rem;
}
.region-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}
.region-selector__link {
    cursor: pointer;
    background-color: #3273dc;
    color: #fff;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: background 0.3s ease, transform 0.2s ease;
}
.region-selector__link:hover {
    background-color: #225bb5;
    transform: translateY(-2px);
}

/* РАЗДЕЛИТЕЛЬ */
.separator {
    margin: 3rem 0;
    border: none;
    border-top: 1px solid #dbe3ef;
}

/* ФУТЕР */
.footer {
    background-color: #eef2f8;
    padding: 2rem 1rem;
    font-size: 0.9rem;
    color: #555;
    text-align: center;
    border-top: 1px solid #d0dae5;
}
.footer__nav {
    margin-bottom: 1rem;
}
.footer__link {
    color: #3273dc;
    margin-left: 1rem;
    font-weight: 500;
    text-decoration: none;
}
.footer__link:hover {
    text-decoration: underline;
}
.footer__disclaimer {
    max-width: 720px;
    margin: 0 auto;
    font-size: 0.85rem;
    color: #777;
    line-height: 1.5;
}
.region-selector {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 2rem;
}

.region-selector__link {
    background-color: #3273dc;
    color: #fff;
    font-size: 0.95rem;
    font-weight: 500;
    padding: 0.65rem 1.2rem;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 140px;
    text-align: center;
    flex-grow: 1;
    flex-basis: calc(25% - 1rem); /* 4 на строку при широкой ширине */
}

.region-selector__link:hover {
    background-color: #225bb5;
    transform: translateY(-2px);
}

/* Адаптация для планшетов и мобилок */
@media (max-width: 1024px) {
    .region-selector__link {
        flex-basis: calc(33.33% - 1rem);
    }
}
@media (max-width: 768px) {
    .region-selector__link {
        flex-basis: calc(50% - 1rem);
    }
}
@media (max-width: 480px) {
    .region-selector__link {
        flex-basis: 100%;
    }
}
