.block1 {
  display: block;
  width: 40px;
  height: 80px;
}

/* 서브 헤더 */
.sub-header {
  background: linear-gradient(135deg, #d4d4d4 0%, #cecac1 100%);
  color: white;
  padding: 120px 0 80px;
  text-align: center;
}

.sub-header h1 {
  font-size: 42px;
  font-weight: 700;
  margin-bottom: 15px;
}

.sub-header p {
  font-size: 18px;
  opacity: 0.9;
}

.breadcrumb {
  margin-top: 20px;
  font-size: 14px;
  opacity: 0.8;
}

.breadcrumb a {
  color: white;
  text-decoration: none;
}

/* 센터 소개 메인 */
.intro-main {
  padding: 80px 0;
  background: white;
}

.intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.intro-text h2 {
  font-size: 36px;
  color: #333;
  margin-bottom: 20px;
  font-weight: 700;
}

.intro-text .highlight {
  color: #2c5282;
}

.intro-text p {
  font-size: 17px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

.intro-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.feature-item {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 15px;
  text-align: center;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: #2c5282;
  color: white;
  transform: translateY(-5px);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: #816948;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 15px;
  color: white;
}

.feature-item:hover .feature-icon {
  background: white;
  color: #2c5282;
}

.feature-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.feature-item p {
  font-size: 16px;
  opacity: 0.8;
}

.intro-image {
  position: relative;
}

.intro-image img {
  width: 100%;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* 센터장 인사말 */
.director-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.director-content {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: flex-start;
}

.director-photo {
  text-align: center;
}

.director-photo img {
  width: 250px;
  height: 300px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  margin-bottom: 20px;
}

.director-name {
  font-size: 24px;
  font-weight: 700;
  color: #333;
  margin-bottom: 5px;
}

.director-title {
  font-size: 16px;
  color: #2c5282;
  font-weight: 600;
}

.director-message h3 {
  font-size: 32px;
  color: #333;
  margin-bottom: 30px;
  font-weight: 700;
}

.director-message b {
  display: block;
  color: #2c5282;
}

.director-message .greeting {
  font-size: 22px;
  line-height: 1.7;
  color: #333;
  margin-bottom: 25px;
  font-weight: 600;
}

.director-message p {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 20px;
}

.director-credentials {
  background: white;
  padding: 30px;
  border-radius: 15px;
  margin-top: 30px;
}

.director-credentials h4 {
  font-size: 21px;
  color: #2c5282;
  margin-bottom: 20px;
  font-weight: 700;
}

.credentials-list {
  list-style: none;
  padding: 0;
}

.credentials-list li {
  font-size: 16.6px;
  color: #666;
  margin-bottom: 8px;
  padding-left: 20px;
  position: relative;
}

.credentials-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: #2c5282;
  font-weight: bold;
}

/* 시설 안내 */
.facilities-section {
  padding: 80px 0;
  background: white;
}

.facilities-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 50px;
}

.facility-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.facility-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.facility-image {
  height: 200px;
  background: #f0f0f0;
  position: relative;
  overflow: hidden;
}

.facility-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.facility-content {
  padding: 25px;
}

.facility-content h4 {
  font-size: 20px;
  color: #333;
  margin-bottom: 15px;
  font-weight: 700;
}

.facility-content p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* 오시는 길 */
.location-section {
  padding: 80px 0;
  background: #f8f9fa;
}

.location-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.location-info {
  background: white;
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.location-info h3 {
  font-size: 24px;
  color: #333;
  margin-bottom: 25px;
  font-weight: 700;
}

.info-item {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.info-icon {
  width: 40px;
  height: 40px;
  background: #2c5282;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  color: white;
}

.info-text h4 {
  font-size: 16px;
  color: #333;
  margin-bottom: 5px;
  font-weight: 600;
}

.info-text p {
  font-size: 14px;
  color: #666;
}

.map-container {
  height: 400px;
  background: #e9ecef;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #666;
  font-size: 16px;
}

/* 반응형 */
@media (max-width: 1024px) {
  .intro-content,
  .director-content,
  .location-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .intro-features {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .sub-header {
    padding: 100px 0 60px;
  }

  .sub-header h1 {
    font-size: 28px;
  }

  .sub-header p {
    font-size: 16px;
  }

  .intro-main,
  .director-section,
  .facilities-section,
  .location-section {
    padding: 60px 0;
  }

  .intro-text h2 {
    font-size: 28px;
  }

  .director-message h3 {
    font-size: 24px;
  }

  .director-message p {
    font-size: 16px;
  }

  .director-content {
    grid-template-columns: 1fr;
  }

  .director-photo img {
    width: 200px;
    height: 250px;
  }

  .facilities-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .location-info {
    padding: 30px 20px;
  }

  .map-container {
    height: 300px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .sub-header h1 {
    font-size: 24px;
  }

  .intro-text h2 {
    font-size: 24px;
  }

  .director-message h3 {
    font-size: 20px;
  }

  .director-message .greeting {
    font-size: 16px;
  }
}
