/* 모바일 레이아웃 Override v15: grid 3x2 tabs & centered header */
@media (max-width: 600px) {
  header > div {
    display: flex !important;
    flex-wrap: wrap !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 10px 20px !important;
  }
  /* Logo+Title full-width center */
  header > div > div:first-child {
    flex: 0 0 100% !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin-bottom: 0.5rem !important;
  }
  /* Nav full-width grid 3 columns */
  nav.header-nav {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0.5rem !important;
    width: 100% !important;
    order: 2 !important;
  }
  nav.header-


}
nav a {
  margin: 0 20px !important;
  text-align: center !important;
}
