/* Shared CV sheet styles — used by the viewer (index.html) and the editor preview. */

* { box-sizing: border-box; margin: 0; padding: 0; }

.sheet {
  width: 210mm;
  height: 297mm;
  padding: 10mm 11mm 11mm;
  background: #FAFAFA;
  overflow: hidden;
  font-family: 'DM Sans', sans-serif;
  font-size: 12.5px;
  line-height: 1.31;
  color: #262626;
}
.sheet-inner { height: 100%; display: flow-root; overflow: hidden; }
.sheet-inner > :first-child { margin-top: 0; }
.sheet a { color: inherit; }

/* header block */
.cv-header .name-row { display: flex; align-items: center; }
.cv-header h1 {
  color: #164C78;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 0.5px;
  line-height: 1.15;
  white-space: nowrap;
}
.cv-header .rule { flex: 1; height: 2.5px; background: #97BBD9; margin-left: 18px; }
.cv-header .job-title { color: #164C78; font-size: 19px; font-weight: 400; margin-top: 4px; }
.cv-header .contact { font-size: 13px; margin-top: 5px; }

/* section heading */
.cv-h2 {
  color: #164C78;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.3px;
  padding-bottom: 6px;
  border-bottom: 2.5px solid #97BBD9;
  margin-top: 17px;
}

/* section bodies */
.cv-text { margin-top: 10px; }

.cv-entry-head { margin-top: 13px; }
.cv-h2 + .cv-entry-head { margin-top: 10px; }
.cv-entry-head h3 { font-size: 14px; font-weight: 700; }
.cv-entry-head .role-line { margin-top: 1px; }
.cv-project { margin-top: 4px; }
ul.cv-bullets { margin-top: 4px; padding-left: 26px; list-style: disc; }
ul.cv-bullets li { margin-bottom: 1px; padding-left: 2px; }

.cv-lines { margin-top: 10px; padding-left: 10px; }

ul.cv-2col { margin-top: 10px; columns: 2; column-gap: 24px; padding-left: 40px; list-style: disc; }
ul.cv-2col li { break-inside: avoid; }

ul.cv-list { margin-top: 10px; padding-left: 40px; list-style: disc; }
