:root {
  color-scheme: light;
  --paper: #ffffff;
  --canvas: #f4f8fc;
  --surface: #ffffff;
  --text: #10172a;
  --muted: #526173;
  --faint: #8794a6;
  --line: #d4e2ef;
  --line-strong: #003060;
  --accent: #0070e0;
  --accent-strong: #003060;
  --accent-soft: #eaf4ff;
  --warm: #00a0e0;
  --warm-soft: #f0f8ff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--canvas);
  color: var(--text);
  font-family: Pretendard, "Noto Sans KR", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  word-break: keep-all;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

p,
h1,
h2,
h3,
ul,
dl,
dd {
  margin: 0;
}

ul {
  padding-left: 1.08em;
}

li + li {
  margin-top: 7px;
}

.site-toolbar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgb(21 25 29 / 10%);
  background: rgb(246 247 248 / 88%);
  padding: 10px max(24px, calc((100vw - 1120px) / 2));
  backdrop-filter: blur(18px);
}

.toolbar-brand {
  color: var(--text);
  font-size: 14px;
  font-weight: 850;
  text-decoration: none;
}

.print-button {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--text);
  color: #ffffff;
  cursor: pointer;
  font-size: 13px;
  font-weight: 850;
  padding: 0 15px;
}

.print-button span {
  display: inline-grid;
  width: 27px;
  height: 20px;
  place-items: center;
  border: 1px solid rgb(255 255 255 / 54%);
  border-radius: 4px;
  font-size: 9px;
  line-height: 1;
}

.print-button:hover {
  background: #2b3137;
}

.resume-shell {
  width: min(100%, 1120px);
  margin: 0 auto;
  padding: 76px 28px 104px;
}

.resume-document {
  display: block;
}

.resume-page {
  display: contents;
}

.resume-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 320px);
  align-items: end;
  gap: 72px;
  border-bottom: 2px solid var(--line-strong);
  padding-bottom: 58px;
}

.identity {
  min-width: 0;
}

.eyebrow {
  color: var(--accent);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  margin-top: 9px;
  font-size: 66px;
  letter-spacing: 0;
  line-height: 1;
}

.name-en {
  margin-top: 14px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 800;
}

.position {
  margin-top: 22px;
  color: var(--text);
  font-size: 21px;
  font-weight: 850;
  line-height: 1.35;
}

.contact-grid {
  display: grid;
  gap: 13px;
  border-left: 3px solid var(--line-strong);
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  padding-left: 28px;
}

.contact-grid a {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-grid a:hover {
  color: var(--accent-strong);
}

.resume-section {
  display: grid;
  grid-template-columns: 168px minmax(0, 1fr);
  gap: 64px;
  border-top: 1px solid var(--line);
  padding: 48px 0;
}

.resume-header + .resume-section {
  border-top: 0;
}

.resume-section-compact {
  padding-top: 42px;
  padding-bottom: 42px;
}

.resume-section-wide {
  grid-template-columns: 168px minmax(0, 1fr);
}

.section-label {
  position: sticky;
  top: 86px;
  align-self: start;
  color: var(--text);
  font-size: 13px;
  font-weight: 950;
  line-height: 1.25;
  text-transform: uppercase;
}

.section-label span {
  display: inline-grid;
  gap: 12px;
}

.section-label span::before {
  content: "";
  display: block;
  width: 40px;
  height: 3px;
  background: var(--accent);
}

.section-content {
  min-width: 0;
  color: var(--text);
  font-size: 16px;
}

.lead {
  max-width: 850px;
  color: var(--text);
  font-size: 20px;
  font-weight: 720;
  line-height: 1.78;
}

.intro-metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.intro-metrics div {
  min-width: 0;
  border-top: 3px solid var(--accent);
  background: var(--surface);
  padding: 20px 18px 18px;
}

.intro-metrics strong,
.intro-metrics span {
  display: block;
}

.intro-metrics strong {
  color: var(--accent-strong);
  font-size: 25px;
  font-weight: 950;
  line-height: 1.12;
}

.intro-metrics span {
  margin-top: 9px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 820;
  line-height: 1.35;
}

.focus-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 20px;
}

.focus-grid article {
  border: 1px solid var(--line);
  border-left: 4px solid var(--warm);
  border-radius: 8px;
  background: var(--surface);
  padding: 19px 18px;
}

