/* //////////////////////////////////////////////////헤더 부분////////////////////////////////////////////*/
.hc-notice-slide-outer {
  width: 100%;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.notice-slide-header-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-bottom: 20px;
  box-sizing: border-box;
}

.hc-notice-slide-title {
  font-size: 28px;
  color: #fff;
  font-weight: 800;
  margin: 0;
  padding-left: 15px;
}

.notice-slide-number-outer {
  display: flex;
  align-items: center;
  gap: 4px;
}

.notice-slide-bar-wrap {
  display: inline-block;
  width: 64px;
  height: 5px;
  background: rgba(255, 255, 255, 0.18);
  margin: 0 8px;
  border-radius: 3px;
  overflow: hidden;
  vertical-align: middle;
  position: relative;
}

.notice-slide-bar {
  display: block;
  height: 100%;
  width: 0;
  background: #fff;
  border-radius: 3px;
  transition: width 0.4s cubic-bezier(.44, .16, .42, .98);
}

.notice-slide-current,
.notice-slide-total {
  font-size: 15px;
  color: #fff;
}

.hc-notice-prev,
.hc-notice-next {
  background: none;
  border: none;
  color: #fff;
  width: 34px;
  height: 34px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.hc-notice-prev::before {
  content: '<';
  font-size: 26px;
  color: #fff;
  font-weight: bold;
  line-height: 1;
}

.hc-notice-next::before {
  content: '>';
  font-size: 26px;
  color: #fff;
  font-weight: bold;
  line-height: 1;
}

.hc-notice-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  outline: none;
  width: 34px;
  height: 34px;
  padding: 0;
  margin: 0 4px;
  cursor: pointer;
}

.hc-notice-toggle .notice-pause-icon,
.hc-notice-toggle .notice-play-icon {
  display: inline-block;
  width: 22px;
  height: 22px;
  text-align: center;
  color: #fff !important;
  fill: #fff !important;
  font-size: 20px;
  line-height: 22px;
  vertical-align: middle;
}

.hc-notice-toggle svg {
  width: 22px;
  height: 22px;
  display: block;
  margin: 0 auto;
  vertical-align: middle;
}

.hc-notice-toggle .notice-pause-icon {
  font-size: 20px;
  letter-spacing: -2px;
}

.hc-notice-toggle svg polygon {
  fill: #fff !important;
}

/* ///////////////////////////바디 부분(이미지)/////////////////////////////////*/

.hc-notice-swiper-slide.swiper {
  width: 100%;
  height: 400px;
  margin: 0 auto;
  box-sizing: border-box;
}

.swiper-wrapper,
.swiper-slide {
  width: 100%;
  box-sizing: border-box;
}

.swiper-slide {
  display: flex;
  justify-content: center;
  align-items: stretch;
  padding: 0;
  background: none;
  cursor: pointer;
}

.notice-slide-flexbox {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 46px 0 rgba(30, 80, 180, 0.11);
  overflow: hidden;
  margin: 0;
}

.notice-thumb {
  min-width: 0;
  width: 500px;
  height: 400px;
  border-radius: 16px 0 0 16px;
  overflow: hidden;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}
.notice-thumb img {
  max-width: 100%;     /* 320px */
  max-height: 100%;    /* 400px */
  width: auto;         /* 비율 유지 */
  height: auto;        /* 비율 유지 */
  object-fit: contain; /* 사실상 의미 없음. 이 조합에서는 max-로 다 됨 */
  display: block;
  background: #fff;
}



/* ///////////////////////////바디 부분(문단)/////////////////////////////////*/

.notice-slide-content {
  flex: 1 1 0;
  min-width: 0;
  min-height: 0;
  padding: 38px 38px 24px 32px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  background: none;
  color: #183288;
}

.notice-slide-title {
  font-size: 23px;
  font-weight: 800;
  color: black;
  margin-bottom: 18px;
  margin-top: 0;
  line-height: 1.32;
  word-break: keep-all;
}

.notice-slide-desc {
  font-size: 17px;
  color: #212121;
  line-height: 1.7;
  margin-bottom: 20px;
  white-space: pre-line;
  word-break: break-all;
}

.notice-slide-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-top: auto;
  padding-top: 12px;
}

.notice-label {
  display: inline-block;
  background: #2257c8;
  color: #fff;
  font-size: 15px;
  border-radius: 30px;
  padding: 4px 18px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.notice-date {
  color: #757575;
  font-size: 15px;
  font-weight: 500;
  margin-left: 8px;
  white-space: nowrap;
}

/* ////////////////////////모바일 헤더////////////////////// */
@media (max-width: 700px) {
  .hc-notice-slide-outer {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 20%;
    padding-top: 20%;
  }

  .notice-slide-header-row {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 20px;
    gap: 7px;
  }

  .hc-notice-slide-title {
    text-align: center;
    width: 100%;
    padding-left: 0;
    padding-bottom: 30px;
    margin: 0 auto 0 auto;
    font-size: 28px;
    /* 모바일에 어울리는 크기 */
  }

  .notice-slide-number-outer {
    justify-content: center;
    width: 100%;
  }

  .notice-slide-bar-wrap {
    width: 30%;
    margin: 0 8px;
  }
}

/* ////////////////////////모바일 바디////////////////////// */
@media (max-width: 700px) {
  .notice-slide-content {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
  }

  .hc-notice-swiper-slide.swiper {
    width: 95%;
    margin: 0 auto;
    height: auto !important;
    min-height: 0 !important;
    background: none;
    box-shadow: none;
    padding: 0;
  }

  .notice-slide-flexbox {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    max-width: 100%;
    margin: 0 auto;
    background: none;
    overflow: hidden;
    padding: 0;
  }

  .notice-thumb,
  .notice-slide-content {
    width: 100%;
    box-sizing: border-box;
  }

  .hc-notice-swiper-slide.swiper,
  .hc-notice-swiper-slide .swiper-wrapper,
  .hc-notice-swiper-slide .swiper-slide,
  .hc-notice-swiper-slide .notice-slide-content {
    height: unset !important;
    min-height: 0 !important;
    max-height: none !important;
    border: none;
  }

  .notice-thumb {
    width: 100%;
    min-width: 0;
    max-width: 100%;
    height: auto;
    min-height: 160px;
    background: #fff;
    border-radius: 15px 15px 18px 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0 auto;
  }

  .notice-thumb img {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: contain;
    display: block;
  }

  .notice-slide-content {
    z-index: -10;
    margin-top: -20px;
    padding: 10% 10% 110% 10%;
    background: rgba(0, 0, 0, 0.26);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 0 0 18px 18px;
    color: #fff;
    box-sizing: border-box;
  }

  .notice-slide-title {
    font-size: 17px;
    color: white;
  }

  .notice-slide-desc {
    font-size: 15px;
    color: white;
  }

  .notice-date {
    font-size: 15px;
    color: white;
  }
}


