.gal-block {
  display: flow-root;
  border-bottom: 2px solid var(--border-color);
  width: calc(100% - 270px);
  padding-left: 50px;
}

.gal-title-block {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: space-between;
  width: calc(100vw - 100px - 270px);
}

.gal-title {
  text-align: left;
  font-style: normal;
  font-weight: 900;
  font-size: 30px;
  color: var(--button-text-color);
}

.gal-container {
  display: flex;
  flex-direction: row;
  column-gap: 15px;
  justify-content: flex-start;
  flex-wrap: wrap;
  align-content: flex-start;
  align-items: center;
  width: calc(100vw - 100px - 270px);
}

.gal-more {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
  padding: 10px;
  cursor: pointer;
}

.gal-item {
}

.gal-image {
  border: none;
  border-radius: 15px;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: var(--banner-width);
  height: var(--banner-height);
  margin-top: 10px;
}

.gal-text {
  color: var(--text-color-mute);
  font-size: larger;
}

.gal-more-img {
  transition: 0.2s;
  transform: rotate(90deg);
}

.gal-more-img:hover {
  transform: rotate(0deg);
}

.gal-more-text {
  font-style: normal;
  font-weight: 400;
  font-size: 20px;
  color: #707070;
}
