.related-gls {
  margin: 28px 0;
}

.related-gls__content {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.related-gls__item {
  margin-top: 28px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.related-gls__item .item-gl {
  width: 27.5%;
  max-width: 55px;
  aspect-ratio: 1;
}

.related-gls__item .gl-texts {}

.gl-texts h5 {
  font-size: 14px;
}

.gl-texts button {
  color: #292929;
  font-size: 10px;
  background-color: #FEBD2B;
  border-radius: 2px;
  padding: 3px 6px;
  margin-left: 4px;
}

.gl-texts button[data-is-show] {
  background: rgba(254, 189, 43, 0.20);
  color: #FEBD2B;
}

.gl-texts p {
  color: #7C7C7C;
  font-size: 11px;
}

@media screen and (max-width: 824px) {
  .related-gls h2 {
    font-size: 16px;
    padding-left: 8px;
    line-height: 22px;
  }

  .related-gls h2::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 18px;
    border-radius: 2px;
    background: linear-gradient(180deg, #FF9000 0%, rgba(255, 133, 18, 0.00) 100%);
  }

  .related-gls__content {
    display: flex;
    gap: 18px;
    overflow: scroll hidden;
  }

  .related-gls__item {
    flex-shrink: 0;
    margin-top: 18px;
  }

  .related-gls__item .item-gl {
    width: 36px;
    height: 36px;
  }

  .gl-texts h5 {
    font-size: 12px;
    line-height: 18px;
  }

  .gl-texts button {
    font-size: 11px;
    padding: 0 4px;
    margin-left: 5px;
    line-height: 13px;
  }

  .gl-texts p {
    font-size: 10px;
    line-height: 16px;
  }
}