.hos-gallery {
  padding: 64px 0;
}

@media (max-width: 1000px) {
  .hos-gallery {
    padding: 48px 0;
  }
}

.hos-gallery__head {
  max-width: 768px;
  margin: 0 auto 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hos-gallery__heading {
  margin: 0;
  font-size: 40px;
  line-height: 1.1;
  font-weight: 700;
  color: #070d0b;
}

.hos-gallery__desc {
  color: #697289;
  font-size: 16px;
  margin: 0;
}

.hos-gallery__desc p {
  margin: 0 0 0.75em;
}

.hos-gallery__desc p:last-child {
  margin-bottom: 0;
}

.hos-gallery__columns {
  columns: 3;
  column-gap: 16px;
}

.hos-gallery__viewport {
  overflow: hidden;
  width: 100%;
}

.hos-gallery__track {
  display: flex;
  will-change: transform;
  transition: transform 0.28s ease;
}

.hos-gallery__dots {
  display: none;
}

.hos-gallery--slider .hos-gallery__columns {
  display: block;
  columns: initial;
  column-gap: 0;
}

.hos-gallery--slider .hos-gallery__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

.hos-gallery--slider .hos-gallery__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: #e2e7ee;
  padding: 0;
}

.hos-gallery--slider .hos-gallery__dot.is-active {
  background: #ff7031;
}

.hos-gallery__item {
  border-radius: 16px;
  overflow: hidden;
  display: block;
  break-inside: avoid;
  margin-bottom: 16px;
}
.hos-gallery__item img {
  box-shadow: 0px 6px 20px rgba(7, 13, 11, 0.06);

}

.hos-gallery--slider .hos-gallery__item {
  margin-bottom: 0;
  width: 100%;
}

.hos-gallery__item img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .hos-gallery__columns {
    columns: 2;
  }
}

@media (max-width: 640px) {
  .hos-gallery__columns {
    columns: 1;
  }

  .hos-gallery__item img {
    height: 360px;
    border-radius: 16px;
    object-fit: contain;
  }
  .hos-gallery__heading {
    font-size: 32px;
  }
  .hos-gallery__head {
    margin-bottom: 24px;
  }
}
