:root {
  --text: #717070;
  --muted: #6b7280;
  --link: #0890c8;
  --footer: #1f1f1f;
  --max: 820px;
}

*, *::before, *::after { box-sizing: border-box; }

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: #ffffff;
  line-height: 1.55;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  padding: 0.6rem 0.85rem;
  background: #ffbf47;
  color: #000;
  z-index: 9999;
}
.skip-link:focus { left: 0.75rem; top: 0.75rem; }

:focus-visible {
  outline: 3px solid #ffbf47;
  outline-offset: 3px;
}

/* Top bar */
.top {
  border-bottom: 1px solid #e5e7eb;
  background: #ffffff;
}

.top-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.75rem 1rem;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* logo stays on the left */
}

.brand img {
  display: block;
  height: 38px;
  width: auto;
}

/* Optional top-right link (currently commented in HTML) */
.top-right {
  margin-left: auto;
}

.top-link {
  color: var(--link);
  text-decoration: none;
  font-size: 0.9rem;
}
.top-link:hover { text-decoration: underline; }

/* Page content */
.page {
  padding: 2.25rem 0 2rem;
}

.page-inner {
  width: min(var(--max), calc(100% - 2rem));
  margin: 0 auto;
  text-align: center;
}

a {
  color: var(--link);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

a:hover { text-decoration-thickness: 2px; }

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: #555;
}

.title {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  font-weight: 700;
  text-transform: uppercase;
}

.meta {
  text-align: left;
  margin: 0 0 1.75rem;
  font-size: 0.85rem;
  color: var(--muted);
}

.content {
  text-align: justify;
  font-size: 0.92rem;
}

.content p {
  margin: 0 0 1rem;
  text-align: justify;
  hyphens: auto;
}

/* Footer */
.footer {
  background: var(--footer);
  color: #ffffff;
  font-size: 0.75rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0.6rem 1rem;
  display: flex;
  justify-content: flex-start;
}

@media (max-width: 720px) {
  .page-inner { text-align: left; }
  .content { text-align: justify; }
}
