@charset "utf-8";


/* ******************** component ******************** */

/* input */
@import "../../component/input-style";

/* button */
@import "../../component/button-style";

/* title-style */
@import "../../component/title-style.scss";


/* ******************** sub-common ******************** */

@import "../common/_sub-banner";
@import "../common/_sub-tab";
@import "../common/_sub-cont";


/* ******************** GAIA / TU GAIA 가이드 ******************** */

@import "./_banner";

.cont-banner {
  background-image: url(../../../img/sub/portal-intro/gaia/cont_banner.webp);
}

/* 추진 내용 요약 블록 */
.guide-teal-block {
  padding: 20px 24px; background: #fff; border-radius: 8px; border: 1px solid #9cc2fc;
  .guide-teal-list {
    list-style: none; margin: 0; padding: 0;
    li {
      position: relative; font-size: 1.5rem; line-height: 1.5; color: #333;
      &:not(:last-child) { padding-bottom: 5px; }
      &.point {
        font-weight: 600; color: #4189FA;
      }
    }
  }
}

/* list-box: 추진 과제 테마별 보더·타이틀 색상 */
.list-box {
  display: flex; flex-wrap: wrap; gap: 10px; padding-top: 20px;
  .box {
    background: #fff; border: 1px solid var(--main-color); border-radius: 10px; padding: 30px 10px; text-align: center; flex: 1;
    .img-area {
      width: 30px; height: 30px; display: flex; justify-content: center; align-items: center; margin: 0 auto 12px;
      img {
        width: 100%; height: 100%; object-fit: contain;
      }
    }
    .box-tit {
      font-size: 1.6rem; font-weight: 600; color: var(--main-color); margin-bottom: 12px;
    }
    .box-cont {
      font-size: 1.4rem; font-weight: 400; color: #222; line-height: 1.5;
    }
  }
  &.list-box--guide .box {
    &--th1 { border-color: #4F3DB5; .box-tit { color: #4F3DB5; } }
    &--th2 { border-color: #53AA12; .box-tit { color: #53AA12; } }
    &--th3 { border-color: #4189FA; .box-tit { color: #4189FA; } }
    &--th4 { border-color: #1553E3; .box-tit { color: #1553E3; } }
  }
}

@media (max-width: 768px) {
  .guide-teal-block {
    padding: 16px 20px;
    .guide-teal-list li {
      font-size: 1.4rem;
    }
  }
  .list-box {
    padding-top: 16px; gap: 8px;
    .box {
      flex: 0 0 calc(50% - 4px);
      padding: 24px 8px;
      .box-tit { font-size: 1.5rem; }
      .box-cont { font-size: 1.3rem; }
    }
  }
}

@media (max-width: 560px) {
  .guide-teal-block {
    padding: 12px 16px;
    .guide-teal-list li {
      font-size: 1.3rem;
      &:not(:last-child) { padding-bottom: 4px; }
    }
  }
  .list-box {
    padding-top: 12px; gap: 8px;
    .box {
      flex: 0 0 100%;
      padding: 20px 12px;
      .img-area { width: 28px; height: 28px; margin-bottom: 10px; }
      .box-tit { font-size: 1.4rem; margin-bottom: 10px; }
      .box-cont { font-size: 1.2rem; }
    }
  }
}
