/* =========================================================
  common 공통
========================================================= */
.sub-visual{
  width: 100%;
  height: 430px;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}

.sub-visual .visual-text{
  text-align: center;
  padding: 3rem;
  position: relative;
  z-index: 1;
}

.sub-visual .visual-text::before{
  content: 'KWU';
  position: absolute;
  font-family: 'playD';
  font-size: 10rem;
  font-weight: 800;
  top: -3rem;
  left: 0;
  right: 0;
  color: rgba(var(--color-white-rgb), 0.1);
  text-stroke: 1px white;
  -webkit-text-stroke: 1px rgba(2var(--color-white-rgb), 0.2);
  z-index: -1;
}

.sub-visual .visual-title{
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--color-white-hex);
  text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.1);
}

.sub-visual .visual-subtitle{
  color: var(--color-white-hex);
  text-shadow: 1px 2px 3px rgba(0, 0, 0, 0.1);
}


/* path nav */
.path-nav{
  margin-top: -80px;
}

.pathbox{
  position: relative;
  flex: 1 1 65vw;
  max-width: 65vw;
  z-index: 1;
}

.pathbox::after{
  content: '';
  width: 100vw;
  height: 100%;
  background-color: rgba(var(--color-primary-rgb), 1);
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: -1;
  border-top-right-radius:3rem;
}

.path-nav .path-list{
  display: flex;
  align-items: center;
  height: 100%;
}

.path-nav .path-item{
  height: 80px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  position: relative;
}

.path-nav .path-item,
.ui-dropdown-menu{
  min-width: 180px;
}

.path-nav .path-item:last-child{
  border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.path-nav .path-item.home{
  aspect-ratio: 1 / 1;
  min-width: 0;
}

.path-nav .path-link,
.path-nav .path-toggle{
  width: 100%;
  height: 100%;
  color: var(--color-white-hex);
  padding: 0 1rem;
  text-align: left;
}

.path-nav .path-toggle{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.path-item .ui-dropdown-toggle::after{
  content: '';
  display: inline-block;
  position: relative;
  width: 13px;
  height: 7px;
  background-image: url('/resources/cyber/images/common/arrowDown.png');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  transition: transform .25s ease;
}

.path-item.is-open .ui-dropdown-toggle::after {
  transform: translateY(-50%) rotate(180deg);
}

.path-nav .path-link{
  display: flex;
  align-items: center;
  justify-content: center;
}

.ui-dropdown-menu[hidden] {
  display: none;
}

.ui-dropdown-menu{
  width: 100%;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #fff;
  border: 1px solid var(--color-gray-light-hex);
  padding: 0.5rem 0;
  border-radius: 0 0 0.5rem 0.5rem;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  min-width: max-content;
  z-index: 10;
}

.path-item.is-open > .ui-dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}


/* dropdown */
.ui-dropdown-toggle{
  position: relative;
}

.ui-dropdown-menu li a{
  padding: 0.5rem 1rem;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: background 0.3s;
}

.ui-dropdown-menu li a:hover,
.ui-dropdown-menu li a:focus-within{
  background-color: var(--color-gray-light-hex);
}


/* share list */
.path-nav .share-list{
  gap: 0.5rem;
}

.path-nav .share-item{
  background-color: rgba(245, 245, 245, 0.6);
  border-radius: 0.5rem;
  transition: background 0.3s;
}

.path-nav .share-item:hover,
.path-nav .share-item:focus-within{
  background-color: rgba(245, 245, 245, 1);
}

.path-nav .share-btn{
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
}


@media (max-width: 1299.98px) {
  .pathbox{
    flex: 1 1 75vw;
    max-width: 75vw;
  }
}

@media (max-width: 1079.98px) {
  .sub-visual{
    height: 310px;
  }

  .sub-visual .visual-text{
    padding: 2rem;
  }

  .sub-visual .visual-text::before{
    font-size: 7rem;
    top: -2rem;
  }
  
  .path-nav .path-item{
    height: 60px;
  }
  
}

@media (max-width: 991.98px) {
  .path-nav{
    position: relative;
    margin-top: -50px;
    bottom: 1rem;
  }
  
  .pathbox{
    flex: 1 1 auto;
    max-width: none;
  }
  
  .pathbox::after{
    content: none;
  }
  
  .path-nav .path-list{
    justify-content: center;
  }
  
  .path-nav .path-item{
    height: 50px;
    display: none;
  }

  .path-nav .path-item:last-child{
    display: flex;
    border: none;
    background-color: rgba(var(--color-primary-rgb), 1);
    min-width: auto;
    width: 80%;
  }
}

/* 확대 대상 */
/* [data-zoom-target] {
  --zoom-level: 1;
  font-size: calc(1rem * var(--zoom-level));
  line-height: 1.6;
}

[data-zoom-target] p,
[data-zoom-target] li,
[data-zoom-target] span,
[data-zoom-target] a,
[data-zoom-target] td,
[data-zoom-target] th {
  font-size: 1em;
} */


/* sub content */
.sub-inner {
  padding-block: clamp(3rem, 8vw, 5rem);
}


/* sub title */
.content {
  margin: 100px 0 80px;
}

.page-title .title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  margin-bottom: 50px;
  text-align: center;
}


@media (max-width: 991.98px) {
  .content {
    margin: 80px 0;
  }

  .page-title .title {
    margin-bottom: 2.5rem;
  }
}


/* =========================================================
  signUp 회원가입
========================================================= */
.signup-page .sub-visual {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)),
                    url('/resources/cyber/images/sub/subHeader-greetings.png');
}

