/* 센터장 인사말 페이지 스타일 */

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

.greeting-header {
  text-align: center;
  margin-bottom: 60px;
}

.greeting-title {
  font-size: 2.5rem;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 20px;
}

.greeting-subtitle {
  font-size: 1.2rem;
  color: #7f8c8d;
  margin-bottom: 30px;
}

.director-info {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
  gap: 30px;
}

.director-photo {
  width: 200px;
  height: 250px;
  background: #f8f9fa;
  border: 2px solid #e9ecef;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-size: 1.1rem;
  text-align: center;
  flex-shrink: 0;
}

.director-details {
  flex: 1;
  max-width: 500px;
}

.director-name {
  font-size: 1.8rem;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 10px;
}

.director-position {
  font-size: 1.2rem;
  color: #34495e;
  margin-bottom: 20px;
}

.director-credentials {
  font-size: 1rem;
  color: #7f8c8d;
  line-height: 1.6;
}

.greeting-content {
  background: #f8f9fa;
  padding: 40px;
  border-radius: 15px;
  margin-bottom: 40px;
  line-height: 1.8;
  font-size: 1.1rem;
  color: #2c3e50;
}

.greeting-content p {
  margin-bottom: 20px;
  text-align: justify;
}

.greeting-content p:last-child {
  margin-bottom: 0;
}

.greeting-signature {
  text-align: right;
  margin-top: 40px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #2c3e50;
}

.vision-section {
  background: white;
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  margin-bottom: 40px;
}

.vision-title {
  font-size: 1.8rem;
  font-weight: bold;
  color: #2c3e50;
  margin-bottom: 20px;
  text-align: center;
}

.vision-content {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #34495e;
  text-align: center;
}

/* 반응형 디자인 */
@media (max-width: 768px) {
  .director-info {
    flex-direction: column;
    text-align: center;
  }
  
  .director-photo {
    width: 150px;
    height: 180px;
  }
  
  .greeting-content {
    padding: 20px;
  }
  
  .greeting-title {
    font-size: 2rem;
  }
}
