h2,
h3 {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;

  align-items: baseline;

  margin-bottom: 1rem;

  padding-bottom: 0.5rem;

  border-bottom: 1px solid #ddd;
}

h2 { margin-top: 3rem; }
h3 { margin-top: 2rem; }

/* Titre */
h2 .cv-title {
  font-size: 1.4rem;
  font-weight: 700;
}

h3 .cv-title {
  font-size: 1.1rem;
  font-weight: 600;
}

.cv-title img {
  height: 1.8em;

  opacity: 0.85;
  width: auto;
  vertical-align: middle;

  filter: grayscale(100%);
}

.cv-title:hover img {
  filter: grayscale(0%);
  opacity: 1;
}

/* Bloc droite */
.cv-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.2rem;
}

/* Date */
.cv-date {
  color: #666;
  font-size: 1rem;
  white-space: nowrap;
}

/* Rôle */
.cv-role {
  font-size: 0.85rem;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}