/* Global Header Styles */
.global-header {
  width: 100%;
  background-color: #ffffff;
  border-bottom: 1px solid var(--color-border-light);
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  padding: 0 2rem;
  box-sizing: border-box;
  z-index: 1000;
}

.header-content {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 60px;
}

.global-header .logo {
  font-family: 'Gowun Batang', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  text-decoration: none;
}

.global-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 1.5rem;
}

.global-nav a {
  text-decoration: none;
  color: var(--color-text-medium);
  font-weight: 600;
  font-size: 1rem;
  transition: color 0.3s ease;
}

.global-nav a:hover {
  color: var(--color-primary);
}

/* Adjust body padding to prevent content from being hidden by the fixed header */
body {
  padding-top: 60px; /* Height of the header */
}

/* Author Byline Styles */
.author-byline {
  margin: 2rem auto;
  padding: 1.5rem;
  max-width: 800px;
  background-color: var(--color-background-light);
  border-top: 2px solid var(--color-border-light);
  text-align: center;
}

.author-byline p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--color-text-medium);
}

.author-byline a {
  color: var(--color-primary);
  font-weight: 600;
  text-decoration: none;
}

.author-byline a:hover {
  text-decoration: underline;
}
