/* Основной контейнер блока каталога:
   держит фон, рамку и контент внутри одной секции */
.catalog-grid-strip {
   position: relative;
   width: 100%;
   height: 520px;
   overflow: hidden;
   isolation: isolate;
}

/* Нижний фоновый слой блока */
.catalog-grid-strip__background {
   position: absolute;
   inset: 0;
   z-index: 0;
   background-image: url('/assets/images/new/catalog-links-bg2.png');
   background-size: cover;
   background-position: center center;
   background-repeat: no-repeat;
}

/* Слой с контентом карточек.
   Отступы здесь двигают карточки относительно рамки */
.catalog-grid-strip__content {
   position: relative;
   z-index: 1;
   width: 100%;
   height: 100%;
   /*box-sizing: border-box;*/
   padding: 65px 0px 0px 0px;
   display: flex;
   align-items: flex-start;
   justify-content: center;
}

/* Обёртка для сетки карточек.*/
.catalog-grid-strip__grid-wrap {
   width: 100%;
   max-width: 1200px;
}

/* Сама сетка из трёх карточек */
.catalog-grid-strip__grid {
   display: grid;
   grid-template-columns: repeat(3, 400px);
   justify-content: center;
   gap: 24px;
   width: 100%;
}

/* Отдельная карточка категории */
.catalog-card {
   display: flex;
   flex-direction: column;
   min-width: 0;
   min-height: 0;
   height: 100%;
   overflow: hidden;
   border-radius: 5px;
   background: rgba(255, 255, 255, 0.95);
}

/* Верхняя часть карточки с изображением */
.catalog-card__image {
   flex: 0 0 auto;
   aspect-ratio: 4 / 2.3;
   overflow: hidden;
}

.catalog-card__image img {
   display: block;
   width: 100%;
   height: 100%;
   object-fit: cover;
}

/* Нижняя часть карточки с текстом и кнопкой */
.catalog-card__body {
   display: flex;
   flex-direction: column;
   flex: 1 1 auto;
   min-height: 0;
   padding: 10px;
   overflow: hidden;
   align-items: center;
   text-align: center;
}

/* Заголовок карточки */
.catalog-card__title {
   margin: 0 0 10px;
   font-size: 18px;
   line-height: 1.2;
}

/* Краткое описание.
   Ограничиваем текст, чтобы карточки оставались одинаковыми по высоте */
.catalog-card__text {
   margin: 0 0 20px;
   font-size: 14px;
   line-height: 1.45;
   overflow: hidden;
   display: -webkit-box;
   -webkit-line-clamp: 2;
   -webkit-box-orient: vertical;
}

/* Кнопка внутри карточки */
.catalog-card__button {
   margin: 0 0 15px;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   align-self: center;
   padding: 8px 16px;
   border: 1px solid #452d09;
   border-radius: 8px;
   color: #452d09;
   background: #efd7be;
   text-decoration: none;
}

.catalog-card__button:hover {
   text-decoration: underline;
}

.catalog-card:hover .catalog-card__button {
  text-decoration: underline;
}

/* Верхний декоративный слой с PNG-рамкой */
.catalog-grid-strip__frame {
   position: absolute;
   inset: 0;
   z-index: 2;
   pointer-events: none;
   background-image: url('/assets/images/new/catalog-frame.png');
   background-size: contain;
   background-position: center center;
   background-repeat: no-repeat;
}