.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  min-height: 64px;
  box-sizing: border-box;
  position: relative;
  z-index: 50;
  background: #ffffff;
}

.site-name {
  font-size: 18px;
  font-weight: 700;
  color: #111111;
  text-decoration: none;
  font-family: var(--font-display);
}

.site-header-actions {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.site-login-link {
  color: #111111;
  text-decoration: none;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.site-ticket-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border: 1px solid #bfd6ff;
  border-radius: 999px;
  background: #edf4ff;
  color: #1d4ed8;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  text-decoration: none;
}

.site-footer {
  padding: 60px 14px;
  background: #ffffff;
}

.site-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.site-footer-name {
  display: inline-block;
  margin-bottom: 16px;
  color: #111111;
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}

.site-footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  width: min(100%, 420px);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  text-align: left;
}

@media (min-width: 768px) {
  .site-footer-links {
    display: flex;
    flex-wrap: nowrap;
    width: auto;
    justify-content: center;
  }
}
.site-footer-links a {
  color: #111111;
  text-decoration: none;
  font-size: 14px;
  font-weight: 400;
}

.site-footer-links a:hover {
  text-decoration: underline;
}

.site-footer-copy {
  margin-top: 20px;
  color: #666666;
  font-size: 14px;
  text-align: center;
}
