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

    .hot_inner {
      max-width: 1024px;
      margin: 0 auto;
      box-sizing: border-box;
      position: relative;
    }

    .hot_big_wrapper {
      position: relative;
      width: 100%;
      max-width: 1024px;
      padding-top: 56.64%; /* Соотношение высоты к ширине: (1160/2048)*100% */
      overflow: hidden;
    }

    .hot_big {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
            overflow: hidden;
            border-radius: 5px;
    }


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

    .hot_big_topic {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      transition: opacity 0.8s ease;
    }
    .hot_big_topic.active {
      opacity: 1;
    }

    /* Градиент затемнения под текстом */
    .hot_big_topic::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      top: 0;
      bottom: 0;
      background: linear-gradient(to top, rgba(0,0,0,0.5) 10%, transparent 100%);
      z-index: 1;
      pointer-events: none;
    }

    .hot_big_topic_img {
      width: 100%;
      height: 100%;
      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;
      width: 65%;
      padding: 45px;
      display: flex;
      flex-direction: column;
      align-items: flex-start;
      box-sizing: border-box;
      z-index: 2;
      background: none;
    }

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

    .hot_big_topic_title {
      font-family: Helvetica, Arial, sans-serif;
      text-align: left;
      font-size: 41px;
      font-weight: bold;
      line-height: 57px;
      color: #ffffff;
      display: block;
      max-height: calc(57px * 3);
      overflow: hidden;
      margin-top: 12px;
      margin-bottom: 14px;
    }

    .hot_big_topic_title a {
      color: #ffffff;
      text-decoration-line: underline;
      text-decoration-color: transparent;
      text-decoration-thickness: 2px;
      text-underline-offset: 3px;
      transition: text-decoration-color 0.3s ease;
    }
    .hot_big_topic_title a:hover {
      text-decoration-color: #ffffff;
    }

    .hot_big_topic_info {
      font-family: Helvetica, Arial, sans-serif;
      text-align: left;
      font-size: 13.5px;
      line-height: 25px;
      font-weight: bold;
      text-transform: uppercase;
      overflow: hidden;
      text-overflow: ellipsis;
      color: #ffffff;
    }

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

    @media (max-width: 1024px) {
      .hot_inner {
        margin-left: 40px;
        margin-right: 40px;
      }
      .hot_big_topic_title {
        font-size: 35px;
        line-height: 46px;
        max-height: calc(46px * 5);
      }
    }
    @media (max-width: 580px) {
      .hot_big_topic_title {
        font-size: 25px;
        line-height: 36px;
      }
    }

         /* ===========  SLIDER  ===========  */

    .hot_selector {
      position: absolute;
      top: 50%;
      right: 44px;
      transform: translateY(-50%);
      z-index: 3;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .hot_selector_btn {
      width: 262px;
      height: 105px;
      font-size: 17.5px;
      font-family: Helvetica, sans-serif;
      font-weight: bold;
      line-height: 24px;
      padding-left: 17px;
      padding-right: 22px;
      text-align: left;
      display: flex;
      align-items: center;
      border: none;
      outline: none;
      cursor: pointer;
      transition: background-color 0.3s ease;

            border-radius: 5px;
    }

    .hot_selector_btn.active {
      background-color: #cf0001;
      color: #fff;
    }

    .hot_selector_btn:not(.active) {
      background-color: rgba(255, 255, 255, 0.2);
      color: #fff;
    }

    .hot_selector_btn:hover:not(.active) {
      background-color: rgba(255, 255, 255, 0.3);
    }

    .hot_selector_btn_text {
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }


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

    @media (max-width: 850px) {
      .hot_selector {
        display: none;
      }
      .hot_big_text {
        width: 100%;
        padding: 20px;
      }

