:root {
  --navy: #0f2a44;
  --navy-700: #15395d;
  --gold: #c7a258;
  --sky: #eef5fb;
  --ink: #112;
  --muted: #6a7788;
  --card: #0f2a44;
  --white: #fff;
  --max: 1200px;
  --radius: 16px;
  --shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji", "Segoe UI Emoji";
  color: #1b2430;
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--max);
  margin-inline: auto;
  padding-inline: 20px;
}

.btn {
  display: inline-flex;
  gap: .5rem;
  align-items: center;
  padding: .75rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(0, 0, 0, .08);
  background: #fff;
  cursor: pointer;
  transition: .2s box-shadow, .2s transform;
  font-weight: 600;
}

.btn:hover {
  box-shadow: var(--shadow);
  transform: translateY(-1px);
}

.btn.primary {
  background: var(--navy);
  color: #fff;
  border-color: transparent;
}

.btn.ghost {
  background: transparent;
  color: var(--navy);
  border-color: rgba(15, 42, 68, .25);
}

.tag {
  display: inline-block;
  padding: .25rem .5rem;
  border-radius: 999px;
  background: rgba(199, 162, 88, .12);
  color: var(--gold);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .04em;
}

.muted {
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 24px;
}

.grid.cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (max-width: 1000px) {
  .grid.cols-3 {
    grid-template-columns: 1fr;
  }

  .grid.cols-2 {
    grid-template-columns: 1fr;
  }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
