.cv-grid {
  display: grid;
  gap: 10px;
  margin-top: 8px;
  font-size: 0.9rem;
}

.cv-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "main dates"
    "bullets bullets";
  column-gap: 14px;
  row-gap: 4px;
  align-items: start;
  padding: 8px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);
}

.cv-main {
  grid-area: main;
  min-width: 0;
}

.cv-line {
  margin: 0;
  line-height: 1.25;
}

.cv-orgline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.cv-logo {
  width: 16px;
  height: 16px;
  object-fit: contain;
  flex: 0 0 auto;
}

.cv-logo--wordmark {
  width: auto;
  max-width: 74px;
  height: 16px;
}

.cv-org {
  font-weight: 700;
}

.cv-location {
  font-weight: 400;
}

.cv-role {
  margin: 2px 0 0 0;
  font-size: 0.96em;
  line-height: 1.25;
}

.cv-dates {
  grid-area: dates;
  margin: 0;
  opacity: 0.8;
  text-align: right;
  white-space: nowrap;
  max-width: 1.6in;
  font-size: 0.9em;
  line-height: 1.2;
}

.cv-list {
  grid-area: bullets;
  margin: 0;
  padding-left: 16px;
  font-size: 0.92em;
  line-height: 1.3;
}

.cv-list li + li {
  margin-top: 2px;
}

@media (max-width: 700px) {
  .cv-row {
    grid-template-columns: 1fr;
    grid-template-areas:
      "main"
      "dates"
      "bullets";
    row-gap: 3px;
  }

  .cv-dates {
    text-align: left;
    white-space: normal;
    max-width: none;
  }
}
