/* ================================================================
   writing-task2/productive-struggle — local.css
   ================================================================ */

/* ----------------------------------------------------------------
   研究データカード
   ---------------------------------------------------------------- */
.ps-study {
  background: rgba(4,63,109,.04);
  border-left: 3px solid var(--lb);
  border-radius: 8px;
  padding: 1.1rem 1.2rem 1rem;
  margin: 1.2rem 0 1.4rem;
}
.ps-study__label {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--pw);
  background: var(--lb);
  border-radius: 3px;
  padding: .15rem .55rem;
  margin-bottom: .6rem;
  font-family: 'Noto Sans JP', sans-serif;
}
.ps-study__title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1.6;
  margin: 0 0 .6rem;
}
.ps-study__points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .4rem;
}
.ps-study__points li {
  font-size: .85rem;
  line-height: 1.7;
  color: var(--black);
  padding-left: 1rem;
  position: relative;
}
.ps-study__points li::before {
  content: '';
  position: absolute;
  left: .1rem;
  top: .62em;
  width: .35rem;
  height: .35rem;
  border-radius: 50%;
  background: var(--lb);
}
.ps-study__source {
  font-size: .76rem;
  color: var(--gray3);
  margin: .7rem 0 0;
  padding-top: .6rem;
  border-top: 1px dashed rgba(70,162,218,.25);
}
