* {
  box-sizing: border-box;
}
:root {
  font-family: system-ui, sans-serif;
  color: #092f4c;
  background: #f8fbfa;
  line-height: 1.6;
}
body {
  margin: 0;
}
a {
  color: inherit;
  text-underline-offset: 4px;
}
a:focus-visible {
  outline: 3px solid #b77716;
  outline-offset: 5px;
}
.skip {
  position: absolute;
  left: 16px;
  top: -80px;
  background: white;
  padding: 12px;
}
.skip:focus {
  top: 10px;
}
header {
  background: #092f4c;
  color: white;
}
.bar {
  max-width: 1240px;
  margin: auto;
  padding: 24px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.brand {
  font-weight: 750;
  text-decoration: none;
}
nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
nav a {
  padding: 8px 0;
  text-decoration: none;
  font-weight: 650;
}
nav a[aria-current] {
  color: #f3d79b;
  text-decoration: underline;
}
main,
footer {
  max-width: 1240px;
  margin: auto;
  padding: 0 32px;
}
.intro {
  padding: 64px 0 40px;
  max-width: 800px;
}
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  font-weight: 750;
  color: #0c665e;
}
h1,
h2 {
  font-family: Georgia, serif;
  line-height: 1.15;
}
h1 {
  font-size: clamp(2.3rem, 5vw, 4rem);
  margin: 14px 0 24px;
}
h2 {
  font-size: 2rem;
  margin: 12px 0 20px;
}
h3 {
  font-size: 1rem;
}
.intro > p:last-child {
  font-size: 1.15rem;
  color: #426169;
}
.cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}
.card {
  background: white;
  border: 1px solid #c4d7d8;
  border-radius: 22px;
  overflow: hidden;
}
.card img {
  display: block;
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.content {
  padding: 30px;
}
.actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.button {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 12px 19px;
  border-radius: 28px;
  background: #092f4c;
  color: white;
  text-decoration: none;
  font-weight: 700;
}
.secondary {
  background: #f3d79b;
  color: #092f4c;
}
.note {
  font-size: 0.85rem;
  color: #426169;
}
.more {
  padding: 40px 0;
}
footer {
  padding-top: 28px;
  padding-bottom: 32px;
  border-top: 1px solid #c4d7d8;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
@media (max-width: 760px) {
  .cards {
    grid-template-columns: 1fr;
  }
  .bar,
  main,
  footer {
    padding-left: 20px;
    padding-right: 20px;
  }
  .intro {
    padding-top: 36px;
  }
  .content {
    padding: 24px;
  }
  .card img {
    height: 210px;
  }
  nav {
    gap: 16px;
  }
  .button {
    width: 100%;
    justify-content: center;
  }
}
