.fg-report {
  margin: 20px 0;
  border: 2px solid #fe6ea3;
  background: #fff;
}

.fg-report__body {
  padding: 15px 20px 20px;
}

.fg-report__summary {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: center;
}

.fg-report__score {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fe6ea3, #fcabd2);
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  box-shadow: 0 6px 16px rgba(254, 110, 163, 0.35);
}

.fg-score__label {
  font-size: 0.9rem;
  font-weight: 600;
}

.fg-score__value {
  font-size: 2.1rem;
  font-weight: 700;
  line-height: 1;
  margin: 4px 0;
}

.fg-score__max {
  font-size: 0.75rem;
  opacity: 0.8;
}

.fg-report__chart {
  flex: 1 1 320px;
  display: flex;
  justify-content: center;
}

.fg-radar {
  width: 300px;
  height: 300px;
}

.fg-radar__grid-line {
  fill: none;
  stroke: #f5c2d9;
  stroke-width: 1;
}

.fg-radar__axis {
  stroke: #fe6ea3;
  stroke-width: 1;
  opacity: 0.5;
}

.fg-radar__label {
  fill: #444;
  font-size: 12px;
  font-weight: 700;
}

.fg-radar__zone {
  fill: rgba(254, 110, 163, 0.14);
  stroke: rgba(254, 110, 163, 0.4);
  stroke-width: 2;
}

.fg-radar__current {
  fill: rgba(252, 171, 210, 0.45);
  stroke: #fe6ea3;
  stroke-width: 3;
}

.fg-radar__point {
  fill: #fe6ea3;
  stroke: #fff;
  stroke-width: 2;
}

.fg-report__legend {
  min-width: 140px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
  color: #444;
}

.fg-report__legend-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.fg-report__legend-color {
  width: 14px;
  height: 14px;
  border-radius: 2px;
  background: rgba(254, 110, 163, 0.35);
}

.fg-report__legend-color.is-current {
  background: #fe6ea3;
  border-radius: 50%;
}

.fg-report__details {
  margin-top: 18px;
  padding-top: 15px;
  border-top: 1px solid #f5c2d9;
}

.fg-report__details-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fe6ea3;
  text-align: center;
  margin-bottom: 12px;
}

.fg-report__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.fg-report__entry {
  border-left: 4px solid #fe6ea3;
  background: #fff7fb;
  padding: 10px 12px;
  border-radius: 6px;
}

.fg-report__points {
  font-weight: 700;
  color: #333;
  margin-bottom: 4px;
}

.fg-report__comment {
  color: #555;
  line-height: 1.5;
}

.fg-report.is-empty {
  display: none;
}

@media (max-width: 992px) {
  .fg-report__body {
    padding: 12px 14px 18px;
  }

  .fg-report__summary {
    gap: 16px;
  }

  .fg-report__score {
    width: 120px;
    height: 120px;
  }

  .fg-score__value {
    font-size: 1.7rem;
  }

  .fg-radar {
    width: 240px;
    height: 240px;
  }
}
