

         .hot {
            display: block;
            width: 100%;
            background-color: #f7f7f7;
            margin-top: 0px;
         }


         /* Обёртка для карусели и навигации */
         .hot_inner_container { 
            position: relative;
            max-width: 1024px;
            margin: 0 auto;
         }
 
         .hot_inner {
            display: flex;
            flex-direction: row;
            gap: 27px;
            box-sizing: border-box;
            padding-top: 50px;
            padding-bottom: 44px;
            overflow: hidden;
         }



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



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

         @media (max-width: 1024px) {
         .hot_inner {
            margin-left: 40px;
            margin-right: 40px;
                display: flex;
                flex-direction: column; 
                justify-content: flex-start; /* Выровнять элементы по верхнему краю */
         }
         .hot_big {
            width: 100%;
            max-width: none;
         }
         }



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

         .hot_big_topic {
            display: flex;
            flex-direction: column;
            justify-content: flex-start;
            max-width: 323px;
            margin: 0;
         }


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

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

         .hot_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;  /* Увеличение при ховере */
         }

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

         .hot_big_text {
            position: absolute;
            bottom: 0;  /* прижат к низу */
            left: 0;
            right: 0;
            padding: 21px; /* Отступы вокруг текста */
            background: linear-gradient(transparent, rgba(0,0,0,0.8)); /* Градиент */
            display: flex;
            flex-direction: column; /* Размещение элементов по вертикали */
            align-items: flex-start;
            box-sizing: border-box;
         }

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

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

        .hot_big_topic_title a:hover {
            text-decoration-color: #ffffff;
        }

         @media (max-width: 1024px) {
            .hot_big_topic_title {
               font-size: 26px;
               font-weight: bold;
               line-height: 30px;
                max-height: calc(30px * 4); /* Ограничиваем высоту N строками */
            }
         }

         .hot_big_info {
            display: flex;
            flex-direction: row; /* Размещение элементов по вертикали */
            justify-content: flex-start; /* Выровнять элементы по верхнему краю */
            align-items: center; /* Центрируем элементы по вертикали */
            gap: 18px;
         }

         .hot_big_tag {
            display: flex;
            align-items: center;
            background-color: #f63b3c;
            color: #ffffff;
            border-radius: 5px;
            font-family: Helvetica, Arial, sans-serif;
            font-size: 10.5px;
            font-weight: bold;
            padding-left: 9px;
            padding-right: 9px;
            height: 25px;
            width: max-content; /* Ширина зависит от содержимого */
            white-space: nowrap;
         }

         .hot_big_author {
            font-family: Helvetica, Arial, sans-serif;
            text-align: left;
            font-size: 12px;
            font-weight: normal;
            color: #ffffff;
         }


         /* ===========  SELECTOR  ===========  */

    /* Контейнер-оверлей для навигационных кнопок */
    .hot_nav_overlay {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      pointer-events: none; /* оверлей не блокирует клики */
    }
    .hot_nav_overlay .hot_nav {
      pointer-events: auto;
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      width: 42px;
      height: 42px;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      z-index: 10;
    }
    .hot_nav_overlay .hot_nav_left {
      left: 12px;
      background-image: url("../img/hot/arrow_l.png");
    }
    .hot_nav_overlay .hot_nav_left::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: url("../img/hot/arrow_l_hover.png");
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .hot_nav_overlay .hot_nav_left:hover::after {
      opacity: 1;
    }
    .hot_nav_overlay .hot_nav_right {
      right: 12px;
      background-image: url("../img/hot/arrow_r.png");
    }
    .hot_nav_overlay .hot_nav_right::after {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background-image: url("../img/hot/arrow_r_hover.png");
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      opacity: 0;
      transition: opacity 0.3s ease;
    }
    .hot_nav_overlay .hot_nav_right:hover::after {
      opacity: 1;
    }


         @media (max-width: 1024px) {
            .hot_nav_overlay {
               display: none;
            }
         }




