

@font-face {
  font-family: Exo-Black;
  src: url(../font/Exo-Black.ttf);
}



         .top {
            display: block;
            width: 100%;
            background-color: #ffffff;
            margin-top: 33px;
            margin-bottom: 44px;
         }


         .top_inner {
            display: flex;
            flex-direction: row;
            max-width: 1154px;
            height: auto;
            gap: 35px;
            margin: 0 auto; /* Центрируем по горизонтали */
            box-sizing: border-box; /* Включаем отступы в расчет размера */
         }

         .top_1 {
         }

         .top_2 {
         }

         .top_3 {
         }


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

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

         /* ===========  MEDIA  ===========  */

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

         @media (max-width: 890px) {
         .top_1 {
            display: none;
         }
         }

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



         /* ======  Tag  ======  */

         .top_tag {
            display: flex;
            align-items: center;
            align-items: center;       /* центрирование по вертикали */
            cursor: pointer;
            margin-top: -1px;
         }

         .top_tag_square {
            width: 9.5px;
            height: 9.5px;
            border-radius: 0px;
            background-color: #d42121;
            margin-right: 6.5px;
            transition: width 0.3s ease; /* плавное изменение ширины */
         }
         
         .top_tag:hover .top_tag_square {
            width: 5px;    /* При ховере по контейнеру квадратик сжимается */
         }

         .top_tag_txt {
            font-family: Helvetica, Arial, sans-serif;
            font-size: 11px;
            font-weight: bold;
            text-transform: uppercase;
            color: #181818;
         }



         /* ===========  MINI  ===========  */

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


         .top_mini_topic_img {
            width: 273px;
            height: 164px;
            border-radius: 4px;
            overflow: hidden; /* Скрывает части изображения, выходящие за рамки */
            position: relative; /* Для правильного позиционирования изображения */
            margin-bottom: 20px;
         }

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

         .top_mini_topic_img:hover img {
                transform: translate(-50%, -50%) scale(1.03);  /* Увеличение при ховере */
         }



        .top_mini_topic_title {
            font-family: Exo-Black;
            text-align: left;
            font-size: 21.7px;
            font-weight: normal;
            line-height: 27px;
                display: block; /* Позволяет тексту вести себя как блочный элемент */
                max-height: calc(27px * 3); /* Ограничиваем высоту N строками */
                overflow: hidden; /* Обрезаем лишний текст */
            color: #181818;
            margin-top: 10px;
               transition: transform 0.3s ease;
        }

        .top_mini_topic_title:hover {
               transform: translateX(2px);
        }

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

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


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


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

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

         .top_mini_info_author a:hover {
            color: #434343;
            text-decoration-color: transparent; 
         }


         .top_mini_info_divider {
            width: 2px;
            height: 1.5px;
            background-color: #434343;
            margin-top: 6px;
            margin-left: 6px;
            margin-right: 6px;
         }

         .top_mini_info_date {
            font-family: Helvetica, Arial, sans-serif;
            text-align: left;
            font-size: 10.8px;
            font-weight: bold;
            color: #434343;
            margin-bottom: 0px;
            text-transform: uppercase;
         }




         /* ===========  BIG  ===========  */

         .top_big_topic {
            display: flex;
            flex-direction: column; /* Размещение элементов по вертикали */
            justify-content: flex-start; /* Выровнять элементы по верхнему краю */
            max-width: 546px;
            min-width: 320px;
                width: 100%; /* Позволяет адаптироваться под родительский контейнер */
            margin-top: 0px;
            margin-bottom: 0px;
         }


         .top_big_topic_img {
                width: 100%; /* Адаптивная ширина */
                height: auto; /* Автоматическая высота */
                aspect-ratio: 546 / 546; /* Сохраняет соотношение сторон */
            border-radius: 4px;
            overflow: hidden; /* Скрывает части изображения, выходящие за рамки */
            position: relative; /* Для правильного позиционирования изображения */
            margin-bottom: 21px;
         }

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

         .top_big_topic_img:hover img {
                transform: translate(-50%, -50%) scale(1.03);  /* Увеличение при ховере */
         }


        .top_big_topic_title {
            font-family: Exo-Black;
            text-align: left;
            font-size: 37px;
            font-weight: normal;
            line-height: 45px;
                display: block; /* Позволяет тексту вести себя как блочный элемент */
                max-height: calc(44px * 3); /* Ограничиваем высоту N строками */
                overflow: hidden; /* Обрезаем лишний текст */
            color: #181818;
            margin-top: 11px;
               transition: transform 0.3s ease;
        }

        .top_big_topic_title:hover {
               transform: translateX(2px);
        }

        .top_big_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; /* плавное появление/исчезновение */
        }

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



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


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

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

         .top_big_info_author a:hover {
            color: #434343;
            text-decoration-color: transparent; 
         }


         .top_big_info_divider {
            width: 2px;
            height: 2px;
            background-color: #434343;
            margin-top: 7px;
            margin-left: 6px;
            margin-right: 6px;
         }

         .top_big_info_date {
            font-family: Helvetica, Arial, sans-serif;
            text-align: left;
            font-size: 12.7px;
            font-weight: bold;
            color: #434343;
            margin-bottom: 0px;
            text-transform: uppercase;
         }



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



         .top_big_topic_line {
            max-width: 546px;
            height: 0.5px;
            background-color: #d0d0d0;
            margin-top: 16px;
            margin-bottom: 24px;
         }


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


         .top_big_topic_related_headline {
            display: flex;
            flex-direction: row; /* Размещение элементов по горизонтали */
            justify-content: flex-start; /* Выровнять элементы по верхнему краю */
            align-items: center;       /* центрирование по вертикали */
            height: auto;
            width: 100%;
            margin-bottom: 9px;
               transition: transform 0.3s ease;
        }

        .top_big_topic_related_headline:hover {
               transform: translateX(2px);
        }

         .top_big_topic_related_headline_dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background-color: #d42121;
            margin-right: 7.5px;
         }

         .top_big_topic_related_txt {
            font-family: Exo-Black;
            text-align: left;
            font-size: 17.8px;
            font-weight: normal;
            color: #181818;
                display: -webkit-box; /* Используем flex-контейнер для обрезки */
                -webkit-line-clamp: 1; /* Ограничиваем текст 1 строками */
                -webkit-box-orient: vertical; /* Указываем направление потока */
                overflow: hidden; /* Скрываем лишний текст */
                text-overflow: ellipsis; /* Добавляем многоточие */
            margin-top: 0px;
         }

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

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





         /* ===========  TRENDING  ===========  */


         .top_trending {
            display: flex;
            flex-direction: column;
            justify-content: flex-start; /* Выровнять элементы по верхнему краю */
            max-width: 266px;
            gap: 18px;
         }

         .top_trending_item {
            display: flex;
            flex-direction: column;
         }


        .top_trending_title {
            font-family: Exo-Black;
            text-align: left;
            font-size: 20.7px;
            font-weight: normal;
            line-height: 26px;
                display: block; /* Позволяет тексту вести себя как блочный элемент */
                max-height: calc(26px * 4); /* Ограничиваем высоту N строками */
                overflow: hidden; /* Обрезаем лишний текст */
            color: #181818;
            margin-top: 10px;
               transition: transform 0.3s ease;
        }

        .top_trending_title:hover {
               transform: translateX(2px);
        }

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

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

    .top_trending_title img {
      float: left;   /* обтекание иконки Trending текстом  */
      width: 18px;
      height: 11px;
      margin-top: 10px;
      margin-right: 10px;
    }


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


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

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

         .top_trending_info_author a:hover {
            color: #434343;
            text-decoration-color: transparent; 
         }


         .top_trending_info_divider {
            width: 2px;
            height: 1.5px;
            background-color: #434343;
            margin-top: 6px;
            margin-left: 6px;
            margin-right: 6px;
         }

         .top_trending_info_date {
            font-family: Helvetica, Arial, sans-serif;
            text-align: left;
            font-size: 11.5px;
            font-weight: bold;
            color: #434343;
            margin-bottom: 0px;
            text-transform: uppercase;
         }



         .top_trending_line {
            max-width: 266px;
            height: 0.5px;
            background-color: #d0d0d0;
            margin-top: 16px;
         }


