/* =====================================================
   TEMPLATE: MINIMAL
   Design épuré blanc, typographie Outfit, accents subtils
   ===================================================== */

.cv-minimal {
  font-family: 'Outfit', sans-serif;
  color: #111827;
  min-height: 297mm;
  padding: 44px 44px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  background: white;
}

/* ── Header ── */
.cv-minimal .cv-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 20px;
  border-bottom: 2px solid #111827;
}

.cv-minimal .cv-header-left {
  display: flex;
  align-items: center;
  gap: 20px;
}

.cv-minimal .cv-photo {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  object-fit: cover;
  flex-shrink: 0;
}

.cv-minimal .cv-photo-placeholder {
  width: 70px;
  height: 70px;
  border-radius: 12px;
  background: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.cv-minimal .cv-fullname {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.5px;
  line-height: 1.1;
  color: #111827;
}

.cv-minimal .cv-jobtitle {
  font-size: 0.72rem;
  font-weight: 400;
  color: #6b7280;
  margin-top: 4px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Contact block (right side) */
.cv-minimal .cv-header-contacts {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
}

.cv-minimal .cv-contact-item {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 0.63rem;
  color: #6b7280;
}
.cv-minimal .cv-contact-item svg {
  width: 11px;
  height: 11px;
  flex-shrink: 0;
}

/* ── Section ── */
.cv-minimal .cv-section {
  display: flex;
  gap: 20px;
}

.cv-minimal .cv-section-title {
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
  color: #9ca3af;
  width: 80px;
  flex-shrink: 0;
  padding-top: 2px;
}

.cv-minimal .cv-section-content {
  flex: 1;
  border-left: 1px solid #e5e7eb;
  padding-left: 20px;
}

/* Summary */
.cv-minimal .cv-summary {
  font-size: 0.7rem;
  color: #4b5563;
  line-height: 1.75;
}

/* Experience */
.cv-minimal .cv-exp-item {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid #f3f4f6;
}
.cv-minimal .cv-exp-item:last-child { border-bottom: none; margin-bottom: 0; }

.cv-minimal .cv-exp-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2px;
}

.cv-minimal .cv-exp-role {
  font-size: 0.75rem;
  font-weight: 700;
  color: #111827;
}

.cv-minimal .cv-exp-dates {
  font-size: 0.6rem;
  color: #9ca3af;
  white-space: nowrap;
}

.cv-minimal .cv-exp-company {
  font-size: 0.67rem;
  color: #374151;
  font-weight: 500;
  margin-bottom: 4px;
}

.cv-minimal .cv-exp-desc {
  font-size: 0.66rem;
  color: #4b5563;
  line-height: 1.65;
}

/* Education */
.cv-minimal .cv-edu-item {
  margin-bottom: 10px;
}
.cv-minimal .cv-edu-degree {
  font-size: 0.73rem;
  font-weight: 700;
  color: #111827;
}
.cv-minimal .cv-edu-school {
  font-size: 0.66rem;
  color: #6b7280;
}
.cv-minimal .cv-edu-dates {
  font-size: 0.62rem;
  color: #9ca3af;
}

/* Skills (two columns) */
.cv-minimal .cv-skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 20px;
}

.cv-minimal .cv-skill-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.cv-minimal .cv-skill-header {
  display: flex;
  justify-content: space-between;
  font-size: 0.65rem;
}
.cv-minimal .cv-skill-name { font-weight: 600; color: #111827; }
.cv-minimal .cv-skill-pct { color: #9ca3af; }

.cv-minimal .cv-skill-bar-track {
  height: 2px;
  background: #e5e7eb;
  border-radius: 1px;
  overflow: hidden;
}
.cv-minimal .cv-skill-bar-fill {
  height: 100%;
  background: #111827;
  border-radius: 1px;
}

/* Languages */
.cv-minimal .cv-langs-grid {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cv-minimal .cv-lang-pill {
  padding: 3px 10px;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  font-size: 0.63rem;
  font-weight: 500;
  color: #374151;
}
.cv-minimal .cv-lang-pill span {
  color: #9ca3af;
  font-weight: 400;
}

/* Interests */
.cv-minimal .cv-interests {
  font-size: 0.65rem;
  color: #6b7280;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.cv-minimal .cv-interest-chip {
  padding: 2px 8px;
  background: #f3f4f6;
  border-radius: 20px;
  font-size: 0.62rem;
  color: #4b5563;
}
