.fillers-page {
  background: #f8f8f8;
  flex: 1 0 auto; /* ОБОВ’ЯЗКОВО — для sticky footer */
  padding-top: 10px; /* відступ від шапки */
}
.fillers__title {
  color: #790000;
}

.fillers {
  padding-bottom: 100px; /* відступ до футера */
}

/* ===== СТИЛІ ДЛЯ СІТКИ ===== */
.fillers__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-top: 20px;
}

.fillers__item {
  display: block;
  text-align: center;
  overflow: hidden;
  background: #fff;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.fillers__item img {
  width: 100%;
  aspect-ratio: 1.2 / 1;
  height: auto;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.fillers__item:hover img {
  transform: scale(1.07); /* збільшення фото */
}
.fillers__item:hover {
  transform: scale(1.03);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.fillers__item h3 {
  padding: 15px 0;
  font-weight: 700;
  color: #000000;
  text-transform: uppercase;
}

/* ===стилі Інформації , яка є під карткою === */
.fillers__info {
  margin-top: 50px;
  background: #ffffff;
  padding: 20px;
}
/* верхній блок */
.fillers__intro {
  margin-bottom: 10px;
}

/* 2 колонки */
.fillers__columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
/* колонки */
.fillers__col h3 {
  margin-top: 20px;
}

.fillers__col p {
  margin-bottom: 10px;
}
.fillers__info h3 {
  font-size: clamp(18px, 1.8vw, 32px);
  margin-bottom: 10px;
  margin-top: 10px;
  text-align: center;
  color: #222222;
}

.fillers__info p {
  font-size: 16px;
  line-height: 1.6;
  color: #222222;
}

/* ===Адаптив === */
/* 768+ */
@media (min-width: 768px) {
  .fillers__grid {
    /* Виправлено: fillers__grid замість fillers-grid */
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }
  .fillers__columns {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

/* 1200+ */
@media (min-width: 1200px) {
  .fillers__grid {
    /* к-сть колонок */
    grid-template-columns: repeat(4, 1fr);
  }
  .fillers__info {
    padding: 30px 40px;
  }
}