.signup-step-content {
  display: none;
  margin: 0 auto;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.signup-step-content.is-active {
  display: flex;
  opacity: 1;
}

.signup-step--agree {
  max-width: 960px;
}

.signup-page .terms-box {
  /* border-color: #dee2e6; */
  padding: 1rem 2rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.signup-page .section-divider {
  margin-block: 1rem 2rem;
}

.signup-page .form-check {
	margin: 0;
}

.signup-page .form-check-input:checked,
.signup-page .form-check-input[type=checkbox]:indeterminate {
  background-color: rgba(var(--color-primary-hover-rgb), 1);
}

.signup-page .accordion-item {
  border-radius: 0.5rem;
  border: 1px solid rgb(var(--border-input-rgb));
  padding: 0 2rem;
  margin-bottom: 1rem;
}

.signup-page .accordion-item:last-child {
  margin-bottom: 0;
}

.signup-page .accordion-button:not(.collapsed) {
  color: rgb(var(--color-text-primary));
  background-color: transparent;
  box-shadow: none;
}

.signup-page .accordion-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-block: 0.5rem;
}

.signup-page .accordion-header .form-check-label {
  white-space: nowrap;
}

.signup-page .accordion-body {
  padding-inline: 1rem;
  max-height: 280px;
  overflow-y: auto;
}

.signup-step--form,
.signup-step--complete {
  max-width: 720px;
}

.signup-page .btn-check-id {
  min-width: 110px;
}

.signup-page .form-label {
  font-size: 1rem;
  font-weight: 500;
  padding-left: 2px;
}

.signup-step--complete .complete-box {
  width: 100%;
  background-color: rgb(var(--bg-point-light-rgb));
  border-radius: 2rem;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.signup-step--complete .complete-message {
  font-size: 1.15rem;
}

.complete-memo {
  font-size: 0.875rem;
  color: #666;
}

.signup-steps {
  display: flex;
  justify-content: space-between;
  max-width: 960px;
  margin: 0 auto 3rem;
  padding: 0;
  list-style: none;
}

.signup-step {
  position: relative;
  flex: 1;
  text-align: center;
  color: rgb(var(--color-text-muted));
}

.signup-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: calc(3rem / 2);
  left: 100%;
  width: 60%;
  border: 1px dashed rgb(var(--border-input-rgb));
  transform: translate(-50%);
}

.signup-page .step-circle {
  border: 2px dotted rgb(var(--border-input-rgb));
  width: 3rem;
  height: 3rem;
  aspect-ratio: 1 / 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: rgb(var(--color-text-muted));
}

.signup-page .step-label {
  margin: 0;
}

.signup-step.previous {
  color: rgb(var(--color-point-rgb));
  opacity: .8;
}

.signup-step.previous .step-circle {
  border-color: rgba(var(--color-point-rgb), 1);
  background-color: rgba(var(--color-point-rgb), 0.1);
  color: inherit;
}

.signup-step.current {
  color: #1a6140;
}

.signup-step.previous::after {
  border-color: rgba(var(--color-point-hover-rgb), 0.5);
}

.signup-step.current .step-circle {
  border-color: rgba(var(--color-point-hover-rgb), 1);
  background-color: rgba(var(--color-point-rgb), 0.1);
  color: rgb(var(--color-point-hover-rgb));
}

@media (max-width: 1399.98px) {}

@media (max-width: 1199.98px) {}

@media (max-width: 991.98px) {
  .signup-page .accordion-item {
    margin-bottom: 2em;
  }

  .signup-page .accordion-body {
    max-height: 220px;
  }
}

@media (max-width: 767.98px) {
  .signup-step:not(:last-child)::after {
    content: none;
  }
}

@media (max-width: 575.98px) {
  .signup-page .terms-box {
    padding: 1.25rem;
  }

  .signup-page .accordion-item {
    padding: 0 1rem;
  }

  .signup-page .accordion-header {
    padding-block: 0;
  }
}


/* =========================================================
  greetings 인사말
========================================================= */
.intro-page .sub-visual{
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)),
                    url('/resources/cyber/images/sub/subHeader-greetings.png');
}

.greeting-page .content-left{
  padding-top: 3rem;
}

.greeting-page .content-right{
  display: flex;
  justify-content: center;
  overflow: hidden;
}

.greeting-page .content-right-inner{
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  padding-top: 2rem;
  padding-left: clamp(2rem, 8vw, 5rem);
  position: relative;
}

.greeting-page .content-right-inner::before{
  content: '';
  position: absolute;
  top: 1rem;
  right: 3rem;
  width: 10%;
  height: 3px;
  border-radius: 1rem;
  background-color: rgba(var(--color-primary-rgb), 0.3);
}

.greeting-page .content-right-inner::after{
  content: 'KWU';
  position: absolute;
  font-size: clamp(8rem, 25vw, 12rem);
  font-weight: 800;
  line-height: 1;
  top: -2rem;
  left: 0;
  right: 0;
  color: rgba(218, 192, 240, 0.2);
}

.greetings-text{
  gap: 1.5rem;
  word-break: keep-all;
}

.greetings-text h3{
  font-weight: 800;
  margin-bottom: 1rem;
}

.greetings-img{
  aspect-ratio: 550 / 670;
}

.greetings-img img{
  max-width: 100%;
  object-fit: cover;
}

.greetings-name{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}

.greetings-name .name{
  font-size: clamp(16px, 8vw, 20px);
}

.greetings-logo{
  width: 60px;
  aspect-ratio: 1 / 1;
}

.greetings-logo img{
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain; 
}


@media (max-width: 1199.98px) {
  .greeting-page .content-left{
    padding-top: 0;
  }
  
  .greetings-text {
  	gap: 1rem;
  }
}


@media (max-width: 991.98px) {
  .greeting-page .content-inner{
    gap: 3rem;
  }
  
  .greetings-text {
  	word-break: normal;
  }

  .greeting-page .content-right-inner::before{
    content: none;
  }
}

@media (max-width: 767.98px) {
  .greeting-page .content-right-inner::after{
    letter-spacing: -0.5rem;
  }
}


@media (max-width: 575.98px) {
  /* .greetings-text h3{
  	padding: 2rem 1rem;
  	background-color: #f7f0fd;
  	border-radius: 0.5rem;
  } */

  .greeting-page .content-right-inner{
    padding-left: 0;
  }

  .greetings-logo{
  }
}



/* =========================================================
  about 사업단소개
========================================================= */
.about-page {
  --local-radius-pill: 9999px;
}

.about-page dl,
.about-page dt,
.about-page dd {
  margin-bottom: 0;
}

.about-page .item {
  margin-top: 3rem;
}

/* ----- 비전 ----- */
.about-page .item--vision {
  padding: 1.5rem 1rem;
  background: url('/resources/cyber/images/sub/about-vision-bg.png') no-repeat center / cover;
  text-align: center;
  border-radius: var(--local-radius-pill);
}

.about-page .item--vision dt {
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
  color: #39258c;
  margin-bottom: 0.5rem;
}

.about-page .item--vision dd {
  font-size: 24px;
  color: #39258c;
}

/* ----- 인재상 ----- */
.about-page .item--talent {
  display: flex;
  justify-content: center;
  gap: 2rem;
  font-size: 20px;
}

.about-page .item--talent dt {
  border: 2px solid #5daaff;
  border-radius: 1rem;
  padding: 0.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
  position: relative;
  font-weight: 500;
}

.about-page .item--talent dt::after {
  content: '';
  width: 2.15rem;
  height: 2px;
  background-color: #5daaff;
  position: absolute;
  top: 50%;
  left: 100%;
  transform: translateY(-50%);
}

.about-page .item--talent dd {
  background-color: #e4f3ff;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  min-width: 48%;
  padding-inline: 1rem;
}

