
@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard-dynamic-subset.min.css");
body {
  /* iOS 스크롤 관련 속성 추가 */
  /* index.html에는 없지만 하위 index.html에는 있었음.사용 목적 파악 필요 */
  -webkit-overflow-scrolling: touch;
  overflow-y: scroll;
  overflow-x: hidden;

  touch-action: pan-y;
  flex-shrink: 0;
  flex-basis: auto;
  flex-grow: 1;
  display: flex;
  flex: 1;
  margin: 0px;
  padding: 0px;
  width: -webkit-fill-available;
  height: -webkit-fill-available;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  font-family: 'Pretendard';
}

#app {
  /* iOS 스크롤 관련 속성 추가 */
  /* index.html에는 없지만 하위 index.html에는 있었음.사용 목적 파악 필요 */
  -webkit-overflow-scrolling: touch;
  overflow-y: scroll;
  overflow-x: hidden;

  position: fixed;
  display: flex;
  flex: 1;
  touch-action: pan-y;
  width: -webkit-fill-available;
  height: -webkit-fill-available;
}

::-webkit-scrollbar {
  display: none;
}

.truncatable-text {
  display: block;
  white-space: pre-line;
}

.truncated {
  display: -webkit-box;
  -webkit-line-clamp: 4;
  /* 원하는 최대 라인 수 */
  line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* index.html에는 없지만 하위 index.html에는 있었음.사용 목적 파악 필요 */
.expanded {
  display: block;
}