/* ---------- 일단공부 공용 헤더/푸터 ---------- */

.site-header,
.site-header a,
.site-header .logo-link,
.site-header .logo-text,
.site-header nav,
.site-header nav a {
  font-family: 'Noto Sans KR', sans-serif;
}

.site-header {
  background: #fff;
  border-bottom: 1px solid #f0f0f0;
  padding: 1rem 0;
  position: relative;
  z-index: 10;
}

.site-header .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .logo-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
}

.site-header .logo-link img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
}

.site-header .logo-text {
  font-size: 1.2rem;
  font-weight: 700;
  color: #ec174f;
}

.site-header nav {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.site-header nav a {
  color: #555;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: color 0.15s ease;
}

.site-header nav a:hover {
  color: #ec174f;
  text-decoration: none;
}

/* Breadcrumb */
.page-breadcrumb {
  background: #fafbfc;
  border-bottom: 1px solid #f0f0f0;
  padding: 0.75rem 0;
  font-family: 'Noto Sans KR', sans-serif;
}

.page-breadcrumb .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
  font-size: 0.85rem;
  color: #888;
}

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

.page-breadcrumb a:hover {
  color: #ec174f;
  text-decoration: none;
}

.page-breadcrumb .separator {
  margin: 0 0.5rem;
  color: #ccc;
}

/* Footer */
.site-footer {
  background: #fafbfc;
  border-top: 1px solid #f0f0f0;
  padding: 2.5rem 0 2rem;
  margin-top: 3rem;
  font-family: 'Noto Sans KR', sans-serif;
}

.site-footer .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
  text-align: center;
}

.site-footer .footer-links {
  display: inline-flex;
  gap: 1.5rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.85rem;
}

.site-footer .footer-links a {
  color: #666;
  text-decoration: none;
}

.site-footer .footer-links a:hover {
  color: #ec174f;
  text-decoration: none;
}

.site-footer .copyright {
  color: #999;
  font-size: 0.8rem;
  margin: 0;
}

@media (max-width: 600px) {
  .site-header .container {
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }
  .site-header nav {
    justify-content: flex-start;
  }
}
