/* =========================
   Footer (PC ≥1200)
========================= */
.site-footer {
  background: #eee;
  padding: 60px 0 40px;
  border-top: 1px solid #e5e5e5;
  font-size: 14px;
  color: #444;
}

.site-footer .footer-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* 상단 */
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

/* 병원 정보 */
.footer-info {
  max-width: 720px;
}

.footer-title {
  font-size: 16px;
  font-weight: 700;
  color: #000;
  margin-bottom: 12px;
}

.footer-info p {
  font-size: 13px;
  font-weight:400;
  margin-bottom: 6px;
  line-height: 1.7;
  color: #555;
}

/* SNS */
.footer-sns {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-sns .sns-link {
  display: inline-flex;
  width: 32px;
  height: 32px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background 0.2s ease;
}

.footer-sns .sns-link:hover {
  background: #f0f0f0;
}

.footer-sns .sns-icon {
  width: 18px;
  height: 18px;
  display: block;
}

/* 구분선 */
.footer-divider {
  border: none;
  border-top: 1px solid #e5e5e5;
}

/* 하단 */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copy {
  font-size: 13px;
  color: #777;
}

.footer-menu {
  display: flex;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu a {
  font-size: 13px;
  color: #555;
  text-decoration: none;
}

.footer-menu a:hover {
  color: #000;
  text-decoration: underline;
}

/* =========================
   Tablet (768 ~ 1199)
========================= */
@media (max-width: 1199px) {
  .footer-top {
    gap: 32px;
  }

  .footer-info {
    max-width: none;
  }

  .footer-bottom {
    gap: 24px;
  }
}

/* =========================
   Mobile (≤767)
========================= */
@media (max-width: 767px) {
  .site-footer {
    padding: 40px 0 30px;
  }

  .footer-top {
    flex-direction: column;
    gap: 24px;
  }

  .footer-sns {
    justify-content: flex-start;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .footer-menu {
    gap: 16px;
  }
}
