/* =====================================================
   policy.css  ─  경영방침 페이지 전용 스타일
   common.css 로드 후 이 파일을 추가로 로드합니다.
   ===================================================== */


/* ─── 경영방침 섹션 ──────────────────────────────── */
#policy-section {
  padding: 100px 0 140px;
  background: var(--white);
}

.policy-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}


/* ─── 섹션 헤더 ──────────────────────────────────── */
.policy-header {
  text-align: center;
  margin-bottom: 64px;
  animation: fadeUp 0.7s ease both;
}

.policy-sec-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 12px;
}

.policy-headline {
  font-size: clamp(28px, 3.5vw, 42px);
  font-weight: 700; line-height: 1.25;
  color: var(--navy);
}
.policy-headline em { color: var(--blue); font-style: normal; }

.policy-divider {
  width: 48px; height: 3px;
  background: var(--accent);
  margin: 20px auto 28px;
}

.policy-lead {
  font-size: 16px; line-height: 2.0;
  color: var(--text-sub);
  word-break: keep-all;
}
.policy-lead strong {
  color: var(--navy);
  font-weight: 700;
}


/* ─── 슬로건 배너 ────────────────────────────────── */
.policy-slogan-band {
  background: var(--navy);
  padding: 36px 40px;
  margin-bottom: 72px;
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.7s 0.1s ease both;
}
.policy-slogan-band::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(37,99,200,0.35) 0%, transparent 60%);
}
.policy-slogan-band::after {
  content: 'STARTEC';
  position: absolute; right: 40px; top: 50%;
  transform: translateY(-50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: 80px; letter-spacing: 8px;
  color: rgba(255,255,255,0.04);
  pointer-events: none;
  white-space: nowrap;
}

.policy-slogan-inner {
  position: relative; z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

.slogan-word {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: 6px;
  color: var(--white);
}

.slogan-dot {
  font-size: 32px;
  color: var(--accent);
  font-weight: 700;
  line-height: 1;
}


/* ─── 4대 방침 카드 그리드 ───────────────────────── */
.policy-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 80px;
}

.policy-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 4px 20px rgba(37,99,200,0.06);
  transition: transform 0.3s, box-shadow 0.3s, border-top-color 0.3s;
  animation: fadeUp 0.7s var(--delay, 0s) ease both;
  position: relative;
  overflow: hidden;
}
.policy-card::after {
  content: '';
  position: absolute; right: -20px; bottom: -20px;
  width: 100px; height: 100px;
  border-radius: 50%;
  background: var(--blue-pale);
  opacity: 0;
  transition: opacity 0.3s;
}
.policy-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(37,99,200,0.14);
  border-top-color: var(--navy);
}
.policy-card:hover::after { opacity: 1; }

.policy-card-num {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px; line-height: 1;
  color: var(--blue-pale);
  letter-spacing: 2px;
  margin-bottom: 12px;
  transition: color 0.3s;
}
.policy-card:hover .policy-card-num { color: var(--border); }

.policy-card-icon {
  font-size: 32px;
  margin-bottom: 14px;
}

.policy-card-title {
  font-size: 20px; font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.policy-card-en {
  font-family: 'Rajdhani', sans-serif;
  font-size: 11px; font-weight: 600;
  letter-spacing: 3px;
  color: var(--accent);
  margin-bottom: 0;
}

.policy-card-divider {
  width: 32px; height: 2px;
  background: var(--accent);
  margin: 16px 0;
  transition: width 0.3s;
}
.policy-card:hover .policy-card-divider { width: 56px; }

.policy-card-desc {
  font-size: 13px; line-height: 1.85;
  color: var(--text-sub);
  word-break: keep-all;
  margin-bottom: 20px;
  flex: 1;
}

.policy-card-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--border);
  padding-top: 16px;
  margin-top: auto;
}
.policy-card-list li {
  font-size: 12px;
  color: var(--steel);
  line-height: 1.6;
  padding-left: 14px;
  position: relative;
}
.policy-card-list li::before {
  content: '—';
  position: absolute; left: 0;
  color: var(--accent);
  font-size: 10px;
}


/* ─── 비전 배너 ──────────────────────────────────── */
.policy-vision {
  background: var(--light);
  border-left: 4px solid var(--accent);
  padding: 56px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
  animation: fadeUp 0.7s 0.35s ease both;
}
.policy-vision::before {
  content: '"';
  position: absolute; left: 24px; top: -10px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 160px; line-height: 1;
  color: var(--border);
  pointer-events: none;
}

.policy-vision-label {
  font-family: 'Rajdhani', sans-serif;
  font-size: 12px; font-weight: 600;
  letter-spacing: 4px;
  color: var(--accent);
  margin-bottom: 20px;
  position: relative; z-index: 1;
}

.policy-vision-text {
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.65;
  word-break: keep-all;
  margin-bottom: 24px;
  position: relative; z-index: 1;
}
.policy-vision-text em {
  color: var(--blue);
  font-style: normal;
}

.policy-vision-sub {
  font-size: 14px; line-height: 1.9;
  color: var(--text-sub);
  word-break: keep-all;
  position: relative; z-index: 1;
}


/* ─── 애니메이션 ─────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}


/* ─── 반응형 ─────────────────────────────────────── */
@media (max-width: 1024px) {
  .policy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .policy-grid {
    grid-template-columns: 1fr;
  }
  .policy-vision {
    padding: 40px 32px;
  }
  .policy-slogan-band {
    padding: 28px 24px;
  }
  .slogan-word { font-size: 28px; }
}
