/* organization.html 전용 스타일 */
html, body {
    height: 100%;
    min-height: 100vh;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#main {
    flex: 1 0 auto;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

#footer {
    flex-shrink: 0;
}

.page-title-container {
    display: grid;
    align-items: center;
    justify-content: center;
    height: 400px;
    background-image: 
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('https://images.unsplash.com/photo-1462206092226-f46025ffe607?q=80&w=1748&auto=format&fit=crop&ixlib=rb-4.1.0&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    text-align: center;
    padding-bottom: 30px;
}
.title-content .subtitle {
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 1px;
}
.page-title {
  font-size: 3rem;
  font-weight: 800;
  color: #ffffff;
  margin: 10px 0 8px 0;
}
.page-description {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.08rem;
  margin-bottom: 0;
}
.content-container {
    display: grid;
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
    background: #fff;
    border-radius: 14px;
    box-shadow: 0 2px 12px rgba(30,80,180,0.06);
    padding: 50px 30px;
}

/* 조직도 스타일 */
.org-chart {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 40px 0 20px 0;
}
.org-row {
  display: flex;
  justify-content: center;
  align-items: center;
}
.org-row-ceo {
  margin-bottom: 0px;
}
.org-row-bottom {
  gap: 80px;
  margin-top: 30px;
}
.org-box {
  min-width: 160px;
  padding: 18px 32px;
  background: #f7faff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(30,80,180,0.08);
  color: #123746;
  font-size: 1.18rem;
  font-weight: 600;
  text-align: center;
  border: 1.5px solid #e3f0ff;
  transition: box-shadow 0.2s, transform 0.2s;
}
.org-ceo {
  background: linear-gradient(90deg, #1a4fa0 60%, #1976b6 100%);
  color: #fff;
  font-size: 1.22rem;
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(30,80,180,0.13);
  border: none;
}
.org-box:not(.org-ceo):hover {
  box-shadow: 0 6px 24px rgba(30,80,180,0.10);
  transform: translateY(-4px) scale(1.03);
}
.org-line {
  width: 2px;
  height: 40px;
  background: #e3f0ff;
  margin: 0 auto;
  position: relative;
}
.org-row-bottom {
  position: relative;
}
.org-row-bottom::before {
  content: '';
  position: absolute;
  top: -30px;
  left: 0;
  right: 0;
  height: 2px;
  background: #e3f0ff;
  z-index: 0;
}
.org-row-bottom .org-box {
  position: relative;
  z-index: 1;
}
@media (max-width: 600px) {
  .content-container {
    padding: 24px 20px;
    margin: 0 20px;
  }
  .org-row-bottom {
    flex-direction: column;
    gap: 18px;
    margin-top: 20px;
  }
  .org-row-bottom::before {
    display: none;
  }
  .org-box {
    min-width: 120px;
    padding: 12px 8px;
    font-size: 0.98rem;
  }
} 