

/* Start:/bitrix/templates/.default/components/bitrix/news/catalog/bitrix/news.list/sections-list/style.css?17634676659851*/

/**New style section**/
/* -----------------------
   Общие правки (панель, footer)
   ----------------------- */

#panel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100000;
}

footer#page-footer {
  display: none;
}
@media screen and (max-width: 992px) {
  footer#page-footer {
    display: block;
  }
}

body main {
  padding-bottom: 0;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}
@media screen and (max-width: 992px) {
  body main {
    padding-bottom: 80px;
  }
}

.page-wrapper {
  width: 100%;
  flex-grow: 1;
  display: flex;
  position: relative;
}

/* -----------------------
   Grid контейнер вместо swiper
   ----------------------- */

.catalog-page__sections-grid {
  width: 100%;
  display: grid;
  gap: 0;
  align-items: start;
  /* На десктопе — 3 в ряд, на планшете — 2, на мобиле — 1 */
  grid-template-columns: repeat(3, 1fr);
  padding: 0;
  box-sizing: border-box;
}

/* Адаптив */
@media screen and (max-width: 1200px) {
  .catalog-page__sections-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    padding: 0 20px;
  }
}
@media screen and (max-width: 992px) {
  .catalog-page__sections-grid {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 0 15px;
  }
}

/* -----------------------
   Элемент карточки (catalog-section)
   ----------------------- */

.catalog-section {
  position: relative;
  display: block;
  overflow: hidden;
  background: #181818;
  min-height: 320px;
  height: 80vh;
  border: 1px solid var(--mm-black-color);
  padding: 30px 35px;
  text-decoration: none;
  color: inherit;
  box-sizing: border-box;

  /* анимация при ховере — плавное поднятие и лёгкое масштабирование */
  transition: transform 0.45s ease, box-shadow 0.35s ease;
  transform-origin: center;
  will-change: transform;
}

/* чуть более компактно на узких экранах */
@media screen and (max-width: 1200px) {
  .catalog-section {
    height: 70vh;
    padding: 20px 12px;
    min-height: 280px;
  }
}
@media screen and (max-width: 992px) {
  .catalog-section {
    padding: 0 10px;
    border-right: none;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    min-height: auto;
    background: transparent;
    --bg-image: none !important;
    height: auto;
  }
  .catalog-page__sections-grid > .catalog-section:first-child {
    margin-top: 15px;
  }
}

/* Фоновые слои, которые имитируют текущую логику ::before/::after */
.catalog-section::before,
.catalog-section::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* фон картинка (скрыт по умолчанию, появляется на hover) */
.catalog-section::before {
  background-image: var(--bg-image);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.6s ease;
}

/* градиент наложения, тот же эффект затемнения */
.catalog-section::after {
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0) 1.02%,
    rgba(0, 0, 0, 0) 1.03%,
    rgba(7, 7, 7, 0.68) 63.24%,
    #161616 100%
  );
  z-index: 2;
  opacity: 0;
  transition: opacity 0.6s ease;
}
@media screen and (max-width: 992px) {
  .catalog-section::after {
    background: none;
  }
}
/* hover/focus: показываем фон и градиент, слегка scale и тень */
@media screen and (hover: hover) {
  .catalog-section:hover,
  .catalog-section:focus-within {
    /* transform: translateY(-6px) scale(1.01); */
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
  }
  .catalog-section:hover::before,
  .catalog-section:focus-within::before {
    opacity: 0.72;
  }
  .catalog-section:hover::after,
  .catalog-section:focus-within::after {
    opacity: 1;
  }
}
/* Для устройств без hover — показываем фон по умолчанию */
@media screen and (hover: none) {
  .catalog-section::before,
  .catalog-section::after {
    opacity: 1;
  }
  .catalog-section {
    transform: none;
    box-shadow: none;
  }
}

/* -----------------------
   Мобильное изображение (вверху карточки)
   ----------------------- */

.mobile-section-image {
  position: relative;
  display: none;
  border-radius: 2px;
  width: 100%;
  margin-bottom: 15px;
}
@media screen and (max-width: 992px) {
  .mobile-section-image {
    display: block;
  }
}
.mobile-section-image img {
  width: 100%;
  margin: 0 auto;
  max-width: 450px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 576px) {
  .mobile-section-image img {
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 0;
  }
}
.mobile-section-image::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: var(--mm-black-color);
  background-image: var(--mobile-bg-image);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  z-index: 1;
}

