/* Shared header and navigation for every site template */
#header {
  display: flex !important;
  width: 100%;
  min-width: 0;
  min-height: 76px !important;
  align-items: center;
  justify-content: center;
  padding: 8px 12px 4px !important;
  background: transparent;
}
#header .header-logo {
  display: block;
  width: min(220px, 58vw) !important;
  margin: 0 auto;
}
#header .logo {
  display: block;
  width: 100% !important;
  max-width: 350px;
  height: auto !important;
  margin: 0;
}
#nav.nav {
  position: relative;
  z-index: 10;
  display: flex;
  width: min(1180px, calc(100% - 24px));
  min-height: 54px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0 auto 18px;
  padding: 7px;
  background: #fff;
  border: 1px solid #eadfe0;
  border-radius: 15px;
  box-shadow: 0 5px 18px rgba(58,39,42,.07);
  box-sizing: border-box;
  text-align: center;
}
#nav #top-nav {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}
#nav .tnav { display: none; }
#nav .link-menu {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 7px 12px;
  color: #3b3033;
  border-radius: 10px;
  font: 700 14px/1.3 Arial,Verdana,Helvetica,sans-serif;
  text-decoration: none;
}
#nav .link-menu:hover,
#nav .link-menu:focus-visible {
  color: #fff;
  background: #a6252b;
}
@media (max-width:720px) {
  #header {
    min-height: 64px !important;
    padding-top: 6px !important;
  }
  #header .header-logo { width: min(174px, 58vw) !important; }
  #nav.nav {
    display: block;
    width: calc(100% - 20px);
    min-height: 0;
    margin-bottom: 12px;
  }
  #nav .tnav {
    display: flex;
    min-height: 42px;
    align-items: center;
    justify-content: center;
    color: #4b3236;
    border-radius: 10px;
    cursor: pointer;
    font: 800 14px/1.3 Arial,Verdana,Helvetica,sans-serif;
  }
  #nav .tnav::after { content: "☰  Меню"; }
  #nav #top-nav:checked + .tnav::after { content: "✕  Закрыть"; }
  #nav .link-menu { display: none !important; }
  #nav #top-nav:checked ~ .link-menu {
    display: flex !important;
    width: 100%;
    margin-top: 3px;
  }
}
