/* expertise-mobile.css */

/* Mobile only */
@media (max-width: 768px) {
  .milestone-scroll-section {
    padding: 20px 10px;
    text-align: center;
  }

  /* Progress label smaller and closer to top */
  #svg-progress-label {
    top: 5px !important;
    right: 10px !important;
    font-size: 12px !important;
    padding: 4px 8px !important;
  }

  /* SVG container responsive */
  .svg-container {
    width: 100%;
    overflow-x: auto;
  }

  #path-svg {
    width: 100%;
    height: auto;
  }

  /* Labels stacked vertically */
  .svg-label {
    width: 100% !important;
    margin: 15px auto;
    padding: 15px;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.05);
    text-align: center;
  }

  /* Label number */
  .label-nom {
    font-size: 20px;
    margin-bottom: 6px;
    background: rgba(255, 255, 255, 0.1);
    display: inline-block;
    padding: 5px 10px;
    border-radius: 50%;
  }

  /* Label title */
  .label-title {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 8px;
  }

  /* Label description */
  .label-desc {
    font-size: 14px;
    line-height: 1.4;
  }
}