/* ----- 교육목표 ----- */
.about-page .item--edu-goal dl {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.about-page .item-dt {
  height: 3rem;
  padding: 0 2rem;
  background-color: #0053a0;
  border-radius: var(--local-radius-pill);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.about-page .item--edu-goal dt {
  z-index: 1;
  font-weight: 500;
}

.about-page .item--edu-goal dd {
  border: 3px dotted #2684dc;
  border-radius: var(--local-radius-pill);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 5rem;
  margin-left: -3rem;
  color: #004f9e;
  font-weight: 600;
}

.about-page .item--edu-goal ul {
  background-color: #f5f5f5;
  border-radius: var(--local-radius-pill);
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  margin-top: 2rem;
  position: relative;
}

.about-page .item--edu-goal ul::before,
.about-page .item--edu-goal ul::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.about-page .item--edu-goal ul::before {
  height: 2rem;
  border: 1px solid #2684dc;
  top: -2rem;
}

.about-page .item--edu-goal ul::after {
  width: 1rem;
  height: 1rem;
  background-color: #2684dc;
  border-radius: 50%;
  top: -2.5rem;
}

.about-page .item--edu-goal li {
  padding: 1rem;
  background-color: #fff;
  border-radius: var(--local-radius-pill);
  font-size: 18px;
  flex: 1;
  text-align: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  word-break: keep-all;
}

.about-page .item--edu-goal li:not(:last-child)::after {
  content: '+';
  display: block;
  width: 20px;
  height: 20px;
  aspect-ratio: 1 / 1;
  line-height: 1;
  font-size: 18px;
  font-weight: 800;
  color: #fff;
  background-color: #2684dc;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: -2.125rem;
  transform: translateY(-50%);
}

/* ----- 핵심전략과 혁신과제 ----- */
.about-page .item--innovation,
.about-page .item--direction {
  text-align: center;
}

.about-page .item--innovation dt,
.about-page .item--direction dt {
  position: relative;
  z-index: 1;
}

.about-page .item--innovation dd,
.about-page .item--direction dd {
  position: relative;
  border: 1px dashed #0053a0;
  border-radius: 2rem;
  padding: 4rem 3rem 2rem;
  top: -1.5rem;
}

.about-page .inno-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.about-page .inno-card--title {
  border-radius: 0.5rem;
  background-color: #e4f3ff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  height: 56px;
  position: relative;
  word-break: keep-all;
}

.about-page .inno-card--title::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 1rem;
  border: 1px solid #92b8ff;
  bottom: -1rem;
}

.about-page .inno-card--num {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #5daaff;
  font-size: 18px;
  color: #fff;
  font-weight: 600;
}

.about-page .inno-card--title h4 {
  font-size: 18px;
  font-weight: 600;
}

.about-page .inno-card p {
  border-radius: 0.5rem;
  border: 1px solid #5daaff;
  flex: 1;
  padding: 1rem;
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  word-break: keep-all;
  color: #333;
}

/* ----- 기본방향 ----- */
.about-page .item--direction {
  margin-top: 1.5rem;
}

.about-page .item--direction dd {
  padding-top: 3rem;
}

.about-page .direction-card {
  flex-direction: column;
  align-items: center;
}

.about-page .item-dd--title {
  padding: 0 2rem 0 2.75rem;
  background-color: #fff;
  color: #00468b;
  font-size: 20px;
  font-weight: 800;
  position: relative;
  z-index: 1;
}

.about-page .item-dd--title::before {
  content: '';
  width: 3px;
  height: 100%;
  background-color: #2571ff;
  position: absolute;
  top: 0;
  left: 2rem;
}

.about-page .direction-card--rise p {
  position: relative;
  border: 6px solid #d7e1ec;
  border-radius: var(--local-radius-pill);
  padding: 2rem 3rem;
  top: -1.5rem;
  width: 70%;
  font-size: 20px;
  font-weight: 500;
}

.about-page .direction-card--5c ul {
  width: 100%;
  gap: 1rem;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  place-content: center;
}

.about-page .direction-card--5c li {
  background-color: #f5f5f5;
  border-radius: var(--local-radius-pill);
  padding: 1rem;
  white-space: nowrap;
}

.about-page .direction-card--5c b {
  width: 2rem;
  height: 2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  flex: 0;
  color: #fff;
  background-color: #2571ff;
  border-radius: 50%;
  margin-right: 3px;
}

/* ----- 추진과제와 추진전략 ----- */
.about-page .strategy-card {
  border: 1px solid #39258c;
  border-radius: 0.5rem;
  overflow: hidden;
  height: 100%;
}

.about-page .strategy-card .item {
  margin-top: 0;
}

.about-page .strategy-card dt,
.about-page .strategy-card dd {
  padding: 0.5rem 1rem;
  text-align: center;
}

.about-page .strategy-card dt {
  font-size: 20px;
}

.about-page .strategy-card dd {
  padding: 1rem;
}

.about-page .item--tasks dt {
  background-color: #39258c;
  color: #fff;
}

.about-page .item--tasks dd {
  color: #39258c;
  font-size: 18px;
  font-weight: 600;
}

.about-page .item--strategy dt {
  background-color: #f7f0fd;
}

.about-page .item--strategy dd {
  word-break: keep-all;
  color: #333;
}

.about-page .item--tasks dd {
  position: relative;
}

.about-page .item--tasks dd::after {
  content: '';
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #fff;
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
}

/* ----- 대표 산업 분류 ----- */
.about-page .cont--industry {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  margin-top: 2rem;
}


@media (max-width: 991.98px) {
  /* ----- 비전 ----- */
  .about-page .item--vision dt {
    font-size: 36px;
  }

  /* ----- 인재상 ----- */
  .about-page .item--talent {
    gap: 1rem;
  }

  .about-page .item--talent dt::after {
    width: 1.15rem;
  }

  .about-page .item--talent dd {
    padding-inline: 2rem;
  }

  /* ----- 교육목표 ----- */
  .about-page .item--edu-goal ul {
    border-radius: 2rem;
    flex-direction: column;
    gap: 2rem;
  }

  .about-page .item--edu-goal li:not(:last-child)::after {
    top: calc(100% + 16px);
    left: auto;
    right: auto;
  }

  /* ----- 핵심전략과 혁신과제 ----- */
  .about-page .item--innovation dd,
  .about-page .item--direction dd {
    padding: 3rem 2rem 2rem;
  }


  /* ----- 기본방향 ----- */
  .about-page .direction-card--rise p {
    width: 100%;
    word-break: keep-all;
  }
}


@media (max-width: 767.98px) {
  /* ----- 비전 ----- */
  .about-page .item--vision {
    border-radius: 1rem;
    padding-inline: 2rem;
  }

  .about-page .item--vision dt {
    display: none;
  }

  .about-page .item--vision dd {
    word-break: keep-all;
  }

  /* ----- 인재상 ----- */
  .about-page .item--talent {
    flex-direction: column;
    gap: 0.5rem;
  }

  .about-page .item--talent dt {
    min-width: auto;
    padding-inline: 2rem;
  }

  .about-page .item--talent dt::after {
    top: calc(100% + 0.5rem);
    width: 2px;
    height: 0.65rem;
    left: auto;
    right: auto;
  }

  .about-page .item--talent dd {
    padding-block: 1rem;
    width: 100%;
  }

  /* ----- 교육목표 ----- */
  .about-page .item--edu-goal dl {
    flex-direction: column;
  }

  .about-page .item--edu-goal dd {
    margin-left: 0;
    margin-top: -1.5rem;
    padding-top: 2rem;
    padding-inline: 2rem;
    width: 100%;
    text-align: center;
  }

  
  /* ----- 핵심전략과 혁신과제 ----- */
  .about-page .item--innovation dd,
  .about-page .item--direction dd {
    padding: 3rem 1rem 1rem;
  }

  .about-page .inno-card p {
    padding-inline: 2rem;
  }
}


/* =========================================================
  login 로그인
========================================================= */
.login-page .sub-visual {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)),
					url(/resources/cyber/images/sub/subHeader-greetings.png);
}

