/* * {
    border: solid 1px rgba(242, 0, 0, 0.119);
} */

.main-gallery {
  padding: 30px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  gap: 50px;
}

.gallery-grid {
  column-count: 4;
  column-gap: 20px;
  padding: 10px;
}

.gallery-img {
  break-inside: avoid;
  margin-bottom: 20px;
  display: inline-block;
  width: 100%;
}

.img {
  border-radius: 6px;
  display: block;
  width: 100%;
}

.img-desc {
  margin-top: 6px;
}

.img-comp {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  letter-spacing: -1%;
}

.img-work {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  color: #b7b7b7;
  letter-spacing: -1%;
}

.gallery-description {
  display: flex;
  flex-direction: column;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  color: #171717;
  width: fit-content;

}

@media (max-width: 768px) {

  .main-gallery {
    padding: 20px;
  }

  .gallery-grid {
    column-count: 2;
  }

}