/* =====================================================
   TEMPLATE: EXECUTIVE
   Élégant tons dorés, pour cadres supérieurs
   ===================================================== */

.cv-executive {
  font-family: 'Inter', sans-serif;
  color: #1c1c1c;
  min-height: 297mm;
  background: white;
  display: flex;
  flex-direction: column;
}

/* ── Top accent line ── */
.cv-executive .cv-top-accent {
  height: 5px;
  background: linear-gradient(to right, #92741c, #d4a52a, #f5d070, #d4a52a, #92741c);
}

/* ── Header ── */
.cv-executive .cv-header {
  padding: 28px 40px 22px;
  display: flex;
  align-items: center;
  gap: 24px;
  border-bottom: 1px solid #e8e0cc;
}

.cv-executive .cv-photo {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
  border: 3px solid #d4a52a;
  box-shadow: 0 2px 10px rgba(212,165,42,0.2);
}

.cv-executive .cv-photo-placeholder {
  width: 85px;
  height: 85px;
  border-radius: 50%;
  background: #fdf8ee;
  border: 3px solid #d4a52a;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d4a52a;
  font-size: 2rem;
  flex-shrink: 0;
}

.cv-executive .cv-header-text { flex: 1; }

.cv-executive .cv-fullname {
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.5px;
  color: #1c1c1c;
  line-height: 1.1;
}

.cv-executive .cv-jobtitle {
  font-size: 0.7rem;
  font-weight: 500;
  color: #92741c;
  margin-top: 5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cv-executive .cv-header-contacts {
  display: flex;
  gap: 10px 20px;
  flex-wrap: wrap;
  margin-top: 10px;
}

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

/* ── Body ── */
.cv-executive .cv-body {
  display: grid;
  grid-template-columns: 1fr 185px;
  flex: 1;
}

.cv-executive .cv-main {
  padding: 24px 28px 24px 40px;
  border-right: 1px solid #e8e0cc;
}

.cv-executive .cv-sidebar {
  padding: 24px 20px;
  background: #fdf8ee;
}

/* Section titles */
.cv-executive .cv-section-title {
  font-size: 0.63rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 800;
  color: #92741c;
  border-bottom: 1px solid #e8e0cc;
  padding-bottom: 5px;
  margin-bottom: 12px;
  margin-top: 18px;
}
.cv-executive .cv-section-title:first-child { margin-top: 0; }

.cv-executive .cv-sidebar-section-title {
  font-size: 0.58rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 800;
  color: #92741c;
  border-bottom: 1px solid #e8e0cc;
  padding-bottom: 4px;
  margin-bottom: 10px;
  margin-top: 16px;
}
.cv-executive .cv-sidebar-section-title:first-child { margin-top: 0; }

/* Summary */
.cv-executive .cv-summary {
  font-size: 0.69rem;
  color: #374151;
  line-height: 1.75;
  font-style: italic;
  border-left: 3px solid #d4a52a;
  padding-left: 12px;
}

/* Experience */
.cv-executive .cv-exp-item {
  margin-bottom: 14px;
  padding-bottom: 12px;
  border-bottom: 1px dotted #e8e0cc;
}
.cv-executive .cv-exp-item:last-child { border-bottom: none; }

.cv-executive .cv-exp-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.cv-executive .cv-exp-role {
  font-size: 0.74rem;
  font-weight: 700;
  color: #1c1c1c;
}
.cv-executive .cv-exp-dates {
  font-size: 0.6rem;
  color: #9ca3af;
  white-space: nowrap;
}
.cv-executive .cv-exp-company {
  font-size: 0.67rem;
  color: #92741c;
  font-weight: 600;
  margin: 2px 0 5px;
}
.cv-executive .cv-exp-desc {
  font-size: 0.66rem;
  color: #4b5563;
  line-height: 1.65;
}

/* Education */
.cv-executive .cv-edu-item { margin-bottom: 11px; }
.cv-executive .cv-edu-degree {
  font-size: 0.72rem;
  font-weight: 700;
  color: #1c1c1c;
}
.cv-executive .cv-edu-school {
  font-size: 0.65rem;
  color: #92741c;
  font-weight: 500;
}
.cv-executive .cv-edu-dates {
  font-size: 0.6rem;
  color: #9ca3af;
}

/* Sidebar Skills */
.cv-executive .cv-skill-item { margin-bottom: 8px; }
.cv-executive .cv-skill-name {
  font-size: 0.63rem;
  color: #1c1c1c;
  font-weight: 500;
  margin-bottom: 3px;
}
.cv-executive .cv-skill-dots {
  display: flex;
  gap: 3px;
}
.cv-executive .cv-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #e8e0cc;
}
.cv-executive .cv-dot.filled { background: #d4a52a; }

/* Languages */
.cv-executive .cv-lang-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.63rem;
  margin-bottom: 5px;
}
.cv-executive .cv-lang-name { font-weight: 600; color: #1c1c1c; }
.cv-executive .cv-lang-level { color: #9ca3af; }

/* Interests */
.cv-executive .cv-interests {
  font-size: 0.63rem;
  color: #4b5563;
  line-height: 1.75;
}