.login-page .sub-section {
  position: relative;
}

.login-page .sub-section:before {
  content: '';
  width: 100%;
  height: calc(100% + 40px);
  background-color: rgba(var(--bg-point-light-rgb), 1);
  position: absolute;
  top: -40px;
  z-index: 0;
}

.login-form-wrap {
  margin: 0 auto;
  max-width: 520px;
  padding: 3rem;
  background-color: #fff;
  border-radius: 1rem;
  box-shadow: 1px 2px 12px rgba(0, 0, 0, 0.1);
  z-index: 1;
  position: relative;
}

.sns-login-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  position: relative;
}

.sns-login-title:before,
.sns-login-title:after {
  content: "";
  flex: 1;
  height: 1px;
  background-color: #dee2e6;
}

.sns-login-title span {
  font-size: 1rem;
  color: rgb(var(--color-text-muted));
  white-space: nowrap;
}

.sns-login-wrap {
  align-item: center;
  justify-content: center;
  gap: 1rem;
}

.social-btn {
  border-radius: 50%;
  width: 56px;
  min-width: min-content;
  height: 56px;
  display: inline-block;
  aspect-ratio : 1 / 1;
  outline: none;
  overflow: hidden;
  position: relative;
}

.button-content-wrapper {
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  position: relative;
}

.social-btn:not(:disabled):hover,
.social-btn:not(:disabled):focus-within {
  -webkit-box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
  box-shadow: 0 1px 2px 0 rgba(60, 64, 67, .30), 0 1px 3px 1px rgba(60, 64, 67, .15);
}

/* google */
.google {
  background-color: #fff;
  border: 1px solid #747775;
  -webkit-transition: box-shadow .218s;
  transition: box-shadow .218s;
}

.google-icon {
  height: 28px;
  width: 28px;
  aspect-ratio: 1 / 1;
}

/* naver */
.naver {
  background-color: #03a94d;
}

.naver-icon {
  height: 20px;
  width: 20px;
  aspect-ratio: 1 / 1;
}

/* kakao */
.kakao {
  background-color: #fee500;
}
.kakao-icon {
  height: 23px;
  width: 25px;
  aspect-ratio: 25 / 23;
}


@media (max-width: 1399.98px) {}

@media (max-width: 1199.98px) {}

@media (max-width: 991.98px) {
	.login-page .sub-section:before {
	  content: none;
	}
}

@media (max-width: 767.98px) {
	.login-form-wrap {
	  max-width: 100%;
	  padding: 1rem;
	  box-shadow: none;
	}
}

@media (max-width: 575.98px) {}


/* =========================================================
  valueup-page 프로그램
========================================================= */
.program-page .sub-visual {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)),
    url('/resources/cyber/images/sub/subHeader-greetings.png');
}

.tabs {
  margin-bottom: 3rem;
}

.tabs-nav {
  display: flex;
  border: 1px solid rgb(var(--border-box-rgb));
}

.tabs-nav-item {
  flex: 1;
  height: 50px;
  background-color: rgba(var(--color-white-rgb), 1);
}

.tabs-nav-item:not(:last-child) {
  border-right: 1px solid rgb(var(--border-box-rgb));
}

.tab-btn {
  width: 100%;
  height: 100%;
}

.tab-btn.active {
  background-color: rgba(var(--color-primary-light-font-rgb), 0.3);
  color: rgb(var(--color-primary-hover-rgb));
  border-bottom: 3px solid rgb(var(--color-primary-hover-rgb));
  font-weight: 600;
}

.tab-content {
  margin-top: clamp(2rem, 8vw, 3rem);
}

.content-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  position: relative;
  /* padding-left: 30px; */
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.content-title::before {
  content: '';
  background-image: url('/resources/cyber/images/sub/bullet-point01.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 20px;
  aspect-ratio: 1 / 1;
  display: inline-block;
  position: relative;
  top: 3px;
  /* left: 0;
  transform: translateY(-50%); */
}

.sub-cont:not(:last-child) {
  margin-bottom: clamp(2rem, 8vw, 3rem);
}

.program-page .task-overview {
  font-size: 18px;
}

.task-detail ul {
  gap: 1rem;
  flex-wrap: wrap;
}

.task-detail li {
  padding: 0.5rem 1rem;
  border-radius: 1rem;
  background-color: rgba(var(--color-primary-light-ornament-rgb), 1);
}

.key-programs .program-card {
  background-color: rgba(var(--color-primary-light-rgb), 0.3);
  border: 1px solid rgb(var(--color-primary-light-font-rgb));
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
}

.key-programs .program-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  padding: 0.5rem 2rem;
  text-align: center;
  border-radius: 3rem;
  background-color: rgba(var(--color-primary-rgb));
  word-break: keep-all;
  color: #fff;
}

.key-programs .program-title span {
  font-size: 0.875rem;
}

.key-programs .program-meta {
  /* display: grid;
  grid-template-columns: 5rem 1fr;
  gap: 0.5rem 1rem; */
}

.key-programs .program-meta dt {
  font-weight: 600;
  position: relative;
}

.key-programs .program-meta dt::before {
  content: "▪";
  margin-right: 0.5rem;
  color: rgb(var(--color-primary-rgb));
}

.key-programs .program-meta dt::after {
  content: ":";
  margin-left: 0.25rem;
}

.key-programs .program-meta dd {
  margin-bottom: 1rem;
}

.task-gallery-wrap {
  padding: 2rem 2rem 1rem;
  border-radius: 1rem;
  background-color: rgba(var(--color-gray-light-rgb), 0.3);
  border: 1px solid rgb(var(--border-box-rgb));
  position: relative;
}

.programGallerySwiper {
  width: 100%;
  overflow: hidden;
  
  /* 스크립트 로드 전 화면 깜빡임 차단 */
  /* opacity: 0;
  transition: opacity 0.3s ease-in-out; */
  
  /* 스크립트 로드 전, 모바일 화면(slidesPerView: 1.25) 기준으로 너비가 거대해지는 것을 방지 */
  /* aspect-ratio: 100 / 60; */
  
  height: 0; 
  visibility: hidden;
}

