/* 📱 Mobile-Specific Overrides */

.header-container {
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  text-align: center;
}

.site-title {
  font-size: 1.4rem;
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  padding: 0.5rem 0;
  list-style: none;
  margin: 0 auto;
  max-width: 95%;
}

.nav-links li a {
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  color: #e8f0fe;
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  background-color: rgba(97, 160, 209, 0.1);
  transition: background-color 0.2s ease;
}

.nav-links li a:hover {
  background-color: rgba(97, 160, 209, 0.2);
}

.logo-section {
  flex-direction: column;
  gap: 0.5rem;
}

.site-logo {
  height: 80px;
}

.article img {
  object-fit: cover;
  max-height: 180px;
}

main {
  padding: 1rem 0.75rem;
}

.global-meta-bar {
  display: none !important;
}
