@charset "utf-8";
/* 사업장소개 페이지 전용 스타일 */

/* 히어로 섹션 */
.page-hero {
  margin-top: 86px;
  height: 400px;
  background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
              url('../images/banner/aboutus.png') center/cover;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.page-hero h2 {
  color: white;
  font-size: 48px;
  font-weight: 600;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

/* 브레드크럼 */
.breadcrumb {
  max-width: 1200px;
  margin: 40px auto 20px;
  padding: 0 40px;
  font-size: 14px;
  color: #666;
  display: flex;
  align-items: center;
  gap: 8px;
}

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

.breadcrumb a:hover {
  color: #5B7FDB;
}

/* 메인 컨텐츠 */
.location-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 40px 60px;
}

/* 메인 영역 하단 여백 제거 */
#main-area {
  margin-bottom: 0;
  padding-bottom: 0;
}

/* 하단 질문 영역 숨기기 */
.question {
  display: none !important;
}

.location-content h1 {
  font-size: 42px;
  margin-bottom: 60px;
  color: #222;
  font-weight: 600;
}

/* 서울 배지 */
.location-badge {
  display: inline-block;
  background: linear-gradient(135deg, #5B7FDB 0%, #4A6BC9 100%);
  color: white;
  font-size: 28px;
  font-weight: 600;
  padding: 30px 60px;
  border-radius: 10px;
  margin-bottom: 40px;
  position: relative;
}

.location-badge::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 15px solid #4A6BC9;
}

/* 지도 영역 */
.map-container {
  width: 100%;
  margin: 40px 0;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.map-container img {
  width: 100%;
  height: auto;
  display: block;
}

/* 정보 박스 */
.info-box {
  background: #fff;
  border: 2px solid #5B7FDB;
  border-radius: 10px;
  padding: 40px;
  margin-top: 40px;
}

.info-box h3 {
  font-size: 28px;
  color: #5B7FDB;
  font-weight: 600;
  margin-bottom: 30px;
}

.info-item {
  display: flex;
  margin-bottom: 20px;
  font-size: 18px;
  line-height: 1.8;
}

.info-label {
  font-weight: 600;
  color: #222;
  min-width: 80px;
  margin-right: 20px;
}

.info-value {
  color: #555;
  flex: 1;
}

@media (max-width: 768px) {
  .page-hero {
    height: 300px;
    margin-top: 70px;
  }

  .page-hero h2 {
    font-size: 36px;
  }

  .location-content {
    padding: 40px 20px 40px;
  }

  .location-content h1 {
    font-size: 32px;
  }

  .location-badge {
    font-size: 24px;
    padding: 25px 50px;
  }

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

  .info-box h3 {
    font-size: 24px;
  }

  .info-item {
    flex-direction: column;
    font-size: 16px;
  }

  .info-label {
    margin-bottom: 5px;
  }
}
