.about-us-wrapper{
	width: min(100%, 1200px);
    margin: 32px auto;
}
.about-text{
 	flex:1;
}

/* About Gallery */

.history-gallery {
  margin-top: 40px;
}

.history-gallery-title {
  margin-bottom: 10px;
}

.history-gallery-intro {
  margin-bottom: 25px;
}

.history-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.history-gallery-item {
  background: #fff;
  overflow: hidden;
}

.history-gallery-item img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.history-gallery-caption {
  padding: 15px;
  font-size: 14px;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .history-gallery-grid {
    grid-template-columns: 1fr;
  }

  .history-gallery-item img {
    height: auto;
  }
}