/*
Theme Name: Classical.nz Navigation Proof
Description: Disposable controlled theme for the COR-1425 WordPress persistence proof.
Version: 0.1.0
Author: CX1
*/

:root {
  font-family: system-ui, sans-serif;
  color: #17202a;
  background: #f1f3f5;
}
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding-bottom: 260px;
  background: #f1f3f5;
  color: #17202a;
  font-size: 17px;
  line-height: 1.55;
}

.cnz-proof-site-header {
  border-bottom: 1px solid #c9ced3;
  background: white;
}

.cnz-proof-site-header__inner,
.cnz-proof-main {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
}

.cnz-proof-site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 76px;
  gap: 24px;
}

.cnz-proof-brand {
  color: inherit;
  font-weight: 750;
  text-decoration: none;
}

.cnz-proof-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.cnz-proof-nav a {
  color: #26394b;
}

.cnz-proof-main {
  margin-top: 44px;
  margin-bottom: 60px;
  padding: 34px;
  border: 1px solid #c9ced3;
  background: white;
}

.cnz-proof-main:focus {
  outline: 3px solid #b4233b;
  outline-offset: 4px;
}

.cnz-proof-main h1 {
  margin-top: 0;
  font-size: clamp(2rem, 6vw, 3.5rem);
  line-height: 1.05;
}

.cnz-proof-main a {
  color: #8e1f35;
}

.cnz-proof-route-note {
  color: #55616d;
  font-size: 14px;
}

@media (max-width: 720px) {
  body {
    padding-bottom: 520px;
  }

  .cnz-proof-site-header__inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px 0;
  }

  .cnz-proof-main {
    margin-top: 24px;
    padding: 24px;
  }
}