/* Swiper 초기화 완료 시 등장 */
.programGallerySwiper.swiper-initialized {
  /* opacity: 1;
  aspect-ratio: auto; */
  
  height: auto;
  visibility: visible;
}

.task-gallery-slide {
	flex-shrink: 0;
  aspect-ratio: 4 / 3;
  border-radius: 1rem;
  border: 1px solid rgb(var(--border-box-rgb));
  overflow: hidden;
  
  /* 스크립트 로드 전, 모바일 화면(slidesPerView: 1.25) 기준으로 너비가 거대해지는 것을 방지 */
  width: 80%; 
}

.programGallerySwiper.swiper-initialized .task-gallery-slide {
  width: auto; 
}

/* .task-gallery-btn {
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
} */

.task-gallery-thumb {
  width: 100%;
  height: 100%;
  position: relative;
}

.task-gallery-thumb::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 60%);
  z-index: 1;
  pointer-events: none;
  transition: transform 0.2s ease, background 0.3s ease;
}

.task-gallery-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.skillup-page .task-gallery-thumb img {
  object-fit: contain;
  background-color : #333;
}

.task-gallery-caption {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: inline-block;
  width: max-content;
  max-width: calc(100% - 3rem);
  padding-bottom: 6px;
  color: #fff;
  font-size: 1rem;
  font-weight: bold;
  text-align: center;
  word-break: keep-all;
  opacity: 1;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.task-gallery-caption:empty {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .task-gallery-thumb::after {
    background: linear-gradient(to top, rgba(0,0,0,0), transparent 100%);
    transform: translateY(100%);
  }

  .task-gallery-thumb:hover::after,
  .task-gallery-thumb:focus-within::after {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent 60%);
    transform: translateY(0);
  }

  .task-gallery-caption {
    opacity: 0;
    transform: translate(-50%, 10px);
  }

  .task-gallery-thumb:hover .task-gallery-caption,
  .task-gallery-thumb:focus-within .task-gallery-caption {
    opacity: 1;
    transform: translate(-50%, 0);
  }
}

.task-gallery .swiper-pagination {
  position: relative;
  margin-top: 1rem;
}

.task-gallery .swiper-button-prev,
.task-gallery .swiper-button-next {
  width: 60px;
  height: 60px;
  top: 52%;
  transform: translateY(-50%);
  z-index: 2;
  /* border: 1px solid rgb(var(--border-box-rgb)); */
  background-color: rgba(var(--color-primary-light-num-rgb), 1);
  border-radius: 50%;
}

.task-gallery .swiper-button-next:after,
.task-gallery .swiper-button-prev:after {
  font-size: 1.5rem;
  font-weight: 800;
  color: rgb(var(--color-white-rgb));
}

.tab-pane {
  position: relative;
}

.program-content {
  position: relative;
}

.program-inner {
  position: relative;
  z-index: 1;
}

.program-deco-image {
  position: absolute;
  top: 2rem;
  right: 0;
  height: 285px;
  z-index: 0;
  pointer-events: none;
}

@media (max-width: 1299.98px) {
  .task-gallery-wrap::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 100%;
    pointer-events: none;
    background: linear-gradient(to left, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.9) 25%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0.3) 70%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
  }
}

@media (max-width: 1199.98px) {
  .task-gallery-slide {
    aspect-ratio: 16 / 9;
  }
}

@media (max-width: 991.98px) {
  .tabs-nav {
    flex-direction: column;
  }

  .tabs-nav-item {
    flex: none;
  }

  .tabs-nav-item:not(:last-child) {
    border-right: none;
    border-bottom: 1px solid rgb(var(--border-box-rgb));
  }

  .task-gallery-wrap {
    padding-inline: 0;
    padding-block: 0;
    border-radius: 0;
    background-color: transparent;
    border: none;
  }

  .task-gallery-wrap::after {
    width: 80px;
  }

  .task-gallery .swiper-button-prev,
  .task-gallery .swiper-button-next {
    display: none;
  }

  .valueUp-content-1::after {
    content: none;
  }
}

@media (max-width: 575.98px) {}


/* =========================================================
  schedule-page 일정
========================================================= */
.schedule-page .sub-visual {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)),
    url('/resources/cyber/images/sub/subHeader-greetings.png');
}

/* 일정 있는 날짜 */
.fc-daygrid-day .has-schedule {
  background-color: rgba(83, 116, 235, 0.3);
}

/* 오늘 + 일정 */
.fc-daygrid-day.fc-day-today .has-schedule {
  background-color: rgba(245, 189, 34, 0.4);
}

/* 토요일 */
.fc-day-sat .fc-daygrid-day-number {
  color: #0d6efd;
  /* 블루 */
}

/* 일요일 */
.fc-day-sun .fc-daygrid-day-number {
  color: #dc3545;
  /* 레드 */
}

/* FullCalendar 내부 스크롤 제거 */
.fc,
.fc .fc-scroller {
  height: auto !important;
  overflow: visible !important;
}

/* dayGrid 높이 강제 확장 */
.fc-daygrid-body,
.fc-daygrid-body table {
  height: auto !important;
}

.fc .fc-daygrid-body-natural .fc-daygrid-day-events {
  margin-bottom: 0.5rem;
}

.fc .fc-button-primary {
  background-color: transparent;
  border: none;
  color: rgb(var(--color-text-primary));
}

.schedule-layout {
  align-items: stretch;
}

.calendar-area,
.list-area {
  display: flex;
}

.calendar-wrap,
.schedule-list-wrap {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 2rem;
  border: 1px solid rgb(var(--color-primary-light-font-rgb));
  border-radius: 1rem;
}

.schedule-list-wrap {
  background-color: rgba(var(--color-primary-light-rgb), 0.3);
}

.schedule-list-wrap .listTitle {
  font-size: 1.75rem;
  font-weight: 800;
}

.month-schedule-list li {
  border-bottom: 1px dashed rgb(var(--border-box-rgb));
  padding: 0.5rem 1rem;
  text-align: center;
  display: flex;
  gap: 1rem;
  align-items: center;
}

.schedule-time {
  width: 180px;
  padding: 0.25rem 1rem;
  border-radius: 3rem;
  background-color: rgba(var(--color-primary-light-font-rgb), 1);
  color: #fff;
  font-weight: 800;
}

/* 접근성: 대비 강화 */
@media (prefers-contrast: more) {
  .fc-daygrid-day.has-schedule {
    outline: 2px solid #315cfd;
  }
}

@media (max-width: 991.98px) {
  .calendar-wrap, .schedule-list-wrap {
    padding: 2rem 1rem;
  }

  .month-schedule-list li {
    flex-direction: column;
    align-items: flex-start;
    padding-inline: 0;
    gap: 0.5rem;
  }

  .schedule-title {
    padding-inline: 0.5rem;
  }
}


/* =========================================================
support-programs-page 프로그램 신청
========================================================= */
.support-programs-page .sub-visual {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)),
    url('/resources/cyber/images/sub/subHeader-greetings.png');
}

