:root {
  --background: #f2f1ec;
  --text: #1f2927;
  --muted: #6d7673;
  --line: #cfd2cc;
  --accent: #186354;
  --row: #e9ece5;
  --sans: "Avenir Next", Avenir, "Segoe UI", Helvetica, Arial, sans-serif;
}

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

html {
  color-scheme: light;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: var(--sans);
  font-size: 17px;
  line-height: 1.4;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: #c9ddd6;
}

a {
  color: var(--accent);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

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

a:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

.page {
  width: min(760px, calc(100% - 40px));
  margin: clamp(36px, 8vw, 72px) auto;
}

header {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin-bottom: 42px;
  padding-bottom: 18px;
  border-bottom: 3px solid var(--text);
}

h1 {
  margin: 0;
  font-size: clamp(34px, 6vw, 48px);
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1;
}

header p {
  margin: 0;
  color: var(--accent);
  font-size: 18px;
  font-weight: 650;
}

section + section {
  margin-top: 36px;
}

h2 {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.link-list {
  margin: 0;
  padding: 0;
  border-top: 1px solid var(--text);
  list-style: none;
}

.link-list li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  min-height: 66px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
}

.link-list li:nth-child(even) {
  background: var(--row);
}

.project {
  display: flex;
  align-items: baseline;
  gap: 14px;
  min-width: 0;
}

.project strong {
  font-size: 19px;
  font-weight: 650;
  letter-spacing: -0.015em;
}

.project strong > .project-title,
.project strong > .project-title:link,
.project strong > .project-title:visited,
.project strong > .project-title:hover,
.project strong > .project-title:active {
  color: #111 !important;
  font: inherit;
  letter-spacing: inherit;
  -webkit-text-fill-color: #111 !important;
  text-decoration: none !important;
  text-decoration-line: none !important;
  cursor: pointer;
}

.project span {
  color: var(--muted);
  font-size: 15px;
}

.destinations {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
  font-size: 15px;
  font-weight: 650;
}

@media (max-width: 560px) {
  .page {
    width: min(100% - 24px, 760px);
    margin-block: 28px;
  }

  header {
    margin-bottom: 32px;
  }

  .link-list li {
    grid-template-columns: 1fr;
    gap: 6px;
    min-height: 76px;
    padding: 11px 10px;
  }

  .project {
    display: block;
  }

  .project span {
    display: block;
    margin-top: 2px;
  }

  .destinations {
    justify-content: flex-start;
  }
}
