/* ================================================================
   complete/bloom-taxonomy — local.css
   ================================================================ */

/* Bloom's Taxonomy 6段階リスト */
.bt-taxonomy {
  background: rgba(4,63,109,.04);
  border-radius: 8px;
  padding: 1rem 1.3rem;
  margin: .8rem 0 1.2rem;
}
.bt-taxonomy__label {
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .06em;
  color: var(--lb);
  font-family: 'Raleway', sans-serif;
  margin-bottom: .65rem;
}
.bt-taxonomy__list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: bt-cnt;
}
.bt-taxonomy__list li {
  counter-increment: bt-cnt;
  display: flex;
  align-items: baseline;
  gap: .75rem;
  padding: .45rem 0;
  border-bottom: 1px solid rgba(70,162,218,.1);
  font-size: .93rem;
  line-height: 1.7;
}
.bt-taxonomy__list li:last-child {
  border-bottom: none;
}
.bt-taxonomy__list li::before {
  content: counter(bt-cnt);
  flex-shrink: 0;
  width: 1.5rem;
  height: 1.5rem;
  min-width: 1.5rem;
  background: var(--lb);
  color: #fff;
  border-radius: 50%;
  font-size: .68rem;
  font-weight: 700;
  font-family: 'Raleway', sans-serif;
  text-align: center;
  line-height: 1.5rem;
}
.bt-taxonomy__name {
  font-weight: 700;
  color: var(--blue);
}

@media (max-width: 640px) {
  .bt-taxonomy {
    padding: .85rem 1rem;
  }
  .bt-taxonomy__list li {
    font-size: .88rem;
    gap: .6rem;
  }
}
