/* ================================================================
   complete/listening — local.css
   ================================================================ */

/* スコア別戦略ボックス */
.a-strategy {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  margin: .8rem 0 1.2rem;
}
.a-strategy__item {
  padding: .8rem 1.1rem;
  border-radius: 8px;
  font-size: .92rem;
  line-height: 1.8;
}
.a-strategy__item--low {
  background: rgba(245,161,0,.06);
  border: 1px solid rgba(245,161,0,.3);
}
.a-strategy__item--mid {
  background: rgba(70,162,218,.06);
  border: 1px solid rgba(70,162,218,.28);
}
.a-strategy__item--high {
  background: rgba(29,107,58,.05);
  border: 1px solid rgba(29,107,58,.22);
}
.a-strategy__label {
  display: block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .06em;
  margin-bottom: .3rem;
  font-family: 'Raleway', sans-serif;
}
.a-strategy__item--low  .a-strategy__label { color: #9a6700; }
.a-strategy__item--mid  .a-strategy__label { color: var(--lb); }
.a-strategy__item--high .a-strategy__label { color: #1d6b3a; }

/* Part ラベル（構成セクション用サブヘッド） */
.a-part-head {
  display: flex;
  align-items: center;
  gap: .65rem;
  margin: 1.8rem 0 .7rem;
}
.a-part-head__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  min-width: 4.2rem;
  padding: .28rem .7rem;
  background: var(--blue);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  border-radius: 4px;
  font-family: 'Raleway', sans-serif;
  white-space: nowrap;
}
.a-part-head__title {
  font-size: .97rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.4;
}

@media (max-width: 640px) {
  .a-strategy__item { padding: .7rem .95rem; font-size: .9rem; }
  .a-part-head { margin-top: 1.4rem; }
}
