.category-title {
  position: relative;
  font-weight: bold;
  font-size: 1rem;
  margin: 40px 0 20px;
  padding-left: 20px;
  color: var(--basic-color-black);
}

.category-title::before {
  content: "¡ü";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  color: var(--basic-main-color);
  line-height: 1;
}

.develop-inner {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.develop-column {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.develop-item {
  display: flex;
  flex-direction: column;
}

.develop-info {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 1.5;
  gap: 10px;
}

.left-block {
  flex-basis: 60%;
  max-width: 60%;
  min-width: 0;
  overflow: hidden;
}

.feature-title {
  font-weight: normal;
  font-size: 14px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.center-block {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-basis: 30%;
  justify-content: flex-start;
  min-width: 0;
}

.progress-bar-container {
  background-color: #e6e6e6;
  width: 80px;
  height: 10px;
  border-radius: 15px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background-color: var(--complementary-color-blue-50);
  width: 0%;
  transition: width 1s ease;
  border-radius: 4px;
}

.progress-percent {
  color: var(--complementary-color-blue-50)!important;
}

.progress-bar.is-complete {
  background-color: var(--basic-main-color);
}


.progress-percent {
  font-size: 0.9em;
  color: #555;
  width: 40px;
  text-align: right;
}

.is-complete {
  font-weight: bold;
  color: var(--basic-main-color)!important;
}

.right-block {
  flex-basis: 20%;
  max-width: 20%;
  text-align: left;
}

.release-label {
  font-size: 0.85em;
  color: #888;
  white-space: nowrap;
}

.indicator-supplement {
  margin-top: 2rem;
  font-size: 1rem;
  line-height: 2;
  color: #555;
}

@media screen and (max-width: 767px) {
  .develop-inner {
    flex-direction: column;
    gap: 24px;
  }

  .develop-column {
    min-width: 100%;
  }

  .develop-info {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }

  .progress-bar-container {
    width: 100%;
  }

  .center-block {
    flex-basis: auto;
    width: 100%;
  }

  .right-block {
    flex-basis: auto;
    width: 100%;
  }

  .progress-info {
    justify-content: flex-start;
  }

  .feature-title {
    white-space: normal;
    max-width: 100%;
  }

  .release-label {
    margin-left: 0;
  }
}
