.about-location-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  gap: 40px;
  font-family: 'Noto Sans KR', sans-serif;
}

.about-location-content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.about-location-title {
  font-size: 32px;
  font-weight: 700;
  color: #63a8ff;
  margin: 0 0 16px 0;
}

.about-location-subtitle {
  font-size: 16px;
  color: #666666;
  margin: 0 0 40px 0;
  line-height: 1.5;
}

.about-location-info-container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.about-location-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about-location-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #f3f4f6;
  border-radius: 50%;
  color: #63a8ff;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.about-location-icon svg {
  width: 24px;
  height: 24px;
}

.about-location-info-content {
  flex: 1;
}

.about-location-info-title {
  font-size: 18px;
  font-weight: 600;
  color: #63a8ff;
  margin: 0 0 8px 0;
}

.about-location-info-text {
  font-size: 16px;
  color: #666666;
  margin: 0;
  line-height: 1.5;
}

.about-location-map {
  flex: 1;
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.about-location-map-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-location-map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(99, 168, 255, 0);
  transition: background-color 0.3s ease;
}

.about-location-map:hover {
  transform: scale(1.02);
}

/* .about-location-map:hover .about-location-map-overlay {
  background-color: rgba(99, 168, 255, 0.1);
}

.about-location-info-item:hover .about-location-icon {
  background-color: #63a8ff;
  color: white;
  transform: scale(1.1);
} */

/* 태블릿 및 모바일을 위한 반응형 디자인 */
@media (max-width: 992px) {
  .about-location-container {
    flex-direction: column;
    padding: 40px 24px;
    max-width: 550px;
    margin: 0 auto;
  }
  
  .about-location-title {
    font-size: 36px;
    margin-bottom: 16px;
  }
  
  .about-location-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    color: #666666;
    max-width: 100%;
    line-height: 1.6;
  }
  
  .about-location-info-container {
    gap: 40px;
  }
  
  .about-location-info-item {
    gap: 20px;
  }
  
  .about-location-icon {
    width: 60px;
    height: 60px;
    background-color: #f3f4f6;
  }
  
  .about-location-icon svg {
    width: 30px;
    height: 30px;
  }
  
  .about-location-info-title {
    font-size: 22px;
    margin-bottom: 10px;
  }
  
  .about-location-info-text {
    font-size: 18px;
    line-height: 1.6;
  }
  
  /* 디자인에 따라 태블릿과 모바일에서 지도 숨기기 */
  .about-location-map {
    display: none;
  }
}

@media (max-width: 768px) {
  .about-location-container {
    padding: 36px 20px;
    max-width: 500px;
  }
  
  .about-location-title {
    font-size: 32px;
  }
  
  .about-location-subtitle {
    font-size: 17px;
    margin-bottom: 36px;
  }
  
  .about-location-info-container {
    gap: 36px;
  }
  
  .about-location-info-item {
    gap: 18px;
  }
  
  .about-location-icon {
    width: 56px;
    height: 56px;
  }
  
  .about-location-icon svg {
    width: 28px;
    height: 28px;
  }
  
  .about-location-info-title {
    font-size: 20px;
  }
  
  .about-location-info-text {
    font-size: 17px;
  }
}

@media (max-width: 480px) {
  .about-location-container {
    padding: 32px 16px;
    max-width: 100%;
  }
  
  .about-location-title {
    font-size: 28px;
  }
  
  .about-location-subtitle {
    font-size: 16px;
    margin-bottom: 32px;
  }
  
  .about-location-info-container {
    gap: 32px;
  }
  
  .about-location-info-item {
    gap: 16px;
  }
  
  .about-location-icon {
    width: 52px;
    height: 52px;
  }
  
  .about-location-icon svg {
    width: 26px;
    height: 26px;
  }
  
  .about-location-info-title {
    font-size: 19px;
  }
  
  .about-location-info-text {
    font-size: 16px;
  }
}