/* =====================================================
   CV TEMPLATES — BASE STYLES
   Shared variables and utilities used by all templates
   ===================================================== */

/* CV page sizing (A4) */
.cv-page {
  width: 210mm;
  min-height: 297mm;
  background: white;
  position: relative;
  overflow: hidden;
  font-size: 10pt;
  line-height: 1.5;
}

/* Common section heading style (overridden per template) */
.cv-section-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 10px;
}

/* Stars rating (for skills) */
.cv-stars {
  display: flex;
  gap: 3px;
}

.cv-star {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

/* Skill bar */
.cv-skill-bar-track {
  height: 4px;
  border-radius: 2px;
  overflow: hidden;
  flex: 1;
}

.cv-skill-bar-fill {
  height: 100%;
  border-radius: 2px;
}

/* Tag pill */
.cv-tag {
  display: inline-block;
  padding: 2px 8px;
  border-radius: 20px;
  font-size: 0.65rem;
  font-weight: 600;
}
