/* Warehouse Section Styles */
.warehouse-section {
  padding: 100px 0;
  background: #fff;
}

.warehouse-wrapper {
  display: flex;
  gap: 60px;
  align-items: flex-start;
  justify-content: space-between;
}

.warehouse-content {
  max-width: 480px;
  width: 100%;
  flex-shrink: 0;
}

.warehouse-title {
  color: #000;
  font-family: "KyivType";
  font-size: 54px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.1;
  margin: 0 0 30px 0;
  padding: 0;
}

.warehouse-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.warehouse-paragraph {
  color: #000;
  font-family: Gilroy;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  margin-bottom: 20px;
}

.warehouse-paragraph:last-child {
  margin-bottom: 0;
}

/* Gallery Grid */
.warehouse-gallery {
  display: flex;
  gap: 26px;
  flex: 1;
  min-width: 0;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.warehouse-gallery-item {
  width: calc(50% - 26px);
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.warehouse-gallery-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

/* Responsive */
@media (max-width: 1200px) {
  .warehouse-wrapper {
    gap: 40px;
  }

  .warehouse-title {
    font-size: 42px;
  }

  .warehouse-content {
    max-width: 400px;
  }
}

@media (max-width: 992px) {
  .warehouse-section {
    padding: 60px 0;
  }

  .warehouse-wrapper {
    flex-direction: column;
    gap: 40px;
  }

  .warehouse-content {
    max-width: 100%;
  }

  .warehouse-gallery {
    width: 100%;
  }

  .warehouse-title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .warehouse-section {
    padding: 40px 0;
  }

  .warehouse-title {
    font-size: 28px;
    margin-bottom: 20px;
  }

  .warehouse-paragraph {
    font-size: 15px;
    line-height: 24px;
  }

  .warehouse-gallery {
    gap: 12px;
  }

  .warehouse-gallery-item {
    width: calc(50% - 6px);
  }
}

@media (max-width: 480px) {
  .warehouse-gallery {
    gap: 8px;
  }

  .warehouse-gallery-item {
    width: calc(50% - 4px);
  }
}
