.frame-bg1 {
  width: 375px;
  min-height: 1800px;
  background: #19181d;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  padding-bottom: 90px; /* 네비게이션 높이만큼 */
}
.gnb {
  width: 100%;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #111;
  position: relative;
}
.service-select {
  display: flex;
  gap: 8px;
  margin: 16px 0 0 0;
  /* padding: 0 12px; */
  /* overflow-x: auto;
  scroll-behavior: smooth;
  width: 100%; */
}
.service-select .service {
  background: #f1f1f5;
  color: #999;
  border-radius: 32px;
  padding: 8px 20px;
  font-size: 20px;
  font-weight: 600;
}
.service-select .service.active {
  background: #fff;
  color: #00cd3c;
}
h4 {
  margin: 0;
  color: white;

}
.guide-tabs-inner {
  display: flex;
  transition: transform 0.4s cubic-bezier(.4,0,.2,1);
  will-change: transform;
  height: 56px;
  gap: 24px;
  margin-left: 8px;
}
.guide-tabs-inner .tab {
  text-decoration: none;
  display: flex;
  align-items: center;
  /* min-width: 130px; */
  text-align: center;
  font-size: 18px;
  color: #999;
  padding: 12px 8px 8px 8px;
  cursor: pointer;
  font-family: 'Pretendard Variable', 'Inter', 'Poppins', sans-serif;
  font-weight: 400;
  background: none;
  border: none;
  outline: none;
  transition: color 0.2s, font-size 0.2s, font-weight 0.2s;
  white-space: nowrap;
}
.guide-images {
  margin: 32px 0 0 0;
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.guide-images img {
  width: 100%;
  max-width: 343px;
  border-radius: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  background: #222;
  object-fit: cover;
  display: block;
}
.service-select.center {
  justify-content: center;
  overflow-x: hidden;
}
.service-select.scrollable {
  justify-content: flex-start;
  overflow-x: auto;
  scrollbar-width: none;
}
.service-select.scrollable::-webkit-scrollbar {
  display: none;
}
.service-select .service-item:last-child {
  margin-right: 120px;
}
.service-label.stationhead {
  color: #6D4AFF;
  font-size: 18px;
  padding: 8px 16px;
} 
.service-item{
  min-width: 75px;
}