/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

h3 {
    font-size: 22px;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px 0;
    text-align: center;
}

header img {
    max-height: 50px;
}

/* Advertorial Date */
.advertorial-date {
    font-size: 12px;
    color: gray;
    text-align: center;
    margin: 10px 0;
}

/* Article */
.article-container {
    background-color: white;
    padding: 15px;
    max-width: 800px;
    margin: 0 auto;
}

h1 {
    font-size: 28px;
    color: black;
    text-align: center;
}

h2 {
    font-size: 22px;
    color: gray;
    text-align: center;
    margin-bottom: 20px;
}

.article-image {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 20px auto;
}

p {
    font-size: 16px;
    line-height: 1.8;
}

a {
    color: purple;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Regions */
.regions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin: 20px 0;
}

.regions a {
    display: block;
    padding: 15px;
    background-color: white;
    text-align: center;
    font-size: 18px;
    color: purple;
    border: 1px solid #ccc;
    transition: all 0.3s ease;
}

.regions a:hover {
    background-color: purple;
    color: white;
    transform: translateY(-2px);
}

/* Стили для нестандартного списка */
ul {
    list-style-type: none; /* Убираем стандартные маркеры */
    padding-left: 0;
    margin: 20px 0;
}

ul li {
    position: relative;
    padding-left: 30px; /* Отступ для размещения кастомного маркера */
    margin-bottom: 15px; /* Отступы между элементами списка */
    line-height: 1.6;
}

/* Кастомный фиолетовый маркер */
ul li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 15px;
    height: 15px;
    background-color: #8e44ad; /* Нестандартный фиолетовый цвет */
    border-radius: 50%; /* Делаем маркер круглым */
}

/* Стили для текста внутри списка */
ul li strong {
    font-weight: bold;
    color: #4a235a; /* Темно-фиолетовый цвет для выделенных фраз */
}

/* Стили для длинных строк */
ul li {
    max-width: 600px; /* Ограничение максимальной ширины для удобного чтения */
    word-wrap: break-word; /* Переносим длинные слова, если необходимо */
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 10px 0;
    margin-top: 20px;
}

footer a {
    color: white;
    text-decoration: none;
    margin: 0 10px;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .regions a {
        font-size: 16px;
        padding: 10px;
    }
}
