/* --- ПРАВАЯ СТОРОНА (СВЕТЛАЯ ПАНЕЛЬ) --- */
.right-panel {
  display: flex;
  flex-direction: column;
  gap: 35px;
}

.data-block {
  width: 100%;
}

/* Заголовки блоков с линией разметки */
.section-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1.5px;
  color: #111111;
  padding-bottom: 8px;
  margin-bottom: 20px;
  border-bottom: 2px solid #0b348d1f;
  position: relative;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 50%;
  width: 50%;
  height: 2px;
  background-color: #0b348d;
}

/* Таймлайн / Сетка параметров */
.timeline {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 100px;
}

/* Линия по центру */
.timeline::before {
  content: '';
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 85px;
  width: 1px;
  background-color: #222222;
}

.timeline-item {
  display: flex;
  position: relative;
  margin-bottom: 14px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

/* Метка слева от линии */
.time-label {
  position: absolute;
  left: -100px;
  width: 75px;
  text-align: right;
  font-size: 12px;
  top: 2px;
  hyphens: auto;
}

/* Точка на линии */
.timeline-item::before {
  content: '';
  position: absolute;
  left: -19px;
  top: 7px;
  width: 7px;
  height: 7px;
  background-color: #FDFDFD;
  border: 1px solid #222222;
  border-radius: 50%;
  z-index: 2;
}

.time-content strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #0c348b;
}

.time-content p {
  font-size: 14px;
  margin-top: 1px;
  padding: 0px;
  line-height: 1;
}

/* Круговые шкалы (Skills) */
.skills-grid {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 10px;
}

.skill-circle {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 22%;
}

.circular-chart {
  display: block;
  margin: 0 auto 8px auto;
  max-width: 75px;
  max-height: 75px;
}

.circle-bg {
  fill: none;
  stroke: #EAEAEA;
  stroke-width: 1.5;
}

.circle {
  fill: none;
  stroke: #0c348b;
  stroke-width: 1.5;
  stroke-linecap: round;
}

.percentage {
  fill: #000;
  font-size: 8px;
  font-weight: 700;
  text-anchor: middle;
}

.skill-name {
  font-size: 10px;
  font-weight: 700;
  color: #444444;
  text-align: center;
  white-space: nowrap;
}

/* Нижнее текстовое примечание */
.note-block {
  font-size: 11px;
  line-height: 1.6;
  color: #444444;
  margin-top: 15px;
}

.note-block strong {
  color: #111111;
}

/* Адаптивность для небольших экранов */
@media (max-width: 820px) {
  .star-card {
    flex-direction: column;
    width: 100%;
    max-width: 500px;
  }

  .right-panel {
    padding: 30px;
  }
}