


         .list {
            display: block;
            width: 100%;
            background-color: #ffffff;
            margin-top: 60px;
         }


         .list_inner {
            display: flex;
            justify-content: space-between; /* Размещение элементов по краям */
            max-width: 1024px;
            height: auto;
            gap: 30px;
            margin: 0 auto; /* Центрируем по горизонтали */
            box-sizing: border-box; /* Включаем отступы в расчет размера */
         }


         .list_left {
            display: flex;
            flex-direction: column; /* Размещение элементов по вертикали */
            justify-content: flex-start; /* Выровнять элементы по верхнему краю */
            max-width: 676px;
         }

         .list_right {
            display: flex;
            flex-direction: column; /* Размещение элементов по вертикали */
            justify-content: flex-start; /* Выровнять элементы по верхнему краю */
            width: 300px;
         }

         @media (max-width: 1024px) {
            .list_inner {
            margin-left: 40px;
            margin-right: 40px;
         }
         }

         @media (max-width: 1000px) {
         .list_right {
            display: none;
         }
         }


         /* ===========  LIST  ===========  */


        .list_title {
            font-family: Helvetica, Arial, sans-serif;
            text-align: left;
            font-size: 22px;
            font-weight: bold;
            color: #181818;
            margin-bottom: 30px;
        }




         .list_topic_cont {
            display: flex;
            flex-direction: column;
            justify-content: flex-start; /* Выровнять элементы по верхнему краю */
            gap: 34px;
            margin-top: 0px;
            margin-bottom: 45px;
            max-width: 676px;
         }




         .list_topic {
            display: flex;
            flex-direction: row;
            justify-content: flex-start; /* Выровнять элементы по верхнему краю */
            gap: 19px;
            max-width: 676px;
            margin-top: 0px;
            margin-bottom: 0px;
         }

         @media (max-width: 790px) {
            .list_topic {
            display: flex;
            flex-direction: column; /* Размещение элементов по горизонтали */
            align-items: flex-start; /* Выравнивание по левому краю */
         }
         }


         .list_topic_img {
            width: 248.5px;
            height: 153px;
            overflow: hidden; /* Скрывает части изображения, выходящие за рамки */
            position: relative; /* Для правильного позиционирования изображения */
            flex-shrink: 0; /* Препятствует сжатию изображения */
            border-radius: 5px;
         }

         @media (max-width: 790px) {
            .list_topic_img {
                width: 100%; /* Адаптивная ширина */
                height: auto; /* Автоматическая высота */
                aspect-ratio: 497 / 306; /* Сохраняет соотношение сторон */
            overflow: hidden; /* Скрывает части изображения, выходящие за рамки */
            position: relative; /* Для правильного позиционирования изображения */
         }
         }

         .list_topic_img img {
            width: 100%; /* Растягиваем изображение по ширине контейнера */
            height: 100%; /* Растягиваем изображение по высоте контейнера */
            object-fit: cover; /* Сохраняет соотношение сторон, обрезая лишнее */
            position: absolute; /* Убирает влияние размеров изображения на контейнер */
            top: 50%; /* Центрируем по вертикали */
            left: 50%; /* Центрируем по горизонтали */
            transform: translate(-50%, -50%); /* Сдвигаем для точного центрирования */
         }



         .list_topic_text {
            display: flex;
            flex-direction: column;
            justify-content: flex-start; /* Выровнять элементы по верхнему краю */
            height: auto;
            width: 100%;
         }

        .list_topic_title {
            font-family: Helvetica, Arial, sans-serif;
            text-align: left;
            font-size: 26.5px;
            font-weight: bold;
            line-height: 34px;
            color: #181818;
                display: block; /* Позволяет тексту вести себя как блочный элемент */
                max-height: calc(34px * 2); /* Ограничиваем высоту N строками */
                overflow: hidden; /* Обрезаем лишний текст */
            margin-top: 0px;
        }

        .list_topic_title a {
            color: #181818;
            text-decoration-line: underline;       /* всегда подчеркивание */
            text-decoration-color: transparent;    /* но изначально невидимое */
            text-decoration-thickness: 2px;        /* толщина линии */
            text-underline-offset: 3px;            /* небольшой отступ от текста */
            transition: text-decoration-color 0.3s ease; /* плавное появление/исчезновение */
        }

        .list_topic_title a:hover {
            text-decoration-color: #181818;
        }

        .list_topic_short {
            font-family: Helvetica, Arial, sans-serif;
            text-align: left;
            font-size: 16px;
            font-weight: normal;
            line-height: 23px;
                display: -webkit-box; /* Используем flex-контейнер для обрезки */
                -webkit-line-clamp: 2; /* Ограничиваем текст 2 строками */
                -webkit-box-orient: vertical; /* Указываем направление потока */
                overflow: hidden; /* Скрываем лишний текст */
                text-overflow: ellipsis; /* Добавляем многоточие */
            color: #646464;
            margin-top: 6px;
        }


         .list_topic_info {
            display: flex;
            flex-direction: row; /* Размещение элементов по горизонтали */
            justify-content: flex-start; /* Выровнять элементы по верхнему краю */
            height: auto;
            width: 100%;
            margin-top: 11px;
            margin-bottom: 0px;
         }


         .list_topic_info_tag {
            font-family: Helvetica, Arial, sans-serif;
            text-align: left;
            font-size: 14px;
            font-weight: bold;
            text-transform: uppercase;
            color: #f7302e;
         }

         .list_topic_info_tag a {
            color: #181818;
            text-decoration: none;
         }

         .list_topic_info_tag a:hover {
            color: #181818;
            text-decoration: underline;
         }


         .list_topic_info_divider {
            width: 4px;
            height: 1.5px;
            background-color: #646464;
            margin-top: 8px;
            margin-left: 7px;
            margin-right: 7px;
         }

         .list_topic_info_date {
            font-family: Helvetica, Arial, sans-serif;
            text-align: left;
            font-size: 14px;
            font-weight: normal;
            color: #646464;
            margin-bottom: 0px;
         }



         /* ====  ADS LIST - X2 HOR  ====  */

         .list_topic_ads_x2_horiz {
            display: flex;
            justify-content: left;
            align-items: center; /* Выравнивание по центру по вертикали */
            height: auto;
            box-sizing: border-box; /* Включаем отступы в расчет размера */
            width: 100%;
            gap: 58px;
            margin-top: 28px;
            margin-bottom: 90px;
         }

         @media (max-width: 680px) {
            .list_topic_ads_x2_horiz {
            display: flex;
            flex-direction: column; /* Размещение элементов по горизонтали */
            align-items: flex-start; /* Выравнивание по левому краю */
            gap: 30px;
         }
         }

         .list_topic_ads_300_250 {
            display: flex;
            flex-direction: column; /* Размещение элементов по вертикали */
            justify-content: flex-start; /* Выровнять элементы по верхнему краю */
         }

        .list_ads_label {
            font-family: Helvetica, Arial, sans-serif;
            text-align: center;
            font-size: 10px;
            color: #b2b2b2;
            margin-bottom: 4px;
        }

         .list_topic_ads_300_250_JS img {
            max-width: 300px;
         }


         /* ====  ADS - RIGHT (STICKY)  ====  */

         .list_ads_right_1 {
            width: auto; 
            height: 1400px;
         }

         .list_ads_right_2 {
            width: auto; 
            height: 1400px;
         }

         .list_ads_right_3 {
            width: auto; 
            height: 1400px;
         }

         .list_ads_right_4 {
            width: auto; 
            height: 1400px;
         }



         /* ====  ADS - RIGHT 300-600  ====  */

         .list_blank_space_ads_2 {
            max-width: 300px;
            height: 66px;
         }

         .list_ads_right_300_600 {
            display: flex;
            flex-direction: column; /* Размещение элементов по вертикали */
            justify-content: flex-start; /* Выровнять элементы по верхнему краю */
         }

         .list_ads_right_300_600 img {
            max-width: 300px;
         }



