.line-content {
  margin-top: 22px;
}

.line-section-title {
  font-size: 18px;
  font-weight: 700;
  color: #111827;
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 10px 0 18px;
}

.line-section-title .dot {
  font-size: 18px;
  color: #0479CD;
}

.line-map-box {
  display: flex;
  justify-content: center;
  margin: 10px 0 30px;
}

.line-map-img {
  width: 60%;
  background: #fff;
}

.line-table-box {
  background: #fff;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.06);
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
}

.line-table {
  width: 100%;
  margin: 0;
  border-collapse: collapse;
  min-width: 900px;
}

.line-table thead {
  background: #f3f4f6;
}

.line-table th,
.line-table td {
  padding: 12px 10px;
  font-size: 14px;
  color: #111827;
  text-align: center;
  border: 1px solid #e5e7eb;
  vertical-align: middle;
  height: 67px;
}

.line-table td:nth-child(2) {
  text-align: left;
  padding-left: 16px;
  line-height: 1.6;
}

.line-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.line-summary-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
  border: 1px solid #eef2f7;
}

.line-summary-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eaf5ff;
  color: #0479CD;
  font-size: 22px;
  flex: 0 0 auto;
}

.line-summary-text {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: left;
}

.line-summary-title {
  font-weight: 800;
  font-size: 15px;
  color: #111827;
}

.line-summary-desc {
  font-size: 13px;
  color: #374151;
  line-height: 1.5;
}

.line-info-box {
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
  padding: 16px 18px;
  font-size: 14px;
  color: #111827;
  line-height: 1.6;
  border-radius: 6px;
}

.line-raw-box {
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
  padding: 16px 18px;
  border-radius: 6px;
}

.line-raw-des {
  display: inline-block;
  font-weight: 600;
  margin-bottom: 20px;
}

.line-raw-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: #111827;
  margin-bottom: 10px;
}

.line-pill {
  min-width: 44px;
  padding: 4px 10px;
  border-radius: 999px;
  background: #0479CD;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  text-align: center;
}

.line-effect-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.line-effect-item {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 999px;
  padding: 14px 18px;
  font-size: 14px;
  color: #111827;
  display: flex;
  gap: 12px;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.line-effect-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #0b4a8b;
  color: #fff;
  font-weight: 800;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 36px;
}

/* 반응형 */
@media (max-width: 992px) {
  .line-map-img {
    width: 100%;
  }

  .line-summary-grid {
    grid-template-columns: 1fr;
  }

  .line-summary-card {
    border-radius: 12px;
  }

  .line-effect-item {
    border-radius: 12px;
    align-items: flex-start;
  }
}

@media (max-width: 576px) {
  .line-top-title {
    font-size: 28px;
  }

  .line-section-title {
    font-size: 16px;
  }

  .line-table th, .line-table td {
    font-size: 13px;
  }
}
