.cv {
  padding: 120px 20px;
  display: flex;
  justify-content: center;
  background: #fff5e4;
}

.cv-container {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;

  max-width: 1100px;
  width: 100%;

  background: white;
  padding: 60px;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.cv-left {
  border-right: 1px solid #eee;
  padding-right: 40px;
}

.cv-right {
  padding-left: 20px;
}

.cv-name {
  font-family: "Rubik Mono One", monospace;
  font-size: 32px;
  color: #1e40ff;
  line-height: 1.2;
}

.role {
  margin-top: 8px;
  color: #ff751f;
  font-size: 14px;
}

.cv-block {
  margin-top: 30px;
}

.cv-block h2 {
  font-size: 16px;
  color: #ff751f;
  margin-bottom: 10px;
}

.cv-block p,
.cv-block li {
  font-size: 15px;
  line-height: 1.6;
}

.cv-block ul {
  padding-left: 18px;
}

/* Reusable list system */
.cv-list {
  list-style: none;
  padding: 0;
}

.cv-list li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 6px;
}

/* Right-side meta (dates, levels, etc.) */
.cv-meta {
  white-space: nowrap;
  color: #999;
  font-size: 14px;
}

/* Sub block (like computervaardigheden) */
.cv-sub-block {
  margin-top: 15px;
}

.cv-sub-title {
  font-size: 14px;
  color: #ff751f;
  margin-bottom: 8px;
}

.skills {
  margin-top: 10px;
  font-size: 14px;
  line-height: 1.6;
}

.skill-bar {
  display: inline-block;
  width: 120px;
  height: 8px;
  background: #eee;
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.skill-bar::before {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  background: #ff751f;
  border-radius: 20px;
}

.skill-bar[data-level="1"]::before { width: 20%; }
.skill-bar[data-level="2"]::before { width: 40%; }
.skill-bar[data-level="3"]::before { width: 60%; }
.skill-bar[data-level="4"]::before { width: 80%; }
.skill-bar[data-level="5"]::before { width: 100%; }

.cv-header-left {
  display: block;
  margin-bottom: 30px;
}

.cv-photo {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

.cv-header-right {
  margin-bottom: 30px;
}



@media (max-width: 768px) {
  .cv-container {
    grid-template-columns: 1fr;
    padding: 40px;
  }

  .cv-left {
    border-right: none;
    padding-right: 0;
  }

  .cv-right {
    padding-left: 0;
  }
}
