/* ===========================
   회사소개 페이지
   =========================== */

/* VISION */
.vision {
  background: var(--white);
}

.vision-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.vision-text p {
  color: var(--text-light);
  line-height: 1.9;
}

.vision-values {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-top: 8px;
}

.value-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

.value-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.value-num {
  font-family: 'Playfair Display', serif;
  font-size: 40px;
  color: var(--accent-light);
  line-height: 1;
  min-width: 52px;
  font-weight: 700;
}

.value-item h4 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 6px;
  font-weight: 700;
}

.value-item p {
  font-size: 14px;
  color: var(--text-light);
}

/* HISTORY */
.history {
  background: var(--bg);
}

.timeline {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 88px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: var(--border);
}

.timeline-item {
  display: flex;
  gap: 40px;
  margin-bottom: 48px;
  position: relative;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

.tl-year {
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--accent);
  min-width: 68px;
  text-align: right;
  padding-top: 4px;
}

.tl-content {
  position: relative;
  padding-left: 32px;
}

.tl-content::before {
  content: '';
  position: absolute;
  left: -8px;
  top: 10px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 1px var(--accent);
}

.tl-content h4 {
  font-size: 17px;
  color: var(--primary);
  margin-bottom: 6px;
  font-weight: 700;
}

.tl-content p {
  font-size: 14px;
  color: var(--text-light);
}

/* TEAM */
.team {
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.team-card {
  text-align: center;
}

.team-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--gray-light);
  margin: 0 auto 20px;
  border: 3px solid var(--accent);
}

.team-info h4 {
  font-size: 20px;
  color: var(--primary);
  margin-bottom: 4px;
  font-weight: 700;
}

.team-info span {
  font-size: 12px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 12px;
}

.team-info p {
  font-size: 14px;
  color: var(--text-light);
}

@media (max-width: 768px) {
  .vision-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .team-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 60px auto 0;
  }

  .timeline::before {
    left: 64px;
  }
}
