/* === Адаптивный десктопный блок баннера и manufacture_main === */
@media screen and (min-width: 1025px) {
.r_main-van-wrapper {
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  box-sizing: border-box;
  margin: 0 auto;
  align-items: center;
  margin-top: 4px;
  gap: 2px;
}

.r_main-banner-slider {
  flex: 1 1 auto;
  max-width: 100%;
  min-width: 0;
  border-radius: 5px;
  overflow: hidden;
  box-sizing: border-box;
  margin-right: 5px;
}

.r_main-banner-manufacture {
  flex: 0 0 300px;
  width: 310px;
  max-height: 100%;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  margin: 5px 5px 5px 3px; /* top right bottom left */
}

.r_main-banner-manufacture img {
  width: 100%;
  height: 300px; /* уменьшено на 10px для выравнивания с баннером */
  display: block;
  object-fit: cover;
  border-radius: 5px;
  margin: 0px 2px; /* уже корректно: отступ сверху/снизу 5px */
}

  .r_manufacture_title {
    position: absolute;
    bottom: 12px;  
    left: calc(50% - 27px); 
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 18px;
    font-weight: 600;
    white-space: nowrap;
    text-shadow: 0 0 5px rgba(0, 0, 0, 0.4);
    z-index: 1;
  }

  .r_manufacture_title a {
    color: #fff;
    text-decoration: none;
  }
}

/* === Запрет показа в мобильной версии === */
/*
@media screen and (max-width: 1024px) {
  .r_main-van-wrapper,
  .r_main-banner-slider,
  .r_main-banner-manufacture {
    display: none !important;
  }
}
*/
@media screen and (max-width: 1024px) {
  .r_main-banner-manufacture {
    display: none !important;
  }
}

