.notice-layers {
  .main &, &.filled {
    .notice-layer {
      /* Custom(수정): 팝업의 크기가 넘칠경우 중간부터 시작하면 상단 내용이 잘리는 현상 수정 */
      align-content: flex-start;
      /* Custom(수정): 팝업이 하나만 남을경우 영역 크기가 극단적으로 작아지는 현상 수정 */
      width: 100vw;
    }
  }
}

/* Custom(수정): 251208 소통마당 cs-card 하단 여백 수정 */
.sect .head.cs-card {
  padding: 30px;
  margin-bottom: 20px;
}

/* Custom(수정): cs-card가 있는 head는 only-child여도 padding-bottom 유지 */
.sect .head:only-child:not(.cs-card) {
  padding-bottom: 0;
}

/* Custom(수정): cs-info의 이미지 아이콘 색상 기존 인천시티투어처럼 메인 색상과 비슷하게 수정 */
.reserv-ui {
  & .cs-info {
    .icon {
      filter: hue-rotate(55deg);
    }
  }
}