.cv-wrapper {
  --cv-bg: #fdf6e3;
  --cv-text: #3c3836;
  --cv-text-muted: #665c54;
  --cv-accent: #076678;
  --cv-border: #d5c4a1;
  --cv-link: #076678;
  --cv-row-border: #e5d9b5;
  background-color: var(--cv-bg);
  color: var(--cv-text);
  transition: background-color 0.2s ease, color 0.2s ease;
  min-height: calc(100vh - 83px);
  width: 100%;
}

.cv-wrapper.cv-dark {
  --cv-bg: #282828;
  --cv-text: #ebdbb2;
  --cv-text-muted: #a89984;
  --cv-accent: #83a598;
  --cv-border: #504945;
  --cv-link: #83a598;
  --cv-row-border: #3c3836;
}

.cv-container {
  max-width: 850px;
  margin: 0 auto;
  padding: 40px 40px 60px;
}

.cv-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--cv-border);
}

.cv-name {
  font-size: 2.2em;
  font-weight: 700;
  margin: 0 0 4px 0;
  color: var(--cv-text);
}

.cv-location {
  color: var(--cv-text-muted);
  margin: 0 0 8px 0;
  font-size: 0.95em;
}

.cv-contacts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 10px;
  font-size: 0.9em;
}
.cv-contacts a {
  color: var(--cv-link);
  text-decoration: none;
}
.cv-contacts a:hover {
  text-decoration: underline;
}
.cv-contacts .cv-sep {
  color: var(--cv-text-muted);
  user-select: none;
}

.cv-toggle {
  background: none;
  border: 1px solid var(--cv-border);
  color: var(--cv-text);
  padding: 6px 14px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.85em;
  white-space: nowrap;
  flex-shrink: 0;
  transition: border-color 0.15s, color 0.15s;
}
.cv-toggle:hover {
  border-color: var(--cv-accent);
  color: var(--cv-accent);
}

.cv-section {
  margin-bottom: 28px;
}

.cv-section-title {
  font-size: 0.8em;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--cv-accent);
  border-bottom: 1.5px solid var(--cv-accent);
  padding-bottom: 5px;
  margin-bottom: 16px;
}

.cv-entry {
  margin-bottom: 16px;
}
.cv-entry:last-child {
  margin-bottom: 0;
}

.cv-entry-header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 8px;
}

.cv-entry-title {
  font-weight: 600;
  font-size: 1em;
}

.cv-entry-date {
  color: var(--cv-text-muted);
  font-size: 0.85em;
  white-space: nowrap;
  flex-shrink: 0;
}

.cv-entry-org {
  color: var(--cv-text-muted);
  font-size: 0.9em;
  font-style: italic;
  margin: 2px 0 4px 0;
}

.cv-entry-detail {
  font-size: 0.9em;
  margin: 2px 0 0 0;
}

.cv-entry-bullets {
  margin: 4px 0 0 0;
  padding-left: 18px;
}
.cv-entry-bullets li {
  font-size: 0.9em;
  margin-bottom: 3px;
  line-height: 1.5;
}

.cv-skills-table {
  width: 100%;
  border-collapse: collapse;
}
.cv-skills-table tr {
  border-bottom: 1px solid var(--cv-row-border);
}
.cv-skills-table tr:last-child {
  border-bottom: none;
}
.cv-skills-table th {
  text-align: left;
  width: 150px;
  padding: 6px 20px 6px 0;
  font-weight: 600;
  font-size: 0.9em;
  vertical-align: top;
}
.cv-skills-table td {
  padding: 6px 0;
  font-size: 0.9em;
}

.cv-publications {
  padding-left: 18px;
}
.cv-publications li {
  margin-bottom: 10px;
  line-height: 1.6;
  font-size: 0.9em;
}
.cv-publications li a {
  color: var(--cv-link);
  text-decoration: none;
}
.cv-publications li a:hover {
  text-decoration: underline;
}

@media print {
  .site-nav {
    display: none !important;
  }
  .cv-toggle {
    display: none !important;
  }
  .cv-wrapper {
    --cv-bg: white;
    --cv-text: black;
    --cv-text-muted: #555;
    --cv-accent: #333;
    --cv-border: #bbb;
    --cv-link: #333;
    --cv-row-border: #ddd;
    background: white;
    min-height: unset;
  }
  .cv-container {
    padding: 0;
    max-width: 100%;
  }
  a {
    color: inherit !important;
    text-decoration: none !important;
  }
}

/*# sourceMappingURL=cv.css.map */
