.section_technical {
  text-align: center;
}

.section_technical h2 {
  margin-bottom: 90px;
}

.section_technical h3 {
  font-family: "Bodoni Moda", serif;
  margin-bottom: 48px;
  text-align: left;
}

.section_technical .assemblage {
  text-align: left;
}

.section_technical .assemblage ul {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  padding: 0;
  justify-content: space-around;
}

.section_technical .assemblage li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.section_technical .tasting {
  padding-left: 120px;
}

.section_technical .tasting .items li {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: baseline;
  margin-bottom: 16px;
}

.section_technical .tasting .items .title {
  font-weight: 600;
  white-space: nowrap;
  text-align: left;
  text-transform: uppercase;
  font-size: 13px;
}

.section_technical .tasting .items .text {
  font-weight: 500;
  text-align: left;
  font-size: 14px;
  font-weight: 300;
}

.section_technical .assemblage .cepage {
  font-size: 12px;
  text-align: center;
  font-weight: 400;
  margin-top: 12px;
  text-transform: uppercase;
}

/* ── Progress circle ── */

.progress {
  background-color: white;
}

.progress.progress-circle {
  position: relative;
  width: 80px;
  height: 80px;
  border-radius: 50%;
}

.progress.progress-circle::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: conic-gradient(#c1a483 calc(var(--percent) * 1%), #e0e0e0 0);
  -webkit-mask: radial-gradient(circle, transparent 65%, #c1a483 66%);
  mask: radial-gradient(circle, transparent 65%, #c1a483 66%);
}

.progress.progress-circle .progress-value {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 500;
  z-index: 1;
}
