/* =========================
   Colocation page only
   (idc/css/colocation.css)
========================= */

/* 브랜드 톤(진녹색 계열) */
:root{
  --pet-green: #0f5e55;
  --pet-green-2: #0b4a43;
  --pet-mint: #e9f5f2;
  --pet-line: #e6eceb;
  --pet-text: #12302d;
  --pet-sub: #5b6f6d;
  --pet-shadow: 0 10px 26px rgba(0,0,0,.06);
}

/* 공통 래핑 폭(너무 길어 보이는 문제 해결) */
.colo-highlights,
.colo-section{
  width: 100%;
}

.colo-highlights__inner,
.colo-section .colo-grid,
.colo-section .colo-head,
.colo-section .colo-cta{
  max-width: 1200px;      /* ✅ 필요하면 1100~1300 사이로 조정 */
  margin: 0 auto;
  padding: 0 20px;
}

/* 상단 아이콘(이미지1,2) 영역 */
.colo-highlights{
  padding: 40px 0 10px;
}
.colo-highlights__inner{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.hcard{
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 18px;
  border: 1px solid var(--pet-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 6px 18px rgba(0,0,0,.04);
}
.hcard__icon{
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: #fff;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.hcard__icon img{
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
}
.hcard__text h4{
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
  color: var(--pet-text);
  letter-spacing: -0.02em;
}
.hcard__text p{
  margin: 0;
  font-size: 14px;
  color: var(--pet-sub);
  line-height: 1.55;
}

/* 섹션 헤더(단독서버형/랙단위형) */
.colo-section{
  padding: 100px 0 0;
}
.colo-head{
  text-align: center;
  padding-top: 6px;
  padding-bottom: 20px;
}
.colo-head__tabs{
  display: inline-flex;
  gap: 10px;
  padding: 6px;
  border: 1px solid var(--pet-line);
  border-radius: 999px;
  background: #fff;
  margin-bottom: 14px;
}
.pill{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 96px;
  height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  font-size: 13px;
  color: #7a8b89;
  background: transparent;
}
.pill--active{
  background: rgba(15, 94, 85, .10);
  color: var(--pet-green-2);
  font-weight: 700;
}

.colo-title{
  margin: 0;
  font-size: 34px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.03em;
  padding : 20px 0 0 0;
}
.colo-desc{
  margin: 10px auto 0;
  max-width: 860px;
  font-size: 16px;
  color: var(--pet-sub);
  line-height: 1.7;
  padding-bottom: 30px;
}

/* 카드 그리드 */
.colo-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding-bottom: 16px;
}

/* ✅ 카드(위로 쏠림 해결: 내부 flex + min-height) */
.colo-card{
  border: 1px solid var(--pet-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: var(--pet-shadow);
  padding: 18px 18px 16px;
  display: flex;
  flex-direction: column;
  min-height: 280px; /* ✅ 높이 키우기 */
}

.colo-card__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.colo-card__name{
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #1a1a1a;
  letter-spacing: -0.02em;
}
.colo-card__badge{
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}
.colo-card__badge img{
  width: 80px;
  height: 80px;
  object-fit: contain;
  display: block;
}

.colo-card__hr{
  height: 1px;
  background: #eef2f1;
  margin: 12px 0 12px;
}

/* 본문(사양) */
.colo-card__body{
  flex: 1; /* ✅ 공간을 먹게 해서 하단 정렬 안정 */
  display: flex;
  flex-direction: column;
}
.spec-title{
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 800;
  color: #222;
}
.spec-list{
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
}
.spec-list li{
  font-size: 13px;
  color: #506261;
  line-height: 1.55;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.spec-list li .chk{
  width: 16px;
  height: 16px;
  margin-top: 2px;
  border-radius: 999px;
  background: rgba(15, 94, 85, .12);
  position: relative;
  flex: 0 0 auto;
}
.spec-list li .chk::after{
  content: "";
  position: absolute;
  left: 5px;
  top: 3px;
  width: 5px;
  height: 8px;
  border-right: 2px solid var(--pet-green);
  border-bottom: 2px solid var(--pet-green);
  transform: rotate(45deg);
}
.spec-list li.em{
  color: #2c3d3b;
  font-weight: 700;
}
.spec-list li .dot{
  width: 6px;
  height: 6px;
  margin-top: 8px;
  border-radius: 999px;
  background: var(--pet-green);
  flex: 0 0 auto;
}
.support{
  margin-left: 6px;
  font-weight: 800;
  color: var(--pet-green);
}

/* 문의하기 버튼 */
.colo-cta{
  text-align: center;
  padding: 18px 0 40px;
}
.colo-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  height: 44px;
  padding: 0 18px;
  border-radius: 10px;
  border: 1px solid var(--pet-green);
  background: var(--pet-green);
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.02em;
  transition: all .2s ease;
}
.colo-btn:hover{
  background: var(--pet-green-2);
  border-color: var(--pet-green-2);
}

/* 반응형 */
@media (max-width: 1024px){
  .colo-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .colo-title{
    font-size: 30px;
  }
}

@media (max-width: 768px){
  .colo-highlights__inner{
    grid-template-columns: 1fr;
  }
  .colo-grid{
    grid-template-columns: 1fr;
  }
  .colo-title{
    font-size: 26px;
  }
  .colo-card{
    min-height: auto;
  }
}


/* ✅ hosting 페이지와 동일한 안내 박스 (colocation에도 적용) */
#sh_content .mail-guide{
  width: 60%;
  margin: 18px auto 0;
  padding: 14px 16px;
  border: 1px solid rgba(47,111,106,0.18);
  background: rgba(230,241,239,0.6);
  border-radius: 12px;
  text-align: center;
  line-height: 1.6;
}

#sh_content .mail-guide strong{
  display:block;
  font-size: 14px;
  font-weight: 800;
  color: #244f4b;
}

#sh_content .mail-guide span{
  display:block;
  margin-top: 4px;
  font-size: 13px;
  font-weight: 600;
  color: #4b5563;
}

#sh_content .mail-guide b{
  color:#111827;
  font-weight: 800;
}

/* Mobile */
@media (max-width:768px){
  #sh_content .mail-guide{
    width: 100%;
  }
}