.focus-grid h3 {
  color: var(--text);
  font-size: 15px;
  font-weight: 920;
  line-height: 1.25;
}

.focus-grid p {
  margin-top: 9px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.history-flow {
  display: grid;
  gap: 22px;
}

.history-group {
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.history-group:first-child {
  border-top: 0;
  padding-top: 0;
}

.history-group > h3 {
  color: var(--accent-strong);
  font-size: 15px;
  font-weight: 950;
  line-height: 1.3;
  margin-bottom: 13px;
}

.history-items {
  display: grid;
  gap: 14px;
}

.history-item {
  display: grid;
  grid-template-columns: minmax(228px, 0.32fr) minmax(0, 0.68fr);
  gap: 26px;
  min-width: 0;
}

.history-head span {
  display: block;
  color: var(--faint);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.25;
}

.history-head h4 {
  margin: 7px 0 0;
  color: var(--text);
  font-size: 17px;
  font-weight: 920;
  line-height: 1.3;
}

.history-head p,
.history-body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.55;
}

.history-head p {
  margin-top: 7px;
  font-weight: 760;
}

.history-facts {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.history-facts strong {
  display: inline-flex;
  min-height: 28px;
  align-items: center;
  border: 1px solid #9fc9f5;
  border-radius: 6px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 900;
  line-height: 1.15;
  padding: 0 9px;
}

.history-body {
  min-width: 0;
}

.history-projects {
  display: grid;
  gap: 6px;
  margin-top: 10px;
}

.history-projects div {
  display: grid;
  grid-template-columns: max-content minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
}

.history-projects strong {
  display: inline-flex;
  min-height: 23px;
  align-items: center;
  justify-content: center;
  border: 1px solid #b7d7f4;
  border-radius: 5px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 11px;
  font-weight: 900;
  line-height: 1.15;
  white-space: nowrap;
  padding: 0 10px;
}

.history-projects b {
  color: var(--text);
  font-weight: 880;
}

.history-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 10px;
}

.history-tags span {
  display: inline-flex;
  min-height: 27px;
  align-items: center;
  border: 1px solid #9fc9f5;
  border-radius: 6px;
  background: var(--warm-soft);
  color: #004070;
  font-size: 12px;
  font-weight: 850;
  line-height: 1.15;
  padding: 0 9px;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px 46px;
}

.skill-group {
  min-width: 0;
}

.skill-group h3,
.education-awards h3 {
  margin-bottom: 13px;
  color: var(--text);
  font-size: 16px;
  font-weight: 920;
}

.tag-list,
.mini-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-list span,
.mini-tags span {
  display: inline-flex;
  min-height: 30px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #ffffff;
  color: #343b42;
  font-size: 13px;
  font-weight: 760;
  line-height: 1.15;
  padding: 0 11px;
}

.mini-tags {
  margin-top: 18px;
}

.mini-tags span {
  border-color: #b7d7f4;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
}

.experience-list {
  display: grid;
  gap: 0;
}

.experience-item {
  break-inside: avoid;
  page-break-inside: avoid;
}

.experience-item {
  border-top: 1px solid var(--line);
  padding: 30px 0 32px;
}

.experience-item:first-child {
  border-top: 0;
  padding-top: 0;
}

.experience-item:last-child {
  padding-bottom: 0;
}

.item-head,
.project-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 36px;
}

.item-head h3,
.project-card h2 {
  color: var(--text);
  font-size: 27px;
  line-height: 1.22;
}

.item-head p,
.project-meta,
.project-name,
.item-description {
  color: var(--muted);
  font-size: 15px;
}

.item-head time {
  flex: none;
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
  white-space: nowrap;
}

.project-name {
  margin-top: 13px;
  color: var(--accent-strong);
  font-weight: 890;
}

.item-description {
  margin-top: 10px;
}

.experience-item ul {
  margin-top: 15px;
  color: var(--muted);
}

.project-stack {
  display: grid;
  gap: 28px;
}

.project-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 32px;
}

.project-type {
  color: var(--accent);
  font-size: 13px;
  font-weight: 920;
}

.project-meta {
  margin-top: 8px;
}