/* -----------------------
   Логотип внутри карточки
   ----------------------- */

.catalog-section__logo {
  width: 220px;
  height: 129px;
  position: relative;
  z-index: 3;
  object-fit: contain;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* На мобильных — меньший логотип, в потоке */
@media screen and (max-width: 576px) {
  .catalog-section__logo {
    width: 140px;
    height: 90px;
    margin-bottom: 11px;
  }
}

/* На десктопе — логотип по центру, а при hover логотип исчезает (как в оригинале) */
@media screen and (min-width: 993px) {
  .catalog-section__logo {
    position: absolute;
    bottom: 42%;
    left: 0;
    right: 0;
    margin-left: auto;
    margin-right: auto;
    width: 300px;
    height: 176px;
    text-align: center;
    transition: 0.5s;
    z-index: 3;
  }
  .catalog-section:hover .catalog-section__logo,
  .catalog-section:focus-within .catalog-section__logo {
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    display: none; /* чтобы совпадало с оригинальным скрытием логотипа */
  }
}

/* -----------------------
   Текстовый блок (поднимается на hover)
   ----------------------- */

.catalog-section__text-info {
  position: relative;
  z-index: 3;
  transition: transform 0.5s ease, bottom 0.5s ease;
  display: block;
}

/* Для desktop: текстовый блок выезжает снизу (имитация bottom:-100vh -> bottom:60px) */
@media screen and (min-width: 993px) {
  .catalog-section__text-info {
    position: absolute;
    width: 100%;
    max-width: calc(90%);
    bottom: -100vh;
    left: 0;
    right: 0;
    margin: 0 auto;
    padding: 0 10px;
  }
  .catalog-section:hover .catalog-section__text-info,
  .catalog-section:focus-within .catalog-section__text-info {
    bottom: 60px;
  }
}
/* На мобильных — обычный поток */
@media screen and (max-width: 992px) {
  .catalog-section__text-info {
    position: relative;
    display: contents;
    bottom: 0;
    padding: 0;
    margin: 0;
  }
}

/* -----------------------
   Summary-блоки и кнопки
   ----------------------- */

.catalog-section__summary {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 10px;
  z-index: 3;
}
@media screen and (max-width: 576px) {
  .catalog-section__summary {
    gap: 5px;
  }
}

.catalog-section__summary-item {
  border: 1px solid var(--mm-light-color);
  border-radius: 2px;
  padding: 6px 12px;
}
@media screen and (max-width: 576px) {
  .catalog-section__summary-item {
    padding: 6px 8px;
  }
}

.catalog-section__summary-item span {
  font-family: var(--text-font-name), sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 19px;
  text-align: center;
  color: var(--mm-light-color);
}

/* Текст превью */
.catalog-section__preview-text {
  margin: 20px 0 0 0;
  max-width: 620px;
  z-index: 3;
}

/* Кнопка подробнее */
.catalog-section__detail-link {
  margin-top: 43px;
  max-width: max-content;
  z-index: 3;
}
@media screen and (max-width: 992px) {
  button.catalog-section__detail-link {
    width: 100%;
    max-width: 100%;
    margin-top: 30px;
  }
}
@media screen and (max-width: 576px) {
  .catalog-section__detail-link {
    margin-top: 25px;
  }
}

/* -----------------------
   Разное (адаптивные шрифты/размеры)
   ----------------------- */

h1.catalog-title-h {
  position: absolute;
  opacity: 0;
}

.catalog-section .mobile-section-image::before {
  background-image: url('/upload/images/item-BG1.png');
}

@media screen and (max-width: 1439.98px) {
  .catalog-section__preview-text {
    font-size: 14px;
  }
  .catalog-section__summary-item {
    padding: 4px 9px;
  }
  .catalog-section__summary-item span {
    font-size: 14px;
  }
  .catalog-section__logo {
    width: auto;
    height: 86px;
    margin-bottom: 20px;
  }

  .catalog-section__text-info button,
  .catalog-section__text-info .button {
    padding: 8px 17px 6px 17px;
    font-size: 16px;
  }
}

/* Доступность: фокус */
.catalog-section:focus-within {
  outline: 3px solid rgba(255, 255, 255, 0.06);
  outline-offset: 2px;
}

/* Мелкие правки: чтобы карточка не слипалась с контейнером */

/* End */
/* /bitrix/templates/.default/components/bitrix/news/catalog/bitrix/news.list/sections-list/style.css?17634676659851 */