.tbl-support {
  margin-top: 0.5rem;
  table-layout: fixed;
  width: 100%;
}

.tbl-support .tbl-body td {
  padding: 2rem 1rem;
}

.tbl-support .col-status,
.tbl-support .col-capacity {
  width: 100px;
}

.tbl-support .col-procd {
  width: 230px;
  white-space: normal;
  word-break: keep-all;
}

/* .tbl-support .col-program {
  width: 45%;
} */

.tbl-support .col-period {
  width: 25%;
}

.tbl-support .tbl-body .col-program {
  text-align: left;
}

.program-item-title {
  font-size: 1.15rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
}

.program-item-link {
  display: block;
}

.program-item-desc {
  color: rgb(var(--color-text-secondary));
  margin-bottom: 0;
  font-size: 0.875rem;
}

.status-badge {
  /* width: 80px;
  padding: 0.4rem 0.75rem;
  font-size: 0.875rem; */
}

/* 진행중 */
.status-badge-ongoing {
  border: 1px solid rgb(30, 144, 255);
  color: rgb(30, 144, 255);
  ;
}

/* 대기중 */
.status-badge-pending {
  border: 1px solid rgb(255, 179, 0);
  color: rgb(255, 179, 0);
}

/* 진행완료 */
.status-badge-done {
  border: 1px solid rgba(var(--color-gray-dark-rgb));
  color: rgba(var(--color-gray-dark-rgb));
}

@media (max-width: 991.98px) {
  .tbl-support .tbl-body tr {
	gap: 0.5rem;
  }
  .tbl-support .tbl-body td {
    padding: 0;
    width: 100%;
  }
  
  .tbl-support .col-procd {
	width: auto;
	margin-top: 0.25rem;
	color: rgb(30, 144, 255);
	font-size: 0.875rem;
	font-weight: 500;
  }
  
  .tbl-support .col-program {
    width: 100%;
    margin-bottom: 1rem;
  }
  
  .tbl-support .col-period,
  .tbl-support .col-capacity {
  	font-size: 0.875rem;
  	color: #555;
  }
  
  .tbl-support .col-period::before,
  .tbl-support .col-capacity::before {
  	content: attr(data-label);
  	display: inline-block;
    margin-right: 10px;
    font-weight: bold;
    font-size: 0.875rem;
    width: 58px;
    border-right: 1px solid #eee;
  }

  .program-action {
    flex-direction: column;
    width: 100%;
  }
}


/* =========================================================
program-view-page 프로그램 신청 디테일
========================================================= */
.program-view-header {
  border: 2px solid #3e2c93;
  border-radius: 1rem;
  overflow: hidden;
}

.program-view-header .view-title {
  background-color: #f7f0fd;
  padding: 1rem 2.5rem;
  align-items: flex-start;
  gap: 10px;
  color: #6b32bd;
}

.program-view-header .view-title .status-badge {
  margin-top: 3px;
  background-color: #fff;
}

.program-view-header .info-grid {
  padding: 2rem 3rem;
}

.program-view-header .info-item {
  display: flex;
  gap: 1rem;
  font-size: 18px;
}

.program-view-header .info-item:not(:last-child) {
  margin-bottom: 10px;
}

.program-view-header .info-item dt,
.program-view-header .info-item dd {
  margin-bottom: 0;
}

.program-view-header .info-item dt {
  width: 130px;
  color: #555;
  font-weight: 600;
  position: relative;
}

.program-view-header .info-item dt::before {
  content: '';
  border-left: 8px solid #3e2c93;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
  display: inline-block;
  width: 0;
  height: 0;
  margin-right: 0.5rem;
  vertical-align: middle;
  position: relative;
  top: -1px;
}

.program-view-header .info-item:not(:last-child) dt::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  height: 70%;
  border-right: 1px solid #dee2e6;
}

.program-view-header .program-attachments {
  flex-direction: column;
}

.program-view-header .file-list {
  background-color: #fafafa;
  border-radius: 1rem;
  padding: 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
}

.program-view-header .file-icon {
  width: 14px;
  height: 12px;
  flex-shrink: 0;
  background-color: #111;
  -webkit-mask:
    url("/resources/cyber/images/common/file-link-down.svg") no-repeat center / contain;
  mask:
    url("/resources/cyber/images/common/file-link-down.svg") no-repeat center / contain;
}

.program-view-header .download-text {
  font-size: 0.875rem;
  border: 1px solid #dee2e6;
  background-color: #fff;
  border-radius: 0.5rem;
  padding: 0.5rem 1rem;
  margin-left: 2rem;
  align-items: center;
  gap: 0.5rem;
}

.program-view-header .download-text img {
  width: 1rem;
  height: 1rem;
  object-fit: contain;
}

.program-view-body {
  border-radius: 1rem;
  padding: 2rem 3rem;
  margin-bottom: 4rem;
}

@media (max-width: 991.98px) {
  .program-view-header .view-title {
    padding: 1rem 1.5rem;
  }

  .program-view-header .info-grid {
    padding: 1.5rem 2rem;
  }
  
  .program-view-body {
    padding: 1.5rem
  }

  .program-view-header .info-item {
    /* gap: 0.5rem;
    font-size: 18px; */
  }
}

@media (max-width: 767.98px) {
  .program-view-header .info-item {
    flex-wrap: wrap;
    gap: 2px;
  }

  .program-view-header .info-item:not(:last-child) {
    padding-bottom: 5px;
    margin-bottom: 10px;
    border-bottom: 1px dashed rgb(var(--border-input-rgb));
  }

  .program-view-header .info-item dt,
  .program-view-header .info-item dd {
    font-size: 1rem;
    width: 100%;
  }

  .program-view-header .info-item:not(:last-child) dt::after {
    content: none;
  }

  .program-view-header .file-list {
    padding: 1rem;
  }

  .program-view-header .file-icon {
    background-color: rgb(30, 144, 255);
  }
}


/* =========================================================
  table 테이블
========================================================= */
.tbl {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}

.tbl th,
.tbl td {
  padding: 0.875rem 1rem;
  vertical-align: middle;
}

.tbl thead {
  border-top: 1px solid #333;
}

.tbl thead tr>* {
  background-color: rgba(var(--color-gray-light-bg-rgb));
}

.tbl tbody {
  border-top: none;
}

.table-responsive-md .tbl {
  min-width: 680px;
}

