/* advertise.css */
/* 광고 문의 스타일 */
.ad-inquiry {
  max-width: 600px;
  margin: 0 auto;
  padding: 30px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.inquiry-text {
  text-align: center;
  line-height: 1.8;
  color: #333;
  margin-bottom: 30px;
}

.contact-info {
  border-top: 1px solid #eee;
  padding-top: 30px;
}

.contact-item {
  text-align: center;
  margin-bottom: 30px;
}

.twitter-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  text-decoration: none;
  font-size: 1.2em;
  padding: 10px 20px;
  border-radius: 5px;
  background-color: #000;
  transition: all 0.2s ease;
}

.twitter-link:hover {
  background-color: #333;
  transform: translateY(-2px);
}

.company-info {
  margin-bottom: 30px;
}

.info-row {
  display: flex;
  align-items: center;
  margin: 15px 0;
  padding: 10px;
  border-radius: 5px;
  background-color: #f8f9fa;
}

.info-label {
  flex: 0 0 80px;
  font-weight: bold;
  color: #333;
}

.info-value {
  flex: 1;
  color: #666;
}

.map-links {
  display: flex;
  gap: 10px;
  justify-content: center;
  margin-top: 20px;
}

.map-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 5px;
  text-decoration: none;
  color: #fff;
  font-weight: 500;
  transition: opacity 0.2s;
}

.map-btn:hover {
  opacity: 0.9;
}

.map-btn.naver {
  background-color: #03C75A;
}

.map-btn.kakao {
  background-color: #FEE500;
  color: #000;
}
