:root {
  color-scheme: light;
  --bg: #eef4f2;
  --panel: #ffffff;
  --line: #cbdad6;
  --ink: #102622;
  --muted: #536661;
  --primary: #245f73;
  --primary-strong: #1d5061;
  font-family: Arial, Helvetica, sans-serif;
}

* {
  box-sizing: border-box;
}

body {
  background: var(--bg);
  color: var(--ink);
  margin: 0;
}

main {
  margin: 0 auto;
  max-width: 1160px;
  padding: 24px 18px 40px;
}

header {
  align-items: flex-start;
  display: flex;
  gap: 18px;
  justify-content: space-between;
  margin-bottom: 18px;
}

h1,
h2,
p {
  margin: 0;
}

h1 {
  font-size: 34px;
  font-weight: 600;
  line-height: 1.08;
}

h2 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
}

.eyebrow {
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0;
  margin-bottom: 6px;
  text-transform: uppercase;
}

.lead {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.45;
  margin-top: 8px;
  max-width: 780px;
}

.badge {
  background: #eef6f8;
  border: 1px solid #bfd2da;
  border-radius: 999px;
  color: var(--primary-strong);
  font-size: 13px;
  font-weight: 600;
  padding: 8px 12px;
  white-space: nowrap;
}

.section {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  margin-top: 14px;
  overflow: hidden;
}

.section-head {
  align-items: baseline;
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 12px;
  justify-content: space-between;
  padding: 14px 16px;
}

.section-head span {
  color: var(--muted);
  font-size: 13px;
  font-weight: 500;
}

.link-table {
  display: grid;
}

.row {
  align-items: center;
  color: inherit;
  display: grid;
  gap: 14px;
  grid-template-columns: 230px minmax(0, 1fr) 190px;
  min-height: 68px;
  padding: 12px 16px;
  text-decoration: none;
}

.row + .row {
  border-top: 1px solid var(--line);
}

.row:hover,
.row:focus-visible {
  background: #f8fafb;
  outline: 0;
}

.row strong {
  font-size: 16px;
  font-weight: 600;
}

.row span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.35;
}

.row em {
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--primary-strong);
  font-size: 12px;
  font-style: normal;
  font-weight: 600;
  justify-self: end;
  padding: 7px 10px;
  text-transform: uppercase;
  white-space: nowrap;
}

.row.primary {
  background: #f2f8fa;
  border-left: 6px solid var(--primary);
}

.row.primary strong {
  color: var(--primary-strong);
  font-size: 18px;
}

.row.primary em {
  background: var(--primary);
  border-color: var(--primary);
  color: #ffffff;
}

.note {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.45;
  margin-top: 14px;
}

@media (max-width: 760px) {
  header,
  .section-head {
    display: block;
  }

  .row {
    align-items: start;
    display: grid;
    gap: 6px 10px;
    grid-template-columns: minmax(0, 1fr) auto;
    min-height: auto;
    padding: 14px 16px;
  }

  .row strong {
    grid-column: 1;
    grid-row: 1;
  }

  .row span {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .row em {
    display: inline-block;
    grid-column: 2;
    grid-row: 1;
    margin-top: 0;
  }
}