@media (max-width: 991.98px) {
  .tbl-card {
    text-align: left;
  }

  .tbl-card,
  .tbl-card thead,
  .tbl-card tbody,
  .tbl-card th,
  .tbl-card td {
    display: block;
    width: 100%;
  }

  .tbl-card thead {
    display: none;
  }

  .tbl-card tr {
  	display: flex;
  	flex-wrap: wrap;
    margin-bottom: 1rem;
    padding: 1rem 2rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.75rem;
    background: #fff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  }

  .tbl-card th,
  .tbl-card td {
    padding: 0.25rem 1rem;
  }

  .tbl-card td {
    position: relative;
    border: none;
  }

  .tbl-card td:last-child {
    border-bottom: none;
  }
}


/* ===================================================
  board 게시판
=================================================== */
.board-table-wrap {
  overflow-x: auto;
}

.board-table-wrap .tbl {
  table-layout: fixed;
}

.board-table-wrap .col-no {
  min-width: 120px;
  width: 10%;
}

.board-table-wrap .col-file {
  min-width: 130px;
  width: 15%;
}

.board-table-wrap .col-title {
  max-width: 0;
  min-width: 420px;
}

.board-item-link {
  display: inline-block;
  vertical-align: middle;
}

.board-table-wrap .col-date {
  width: 20%;
}

.board-pagination .pagination {
  justify-content: end;
}

.board-pagination .active>.page-link, 
.board-pagination .page-link.active {
  color: #fff;
  background-color: rgb(var(--color-primary-hover-rgb));
  border-color: rgb(var(--color-primary-hover-rgb));
}

.board-pagination .page-link {
  color: rgb(var(--color-primary-rgb));
}



/* 게시판 카테고리 */
.board-table-wrap .badge {
  display: inline-block;
  vertical-align: middle;
  margin-right: 8px;
  font-weight: 500;
  font-size: 0.875rem;
}

/* 1. 소식 (Blue) */
.board-table-wrap .badge-CATE_008 {
  background-color: #EBF8FF;
  color: #2B6CB0;
  border: 1px solid #BEE3F8;
}

/* 2. 보도 (Purple) */
.board-table-wrap .badge-CATE_009 {
  background-color: #FAF5FF;
  color: #6B46C1;
  border: 1px solid #E9D8FD;
}

/* 3. 공지 (Red) */
.board-table-wrap .badge-notice {
  background-color: #FFF5F5;
  color: #C53030;
  border: 1px solid #FED7D7;
}

/* 4. 자료실 (Green) */
.board-table-wrap .badge-archive {
  background-color: #F0FFF4;
  color: #2F855A;
  border: 1px solid #C6F6D5;
}


@media (max-width: 768px) {}


/* ===================================================
  list controls 검색
=================================================== */
/* search */
.list-controls {
  width: 100%;
  /* margin: 32px 0; */
  margin-bottom: 32px;
  padding: 0;
  background-color: #fff;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.list-controls .search-form {
  display: flex;
  gap: 8px;
}

.list-controls .search-input-group {
  background-color: #fff;
  border: 1px solid #d3d3d3;
  border-radius: 8px;
  height: 40px;
  display: flex;
  align-items: center;
  position: relative;
  font-size: 0.875rem;
  min-width: 240px;
}

.list-controls .search-input-group input {
  height: 100%;
  border: none;
  padding-left: 16px;
}

.list-controls-form select {
  min-width: 120px;
  height: 40px;
}

/* .search-input-group .search-btn {
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  padding: 0 16px;
  background-color: #555;
  color: #fff;
  border-radius: 0 8px 8px 0;
} */

.search-input-group .search-btn img {
  width: 16px;
  height: 16px;
}

.board .list-controls .search-input-group {
  justify-content: space-between;
  min-width: 300px;
}

.board .list-controls .search-input-group input {
  flex: 1;
}

.board .search-input-group .search-btn {
  background-color: unset;
  position: relative;
  /* aspect-ratio: 1/1; */
}

@media (max-width: 767.98px) {
  .search-group {
    width: 100%;
  }

  .list-controls-form select {
    min-width: auto;
    width: auto;
  }

  .list-controls .search-input-group {
    min-width: auto;
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 575.98px) {
  .list-controls {
    flex-direction: column;
    align-items: flex-start;
    padding: 5%;
    margin: 16px 0;
    border: 1px solid #d3d3d3;
    border-radius: 8px;
    gap: 8px;
  }

  .list-count {
    padding-left: 8px;
  }

  .list-controls .search-form {
    flex-direction: column;
  }

  .list-controls-form {
    width: 100%;
    display: flex;
    gap: 8px;
  }

  .list-controls-form select {
    min-width: auto;
    flex: 1 1 auto;
  }
}

.board-footer {
  gap: 1rem;
}

.board-pagination .pagination {
  margin-bottom: 0;
}

.program-action {
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .board-footer {
    flex-direction: column;
    align-items: stretch;
    gap: 2rem;
  }

  .program-action {
    justify-content: flex-end;
  }
}


/* =========================================================
  board-write-page 글 작성
========================================================= */
#editor {
  min-height: 300px;
  max-height: 500px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 0 0 8px 8px;
  background: #fff;
  overflow-x: hidden;
  overflow-y: auto;
}

.toastui-editor-defaultUI-toolbar {
  white-space: normal !important;
  justify-content: flex-start;
  box-sizing: border-box;
}

.toastui-editor-toolbar-group {
  flex-wrap: wrap !important;
}

.toastui-editor-dropdown-toolbar {
  height: auto;
}

.toastui-editor-toolbar button {
  flex-shrink: 0;
  max-width: 100%;
}

.board-form-wrap .file-uploader {
  padding: 32px 0;
  border-top: 1px solid rgb(var(--border-input-rgb));
  border-bottom: 1px solid rgb(var(--border-input-rgb));
  margin-top: 32px;
}

.custom-file-wrap {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.custom-file-controls {
  display: flex;
  align-items: center;
  gap: 16px;
}

.custom-file-label {
  width: 120px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  background-color: #555;
  color: #fff;
}

.custom-file-controls .hint {
  font-size: 0.875rem;
  color: #999;
}

.file-name ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.file-name ul li {
  width: 100%;
  padding: 16px 20px;
  border-radius: 8px;
  background-color: #fafafa;
  display: flex;
  justify-content: space-between;
}

.custom-file-wrap input[type="file"] {
  display: none;
}

@media screen and (max-width: 991.98px) {
  #editor {
    min-height: 200px;
    max-height: 300px;
  }

  .file-uploader .col-form-label {
    display: none;
  }

  .custom-file-controls {
    flex-direction: column;
    margin-bottom: 16px;
  }

  .custom-file-label {
    width: 100%;
  }
}

@media screen and (max-width: 480px) {
  .toastui-editor-popup {
    margin-left: 0;
  }
}


/* ===================================================
  community-programs-page 게시판
=================================================== */
.community-page .sub-visual {
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.1)),
    url('/resources/cyber/images/sub/subHeader-greetings.png');
}


/* =========================================================
apply-programs-page 프로그램 신청
========================================================= */
.apply-section .sub-inner {
  background-color: rgba(var(--color-primary-light-ornament-rgb), 0.3);
}

.apply-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 1);
  border: 1px solid rgb(var(--border-divider-rgb));
}

.textarea-auto {
  resize: none;
  overflow: hidden;
  max-height: 240px;

}

