/* 솔루션 상세페이지 공통 레이아웃 */
:root {
  --solution-content-width: 1180px;
  --solution-side-padding: 3rem;
}

.page-header-inner,
.solution-content {
  width: 100%;
  max-width: var(--solution-content-width);
  margin-left: auto;
  margin-right: auto;
}

/* 본문 섹션 자체는 전체 폭 배경을 유지하고,
   실제 콘텐츠만 solution-content 안에서 동일 폭으로 정렬합니다. */
.sol-section {
  padding-left: var(--solution-side-padding);
  padding-right: var(--solution-side-padding);
}

@media (max-width: 900px) {
  :root { --solution-side-padding: 1.25rem; }
}


/* 솔루션/회사소개 공통 중앙형 페이지 헤더 */
.page-header {
  position: relative;
  overflow: hidden;
  padding: 4.5rem 3rem 4rem;
  border-bottom: 1px solid var(--border, #E2E8F0);
  background: linear-gradient(180deg, #F8FAFC 0%, #F3F7FD 100%);
  text-align: center;
}
.page-header::before,
.page-header::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.page-header::before {
  width: 280px;
  height: 280px;
  left: -100px;
  top: -150px;
  background: radial-gradient(circle, rgba(26,86,219,.10) 0%, rgba(26,86,219,0) 72%);
}
.page-header::after {
  width: 340px;
  height: 340px;
  right: -120px;
  bottom: -220px;
  background: radial-gradient(circle, rgba(59,130,246,.10) 0%, rgba(59,130,246,0) 72%);
}
.page-header-inner { position: relative; z-index: 1; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 1.35rem;
  color: var(--text-muted, #94A3B8);
  font-size: 13px;
}
.breadcrumb a { color: var(--text-muted, #94A3B8); text-decoration: none; }
.breadcrumb a:hover { color: var(--blue, #1A56DB); }
.page-header-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  border: 1px solid var(--blue-mid, #BFDBFE);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(26,86,219,.10);
}
.page-header-mark svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: var(--blue, #1A56DB);
  stroke-width: 1.9;
}
.page-header h1 {
  margin: 0;
  font-size: 40px;
  font-weight: 650;
  letter-spacing: -1.2px;
}
.page-header-line {
  width: 42px;
  height: 3px;
  margin: 1.15rem auto 0;
  border-radius: 999px;
  background: var(--blue, #1A56DB);
}
@media (max-width: 900px) {
  .page-header { padding: 3.5rem 1.25rem 3.25rem; }
  .page-header h1 { font-size: 34px; }
}

/* 솔루션 상세 공통 문제 목록: 데스크톱 2열 × 2행 */
.need-list {
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  gap: 12px 24px;
}

@media (max-width: 720px) {
  .need-list {
    grid-template-columns: 1fr !important;
  }
}