.metric-strip {
  display: grid;
  width: min(420px, 100%);
  grid-template-columns: repeat(auto-fit, minmax(86px, 1fr));
  gap: 8px;
}

.metric-strip-3 {
  width: 300px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.metric-strip-4 {
  width: 384px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.metric-strip-4 strong {
  white-space: nowrap;
}

.metric-strip strong {
  display: grid;
  min-height: 58px;
  place-items: center;
  border: 1px solid #b7d7f4;
  border-radius: 7px;
  background: var(--accent-soft);
  color: var(--accent-strong);
  font-size: 14px;
  font-weight: 930;
  line-height: 1.18;
  padding: 8px;
  text-align: center;
}

.project-body {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px 32px;
  margin-top: 22px;
}

.project-overview {
  border-left: 4px solid var(--accent);
  background: var(--accent-soft);
  color: var(--text);
  font-size: 15px;
  font-weight: 720;
  line-height: 1.62;
  margin-top: 20px;
  padding: 15px 18px;
}

.project-detail-full {
  grid-column: 1 / -1;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}

.project-body h3 {
  margin-bottom: 8px;
  color: var(--text);
  font-size: 14px;
  font-weight: 920;
}

.project-body p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.two-column-list {
  columns: 2;
  column-gap: 44px;
  color: var(--muted);
}

.education-awards {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 50px;
  color: var(--muted);
}

.link-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px 44px;
}

.link-list div {
  display: grid;
  grid-template-columns: 120px minmax(0, 1fr);
  align-items: baseline;
  gap: 18px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
}

.link-list dt {
  color: var(--text);
  font-size: 14px;
  font-weight: 920;
}

.link-list dd,
.link-list a,
.link-list span,
.muted {
  min-width: 0;
  color: var(--muted);
  font-size: 14px;
  overflow-wrap: anywhere;
}

.noscript-message {
  max-width: 760px;
  margin: 24px auto;
  background: #ffffff;
  color: var(--text);
  padding: 16px;
}

@media screen and (max-width: 960px) {
  .resume-shell {
    padding: 48px 22px 76px;
  }

  .resume-header,
  .resume-section,
  .resume-section-wide {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .resume-header {
    align-items: start;
    padding-bottom: 42px;
  }

  .section-label {
    position: static;
  }

  .section-label span {
    gap: 9px;
  }

  .contact-grid {
    border-left: 0;
    border-top: 2px solid var(--line-strong);
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding-left: 0;
    padding-top: 18px;
  }

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

  .focus-grid,
  .history-group,
  .history-item,
  .skills-grid,
  .project-body,
  .education-awards,
  .link-list {
    grid-template-columns: 1fr;
  }

  .project-head {
    flex-direction: column;
    gap: 18px;
  }

  .metric-strip {
    width: 100%;
  }

  .two-column-list {
    columns: 1;
  }
}

@media screen and (max-width: 620px) {
  .site-toolbar {
    position: static;
    align-items: stretch;
    flex-direction: column;
    padding: 12px 18px;
  }

  .print-button {
    justify-content: center;
  }

  .resume-shell {
    padding: 34px 18px 64px;
  }

  h1 {
    font-size: 46px;
  }

  .position,
  .lead {
    font-size: 18px;
  }

  .resume-section {
    padding: 36px 0;
  }

  .contact-grid,
  .intro-metrics {
    grid-template-columns: 1fr;
  }

  .item-head {
    flex-direction: column;
    gap: 8px;
  }

  .project-card {
    padding: 24px 20px;
  }

  .metric-strip {
    grid-template-columns: 1fr;
  }

  .link-list div {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

@media print {
  @page {
    size: A4 portrait;
    margin: 0;
  }

  :root {
    --canvas: #ffffff;
  }

  html,
  body {
    width: 210mm;
    background: #ffffff;
  }

  body {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
    line-height: 1.48;
  }

  .site-toolbar,
  .noscript-message {
    display: none !important;
  }

  .resume-shell {
    display: block;
    width: 210mm;
    min-height: 0;
    margin: 0;
    padding: 0;
  }

  .resume-document {
    display: block;
  }

  .resume-page {
    display: block;
    width: 210mm;
    min-height: 297mm;
    margin: 0;
    background: var(--paper);
    box-shadow: none;
    padding: 9.5mm 11mm;
    break-after: page;
    page-break-after: always;
  }

  .resume-page:last-child {
    break-after: auto;
    page-break-after: auto;
  }

  li + li {
    margin-top: 0.8mm;
  }

  .resume-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 60mm;
    align-items: end;
    gap: 8mm;
    border-bottom: 2px solid var(--line-strong);
    padding-bottom: 4.7mm;
  }

  .eyebrow {
    font-size: 8.7pt;
  }

  h1 {
    margin-top: 1mm;
    font-size: 27pt;
    line-height: 1.03;
  }

  .name-en {
    margin-top: 1.1mm;
    font-size: 9.4pt;
  }

  .position {
    margin-top: 2mm;
    font-size: 9.9pt;
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.7mm;
    border-left: 0;
    color: var(--muted);
    font-size: 7.5pt;
    padding-left: 0;
    text-align: right;
  }

  .contact-grid a:first-child {
    grid-column: 1 / -1;
  }

  .resume-section {
    display: grid;
    grid-template-columns: 30mm minmax(0, 1fr);
    gap: 7mm;
    border-top: 0;
    padding: 3.3mm 0 0;
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .resume-section-projects {
    break-inside: auto;
    page-break-inside: auto;
  }

  .resume-section + .resume-section {
    margin-top: 1.3mm;
  }

  .resume-section-compact {
    padding-top: 3mm;
  }

  .resume-section-wide {
    grid-template-columns: 1fr;
    gap: 2.4mm;
  }

  .section-label {
    position: static;
    border-top: 1.4px solid var(--line-strong);
    color: var(--text);
    font-size: 8.2pt;
    font-weight: 920;
    padding-top: 1.8mm;
  }

  .section-label span {
    display: inline;
  }

  .section-label span::before {
    display: none;
  }

  .section-content {
    min-width: 0;
    border-top: 1px solid var(--line);
    font-size: 7.55pt;
    padding-top: 1.8mm;
  }

  .resume-section-wide .section-content {
    border-top: 0;
    padding-top: 0;
  }

  .lead {
    max-width: none;
    font-size: 7.85pt;
    font-weight: 760;
    line-height: 1.48;
  }

  .intro-metrics {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.2mm;
    margin-top: 1.9mm;
  }

  .intro-metrics div {
    border-left: 2px solid var(--accent);
    border-top: 0;
    background: var(--accent-soft);
    padding: 1.4mm 1.5mm;
  }

  .intro-metrics strong {
    font-size: 8.35pt;
    line-height: 1.08;
  }

  .intro-metrics span {
    margin-top: 0.55mm;
    font-size: 6.55pt;
    line-height: 1.25;
  }

  .focus-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.3mm;
    margin-top: 1.6mm;
  }

  .focus-grid article {
    border: 1px solid var(--line);
    border-left: 2px solid var(--warm);
    border-radius: 5px;
    padding: 1.25mm;
  }

  .focus-grid h3 {
    font-size: 7.05pt;
  }

  .focus-grid p {
    margin-top: 0.7mm;
    font-size: 6.45pt;
    line-height: 1.3;
  }

  .history-flow {
    gap: 1mm;
  }

  .history-group {
    border-top: 1px solid var(--line);
    padding-top: 1.25mm;
  }

  .history-group,
  .history-item,
  .history-facts strong,
  .history-projects div,
  .skill-group,
  .experience-item,
  .focus-grid article,
  .intro-metrics div,
  .two-column-list li,
  .link-list div {
    break-inside: avoid;
    page-break-inside: avoid;
  }

  .history-group:first-child {
    border-top: 0;
    padding-top: 0;
  }

  .history-group > h3 {
    font-size: 7.1pt;
    line-height: 1.25;
    margin-bottom: 0.9mm;
  }

  .history-items {
    gap: 1.15mm;
  }

  .history-item {
    grid-template-columns: 46mm minmax(0, 1fr);
    gap: 2mm;
  }

  .history-head span {
    font-size: 6.35pt;
  }

  .history-head h4 {
    margin-top: 0.5mm;
    font-size: 7.25pt;
    line-height: 1.22;
  }

  .history-head p,
  .history-body p {
    font-size: 6.45pt;
    line-height: 1.32;
  }

  .history-head p {
    margin-top: 0.5mm;
  }

  .history-facts {
    gap: 0.5mm;
    margin-top: 0.55mm;
  }

  .history-facts strong {
    min-height: 3.3mm;
    border-radius: 3px;
    font-size: 5.35pt;
    padding: 0 0.75mm;
  }

  .history-projects {
    gap: 0.65mm;
    margin-top: 0.9mm;
  }

  .history-projects div {
    grid-template-columns: max-content minmax(0, 1fr);
    gap: 1.3mm;
  }

  .history-projects strong {
    min-height: 3.8mm;
    border-radius: 3px;
    font-size: 5.8pt;
    padding: 0 1.4mm;
  }

  .history-tags {
    gap: 0.8mm;
    margin-top: 0.8mm;
  }

  .history-tags span {
    min-height: 4.2mm;
    border-radius: 4px;
    font-size: 6pt;
    padding: 0 1.2mm;
  }

  .skills-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.8mm 3.8mm;
  }

  .skill-group h3,
  .education-awards h3 {
    margin-bottom: 1.05mm;
    font-size: 7.7pt;
  }

  .tag-list,
  .mini-tags {
    gap: 1.1mm;
  }

  .tag-list span,
  .mini-tags span {
    min-height: 4.8mm;
    border-radius: 4px;
    font-size: 6.75pt;
    padding: 0 1.45mm;
  }

  .mini-tags {
    margin-top: 1.4mm;
    gap: 0.9mm;
  }

  .mini-tags span {
    min-height: 4.5mm;
    font-size: 6.4pt;
    padding: 0 1.2mm;
  }

  .experience-list {
    gap: 2.6mm;
  }

  .experience-item {
    border-top: 0;
    padding: 0;
  }

  .item-head,
  .project-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 5mm;
  }

  .item-head h3,
  .project-card h2 {
    font-size: 9.8pt;
    line-height: 1.25;
  }

  .item-head p,
  .project-meta,
  .project-name,
  .item-description {
    font-size: 7.15pt;
  }

  .item-head time {
    font-size: 7pt;
  }

  .project-name {
    margin-top: 1.1mm;
  }

  .item-description {
    margin-top: 0.8mm;
  }

  .experience-item ul {
    margin-top: 1.25mm;
  }

  .project-stack {
    gap: 3mm;
  }

  .project-card {
    border: 1px solid var(--line);
    border-radius: 7px;
    break-inside: auto;
    page-break-inside: auto;
    padding: 3.2mm;
  }

  .project-type {
    font-size: 7.1pt;
  }

  .metric-strip {
    width: 64mm;
    grid-template-columns: repeat(auto-fit, minmax(13mm, 1fr));
    gap: 1.1mm;
  }

  .metric-strip-3 {
    width: 53mm;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .metric-strip-4 {
    width: 64mm;
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .metric-strip-4 strong {
    white-space: normal;
  }

  .metric-strip strong {
    min-height: 9.6mm;
    border-radius: 5px;
    font-size: 7.1pt;
    line-height: 1.13;
    padding: 1mm;
  }

  .project-body {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.8mm 3.4mm;
    margin-top: 1.8mm;
  }

  .project-overview {
    border-left: 2px solid var(--accent);
    font-size: 6.85pt;
    line-height: 1.35;
    margin-top: 1.5mm;
    padding: 1.2mm 1.6mm;
  }

  .project-detail-full {
    border-top: 1px solid var(--line);
    padding-top: 1.2mm;
  }

  .project-body h3 {
    margin-bottom: 0.65mm;
    font-size: 7.1pt;
  }

  .project-body p {
    font-size: 6.9pt;
    line-height: 1.38;
  }

  .two-column-list {
    columns: 2;
    column-gap: 7mm;
  }

  .education-awards {
    grid-template-columns: 1.35fr 1fr;
    gap: 7mm;
  }

  .link-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.6mm 7mm;
  }

  .link-list div {
    grid-template-columns: 20mm minmax(0, 1fr);
    gap: 2.5mm;
    border-top: 0;
    padding-top: 0;
  }

  .link-list dt,
  .link-list dd,
  .link-list a,
  .link-list span,
  .muted {
    font-size: 6.95pt;
  }
}
