/* 비즈니스 페이지 */
* {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  overflow-x: hidden;
}

.business-section {
  width: 100%;
  background: #050505;
  padding: 200px 20px 110px;
  color: #fff;
  overflow: hidden;
}

.business-inner {
  width: min(1000px, 100%);
  margin: 0 auto;
  min-width: 0;
}

.business-head {
  max-width: 1000px;
  margin: 0 auto;
}

.business-head span {
  display: block;
  margin-bottom: 28px;
  text-align: center;
  color: #22f1dd;
  font-size: 13px;
  font-weight: 350;
  letter-spacing: 6px;
}

.business-head h2 {
  margin: 0 0 30px;
  text-align: center;
  color: #ffffff;
  font-size: 56px;
  letter-spacing: -2px;
  font-weight: 350;
  line-height: 1.05;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
  word-break: keep-all;
}

.business-head p,
.business-card p,
.business-item p,
.business-card li {
  text-align: left;
  color: #8b8b8b;
  font-size: 15px;
  font-weight: 350;
  line-height: 1.8;
  word-break: keep-all;
}

.business-head p {
  margin: 0 0 26px;
  text-align: center;
}

.business-line {
  width: 110px;
  height: 2px;
  margin: 50px 0 38px;
  background: #22f1dd;
  box-shadow: 0 0 14px rgba(34, 241, 221, 0.65);
}

.business-content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 36px;
  align-items: start;
  min-width: 0;
}

.business-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

.business-item {
  width: 100%;
  min-width: 0;
  min-height: 118px;
  padding: 22px 30px;

  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  align-items: center;
  gap: 28px;

  background: #0d0d10;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  box-shadow: 0 24px 50px rgba(0,0,0,0.24);
  transition: 0.28s ease;
}


.business-item:hover {
  transform: translateY(-4px);
  border-color: rgba(34, 241, 221, 0.35);
}


.item-title {
  min-width: 0;

  display: flex;
  align-items: center;
  gap: 22px;
}


.item-title span {
  display: block;
  margin: 0;
  color: #22f1dd;
  font-size: 20px;
  font-weight: 350;
  line-height: 1;
  flex-shrink: 0;
}

.item-title h3 {
  margin: 0;
  color: #fff;
  font-size: 18px;
  font-weight: 350;
  line-height: 1.25;
  word-break: keep-all;
}

.business-item p {
  margin: 0;
  padding-left: 28px;
  border-left: 1px solid rgba(255,255,255,0.12);
  min-width: 0;
}
.business-card {
  min-width: 0;
  padding: 38px 28px;

  background: #0d0d10;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  box-shadow: 0 24px 50px rgba(0,0,0,0.24);
  transition: 0.28s ease;
}

.business-card h3 {
  margin: 0 0 18px;
  text-align: left;
  color: #ffffff;
  font-size: 27px;
  letter-spacing: -1px;
  font-weight: 350;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.business-card p {
  margin: 0;
}

.email-box {
  width: 100%;
  min-width: 0;
  margin: 28px 0 34px;
  padding: 17px 18px;

  display: flex;
  align-items: center;
  gap: 16px;

  text-decoration: none;
  color: #fff;

  background: rgba(255,255,255,0.035);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
}

.email-box span {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);

  display: flex;
  align-items: center;
  justify-content: center;
}

.email-box small {
  display: block;
  margin-bottom: 4px;
  color: #8b8b8b;
  font-size: 12px;
  font-weight: 350;
}

.email-box strong {
  color: #22f1dd;
  font-size: 14px;
  font-weight: 350;
  word-break: break-all;
}

.card-line {
  width: 100%;
  height: 1px;
  margin: 34px 0 36px;
  background: rgba(255,255,255,0.1);
}

.business-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.business-card li {
  position: relative;
  padding: 18px 0 18px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.business-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 29px;

  width: 6px;
  height: 6px;
  border-radius: 50%;

  background: #22f1dd;
  box-shadow: 0 0 10px rgba(34, 241, 221, 0.7);
}

/* 태블릿 */
@media (max-width: 900px) {
  .business-content {
    grid-template-columns: 1fr;
  }

  .business-card {
    max-width: 100%;
  }
}

/* 모바일 */
@media (max-width: 640px) {
  .business-section {
    padding: 150px 20px 80px;
  }

  .business-head span {
    font-size: 12px;
    letter-spacing: 5px;
  }

  .business-head h2 {
    font-size: 40px;
    line-height: 1.15;
  }

  .business-head p {
    font-size: 15px;
    line-height: 1.9;
  }

  .business-line {
    margin: 42px 0 36px;
  }

  .business-item {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 24px 22px;
  }

  .business-item p {
    padding-left: 0;
    border-left: 0;
  }

  .business-card {
    padding: 30px 22px;
  }

  .email-box {
    align-items: flex-start;
  }
}