@charset "utf-8"; 

/* 내용관리 */
#ctt {margin:0; padding:0px; }
.ctt_admin {text-align:right}
#ctt header h1,
#ctt header h2 {position:absolute; font-size:0; line-height:0; overflow:hidden}
#ctt_con {padding: 0 1rem;line-height:1.6em}
#ctt_con img{max-width:100%; height:auto}
.ctt_img {text-align:center}

.brand-section {
  max-width: 1600px;
  margin: 0 auto;
  padding: 60px 40px;
}

/* 상단 영역 */
.brand-top {
  display: flex;
  gap: 80px;
}

.brand-image {
  position: relative;
  width: 55%;
}

.brand-image img {
  width: 100%;
  height: auto;
  display: block;
}

.brand-image .logo {
  position: absolute;
  bottom: 40px;
  left: 40px;
  color: #fff;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
}

.brand-text {
  width: 45%;
}

.brand-text h1 {
  font-size: 28px;
  margin-bottom: 25px;
  line-height: 1.4;
  font-weight: normal;
}

.brand-text .sub-title {
  display: block;
  font-size:16px;
  margin-bottom: 30px;
  font-weight: 600;
}

.brand-text p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
  color: #222;
}

.brand-text b {
  display: block;
  margin: 25px 0;
  font-size: 14px;
  line-height: 1.6;
  font-weight: 500;
}

/* 하단 영역 */
.brand-bottom {
  margin-top: 120px;
  display: flex;
  gap: 100px;
}

.bottom-box {
  width: 50%;
}

.bottom-box h2 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 500;
    line-height:1.4;
}

.bottom-box span {
  display: block;
  margin-bottom: 15px;
  font-size:16px;
  font-weight: 600;
}

.bottom-box p {
  line-height: 1.6;
  font-size: 14px;
}

.brand-four {
    margin-top: 100px;
}
.brand-four h2 {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 500;
    line-height:1.4;
}
.brand-four span {
   display: block;
  margin-bottom: 15px;
  font-weight: 600;
}
.brand-four ul {
    margin-top: 30px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.brand-four ul li {
    width: calc(25% - 30px);
}
.brand-four ul li .img {
    margin-bottom: 30px;
}
.brand-four ul li .img img {
  border-radius:15px;
}
.brand-four ul li strong  {
    font-size: 20px;
    display: block;
    margin-bottom: 20px;
}
.brand-four ul li p  {
  font-size:16px;
  padding-left:10px;
  border-left:solid 2px #000;
  line-height:1.3;
}

/* ✅ 태블릿 */
@media (max-width: 1024px) {
  .brand-top {
    flex-direction: column;
  }

  .brand-image,
  .brand-text {
    width: 100%;
  }

  .brand-image .logo {
    font-size: 32px;
  }

  .brand-bottom {
    gap: 40px;
  }
  
  .brand-four ul li {
      width: calc(50% - 30px);
    margin-bottom:50px;
  }
  
.brand-four ul li strong  {
    font-size: 18px;
    margin-bottom: 15px;
}
.brand-four ul li p  {
  font-size:14px;
}
}

/* ✅ 모바일 */
@media (max-width: 768px) {
  .brand-section {
    padding: 40px 20px;
  }

  .brand-text h1 {
    font-size: 22px;
  }

  .brand-text p,
  .bottom-box p {
    font-size: 14px;
  }

  .brand-bottom {
    flex-direction: column;
    margin-top: 40px;
  }

  .bottom-box {
    width: 100%;
  }

  .brand-image .logo {
    font-size: 26px;
    bottom: 20px;
    left: 20px;
  }
  
  .brand-four ul li {
      width: calc(100% - 0px);
    margin-bottom:50px;
  }
}