.philosophy {
  padding: 120px 80px;
  background: var(--gray-100);
}

.policy {
  padding: 80px 80px 120px 80px;
  background: var(--gray-100);
}

.philosophy-inner, .policy-inner  {
  max-width: 1200px;
  margin: 0 auto;
}

.philosophy-header, .policy-header  {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 64px;
  align-items: end;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.section-eyebrow span {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: var(--red);
  text-transform: uppercase;
}

.philosophy-heading, .policy-heading {
  font-size: clamp(35px, 3vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.025em;
  color: var(--navy);
}

.policy-head-desc {
  font-size: 15px;
  color: var(--navy);
  line-height: 1.85;
}

.philosophy-card {
  font-size: clamp(20px, 3vw, 40px);
  color: var(--red);
  text-align: center;

}

.philosophy-desc {
  display: flex;
  justify-content: center;  
  font-size: clamp(13px, 3vw, 20px);
  padding-top: 20px;
  color: var(--navy);

}

.phil-card {
  background: var(--white);
  padding: 44px 36px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.phil-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.phil-card:hover::after, .policy-card:hover::after { transform: scaleX(1); }

.phil-num, .policy-num  {
  font-size: 10px;
  letter-spacing: 0.25em;
  color: var(--gray-400);
  margin-bottom: 28px;
}

.phil-hanja {
  font-size: 48px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.phil-name {
  font-size: 11px;
  color: var(--red);
  letter-spacing: 0.25em;
  font-weight: 500;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.phil-divider {
  width: 16px; height: 1px;
  background: var(--gray-200);
  margin-bottom: 20px;
}

.phil-desc, .policy-desc {
  font-size: clamp(11px, 3vw, 15px);
  color: var(--navy);
  line-height: 1.8;
}

.phil-bg-char {
  position: absolute;
  bottom: -8px; right: -4px;
  font-size: 100px;
  font-weight: 700;
  color: var(--navy);
  opacity: 0.03;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* 구분선 */
.philosophy-divider {
    width: 70%;
    height: 1px;
    background: rgba(44,59,82,0.08);
    margin: 120px auto;
}


.policy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--gray-200);
}

.policy-card {
  background: var(--white);
  padding: 44px 20px;
  position: relative;
  overflow: hidden;
  transition: background 0.3s;
}

.policy-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
}

.policy-name {
  font-size: clamp(30px, 3vw, 44px);
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
  margin-bottom: 6px;
  letter-spacing: -0.02em;
}

.policy-desc::before {
  content: '';
  display: inline-block;
  width: 5px; /* 동그라미 크기 */
  height: 5px;
  background-color: var(--red);
  border-radius: 50%; /* 완벽한 원으로 만들기 */
  margin-right: 6px; /* 동그라미와 글자 사이의 간격 */
}

/* ── 반응형 ── */

/* 태블릿 (1024px) */
@media (max-width: 1024px) {
  .philosophy, .policy {
    padding: 80px 40px;
  }

  .philosophy-header, .policy-header {
    gap: 40px;
    margin-bottom: 48px;
  }

  .policy-cards {
    grid-template-columns: repeat(2, 1fr); /* 3개 → 2열 */
  }

}

/* 모바일 (768px) */
@media (max-width: 768px) {
  .philosophy, .policy {
    padding: 60px 24px;
  }

  .philosophy-header, .policy-header {
    grid-template-columns: 1fr; /* 2열 → 1열 */
    gap: 24px;
    margin-bottom: 36px;
  }

  .policy-cards {
    grid-template-columns: 1fr; /* 1열 */
  }

  .phil-card, .policy-card {
    padding: 32px 24px;
  }

  .philosophy-divider{
    width: 90%;
    margin: 0px auto;
  }

}
