Provide mirror selection guide

by Sergey khorev

HTML

<!DOCTYPE html>
<html lang="ru">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Как выбрать зеркало - Мир Зазеркалья</title>
    <link href="https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;700&display=swap" rel="stylesheet">
    <style>
        /* Базовые стили для интеграции с Bitrix */
        body {
            font-family: 'Manrope', sans-serif;
            background-color: #FFFFFF;
            color: #333;
            line-height: 1.6;
            margin: 0;
            padding: 0;
        }
        .detail-news1 {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .detail-news1 h1 {
            font-size: 36px;
            font-weight: 700;
            margin: 0 0 25px;
            line-height: 1.2;
        }
        .detail-news1 h2 {
            font-size: 22px;
            font-weight: 500;
            margin: 30px 0 15px;
            line-height: 1.3;
        }
        .detail-news1 h3 {
            font-size: 20px;
            font-weight: 500;
            margin: 20px 0 10px;
        }
        .detail-news1 p {
            font-size: 18px;
            font-weight: 400;
            margin: 0 0 10px;
        }
        .detail-news1 .ordered-block {
            margin: 4.667rem 0;
            padding-bottom: 30px;
            border-bottom: 1px solid #ececec; /* --stroke_black */
        }
        .detail-news1 .ordered-block:last-child {
            border-bottom: none;
        }
        .detail-news1 .ordered-block.with-title .ordered-block__title {
            padding-bottom: 2.2rem;
        }
        .detail-news1 ul {
            list-style-type: none;
            padding-left: 20px;
            margin: 10px 0;
        }
        .detail-news1 ul li {
            position: relative;
            margin: 8px 0;
        }
        .detail-news1 ul li:before {
            content: "•";
            color: #666;
    ...