/* =========================================================
   MATCAT HEADER
========================================================= */

.matcat-header {
  border-bottom: 1px solid #E5E5E5;
  width: 100%;
  background: #FFFFFF;
  padding: 18px 40px;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

.matcat-header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

/* BRAND */

.matcat-brand a {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 14px;
}

.matcat-logo {
  max-height: 80px;
  width: auto;
}

.matcat-brand-text {
  font-size: 42px;
  font-weight: 600;
  color: #0A2351;
}

/* MENU */

.matcat-menu-list {
  display: flex;
  gap: 28px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.matcat-menu-list li a {
  text-decoration: none;
  color: #1A3C7A;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s ease;
}

.matcat-menu-list li a:hover {
  color: #214C9C;
}

/* HAMBURGER */

.matcat-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: #1A3C7A;
}

/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 900px) {

  .matcat-header {
    padding: 18px 20px;
  }

  .matcat-brand-text {
    font-size: 28px;
  }

  .matcat-header-inner {
    flex-wrap: wrap;
  }

  .matcat-toggle {
    display: block;
  }

  .matcat-nav {
    width: 100%;
    display: none;
    margin-top: 20px;
  }

  .matcat-nav.active {
    display: block;
  }

  .matcat-menu-list {
    flex-direction: column;
    gap: 18px;
  }

  .matcat-menu-list li a {
    font-size: 16px;
  }
}
}