@media (max-width: 767.98px) {
  .apply-section .sub-inner {
    background-color: transparent;
  }

  .apply-form-wrap {
    max-width: 100%;
    padding: 0;
    border: none;
  }
}

/* =========================================================
apply-programs-page 프로그램 신청
========================================================= */
.apply-section .sub-inner {
  background-color: rgba(var(--color-primary-light-ornament-rgb), 0.3);
}

.apply-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 2rem;
  border-radius: 1rem;
  background-color: rgba(255, 255, 255, 1);
  border: 1px solid rgb(var(--border-divider-rgb));
}

.textarea-auto {
  resize: none;
  overflow: hidden;
  max-height: 240px;

}

@media (max-width: 767.98px) {
  .apply-section .sub-inner {
    background-color: transparent;
  }

  .apply-form-wrap {
    max-width: 100%;
    padding: 0;
    border: none;
  }
}


/* ===================================================
  board-view-page 게시글
=================================================== */
.board-view {
  width: 100%;
  border-top: 2px solid #333;
  border-bottom: 1px solid rgb(var(--border-box-rgb));
}

.board-header {
  padding: 32px 0;
  border-bottom: 1px solid rgb(var(--border-box-rgb));
}

.board-view .board-title {
  font-size: 1.5rem;
  margin-bottom: 0;
}

.board-header .board-meta {
  display: flex;
  margin-top: 16px;
  color: #555;
}

.board-header .board-meta li {
  display: flex;
  align-items: center;
  gap: 4px;
  padding-right: 2rem;
  position: relative;
}

.board-header .board-meta li:not(:last-child)::after {
  content: '';
  height: 60%;
  border-right: 1px solid rgb(var(--border-box-rgb));
  position: absolute;
  right: 1rem;
  transform: translate(-50%, 0);
}

.board-header .board-meta .meta-label {
  font-weight: 600;
}

.board-attachments {
  width: 100%;
  padding: 20px 32px;
  margin: 32px 0;
  border-radius: 16px;
  background-color: rgba(var(--color-primary-light-font-rgb), 0.2);
  font-weight: 500;
  color: rgb(var(--color-text-secondary));
}

.board-attachments ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.board-file-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.board-file-link img {
  height: 20px;
  object-fit: cover;
}

.board-view .board-body {
  padding: 1rem 0;
}

.board-view .board-body p {
  margin-bottom: 0.5rem;
}

.board-view .board-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.board-view-navigation {
  width: 100%;
  margin: 2rem 0 4rem;
}

.board-nav-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.board-nav-list li {
  width: 100%;
  height: 64px;
  border-radius: 16px;
  overflow: hidden;
  background-color: rgba(var(--color-gray-light-bg-rgb), 1);
  font-size: 0.875rem;
  transition: all .3s ease-in;
}

.board-nav-list li a {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 16px;
}

.board-nav-list li span:not(.nav-label) {
  white-space: normal;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  width: calc(80% - 100px);
}

.board-nav-list li:hover,
.board-nav-list li:focus-within {
  background-color: #d3d3d3;
}

.board-view-navigation .nav-label {
  width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgb(var(--color-primary-hover-rgb));
  position: relative;
  font-weight: 600;
}

.board-view-navigation .nav-label::after {
  content: '';
  width: 1px;
  height: 100%;
  background-color: #ccc;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.board-view-footer {
  display: flex;
  gap: 8px;
}
.board-view-footer .btn-board-list {
  min-width: 120px;
  height: 48px;
}


/* ---------- responsive ---------- */
@media screen and (max-width: 991.98px) {
  .board-attachments ul li span {
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}

@media screen and (max-width: 767.98px) {
  .board-header .board-meta {
    gap: 6px;
    font-size: 0.875rem;
    flex-wrap: wrap;
  }
  
  .board-view-footer {
    width: 100%;
  }
  .board-view-footer .btn-board-list {
    min-width: auto;
    flex: 1;
  }
}


/* =========================================================
  directions-page 오시는 길
========================================================= */
/* .map-wrap {
  display: flex;
  flex-direction: column;
  flex: 1;
  border: 2px solid rgb(var(--color-primary-light-font-rgb));
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 3rem;
}

.map-box {
  height: 420px;
  overflow: hidden;
}

.map-iframe {
  width: 100%;
  height: 100%;
}

.map-address {
  margin: 0;
  border-top: 1px solid rgb(var(--border-box-rgb));
}

.map-address-title,
.map-address-desc {
  margin: 0;
  padding: 1.25rem 1.5rem;
}

.map-address-title {
  font-weight: 600;
  text-align: center;
  border-right: 1px solid rgb(var(--border-box-rgb));
}

.transport-section {
  padding-bottom: 3rem;
  border-bottom: 1px dashed rgb(var(--border-input-rgb));
}

.transport-list {
  counter-reset: transport;
}

.transport-point {
  position: relative;
  padding-right: 1.5rem;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
  font-weight: 600;
}

.transport-point::before {
  counter-increment: transport;
  content: counter(transport) ".";
  margin-right: 0.5rem;
}

.transport-route:not(:last-child){
  margin-bottom: 1.5rem;
}

.transport-items li{
  color: rgb(var(--color-text-secondary));
  margin-bottom: 0.5rem;
}

@media (max-width: 575.98px) {
  .map-box {
    height: 380px;
  }

  .map-address-desc {
    text-align: center;
    padding: 0.5rem 1rem;
  }
} */

.campusMap {
  overflow: hidden;
  border-radius: 1rem;
}

.campusMap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.campusMap-item {
  border-radius: 1rem;
  gap: 1rem;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.campusMap-addr {
  padding: 1rem 2rem;
}

.campusMap-tel,
.campusMap-fax {
  border: 2px solid #f5f5f5;
  justify-content: space-between;
}

.campusMap-item-label {
  min-width: 180px;
  height: 100%;
  padding: 1rem 2rem;
  background-color: #f5f5f5;
  font-size: 18px;
  gap: 1rem;
}

.campusMap-item__icon {
  width: 70px;
  height: 70px;
  aspect-ratio: 1 / 1;
  background-color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.campusMap-addr {
  border: 2px solid #3e2c93;
  background-color: #fafafa;
}

.campusMap-value--text {
  font-size: 20px;
  font-weight: 600;
  padding: 0 2rem 0 1rem;
}


/* ---------- responsive ---------- */
@media screen and (max-width: 991.98px) {
  .campusMap-addr {
    padding: 1rem;
  }

  .campusMap-tel,
  .campusMap-fax {
    justify-content: flex-start;
  }

  .campusMap-item-label {
    min-width: auto;
    font-size: 16px;
    padding: 1rem;
  }

  .campusMap-item__icon {
    width: 50px;
    height: 50px;
  }

  .campusMap-item__icon img {
    width: 28px;
    object-fit: contain;
  }

  .campusMap-value--text {
    font-size: 18px;
    padding: 0 1rem 0 0;
  }
}