/* Сітка для ПК */
.grid-project-container {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

/* Елемент */
.grid-item {
  overflow: hidden;
  border-radius: 8px;
}

/* Зображення */
.grid-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 8px;
}

/* Планшети */
@media (max-width: 1024px) {
  .grid-project-container {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
  }
}

/* Мобільні */
@media (max-width: 768px) {
  .grid-project-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
  }
}

/* Дуже маленькі мобільні */
@media (max-width: 480px) {
  .grid-project-container {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem;
  }
}

/* ===== МАКСИМАЛЬНО КОМПАКТНИЙ ВІДСТУП ===== */
.implemented-project-section {
  margin-top: 0.3rem;   /* мінімальний відступ зверху */
  margin-bottom: 4rem;
}

/* Заголовок — стиль як у perevagy */
.implemented-project-section .implemented-title {
  text-align: left;
  font-size: clamp(1.4rem, 2vw, 1.9rem);
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #2f4447;
  margin-bottom: 1.5rem;
}

/* Мобільні */
@media (max-width: 766px) {
  .implemented-project-section .implemented-title {
    text-align: center;
    font-size: 1.25rem;
  }
}

/* ===== ДОДАТКОВИЙ КОНТРОЛЬ ВІДСТУПУ (щоб не перебивало зверху) ===== */
.ff-youtube-wrapper {
  margin: 34px 0 2px;
}




