.poikatsu-strict-cta {
  --pscta-ink: #173b3b;
  --pscta-muted: #5d6f70;
  --pscta-line: #dce9e5;
  --pscta-mint: #31c4a7;
  --pscta-yellow: #f8ca36;
  --pscta-error: #b43b31;
  width: min(100%, 760px);
  margin: 24px auto;
  padding: 18px;
  border: 1px solid var(--pscta-line);
  border-radius: 14px;
  background: #fff;
  color: var(--pscta-ink);
  box-shadow: 0 6px 18px rgba(7, 63, 68, .055);
}

.poikatsu-strict-cta,
.poikatsu-strict-cta * { box-sizing: border-box; min-width: 0; }

.poikatsu-strict-cta__scope {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 4px 10px;
  align-items: center;
  margin-bottom: 15px;
  padding: 11px 13px;
  border: 1px solid #ead38a;
  border-radius: 10px;
  background: #fff9df;
}

.poikatsu-strict-cta__scope span {
  display: inline-flex;
  min-height: 24px;
  align-items: center;
  border-radius: 999px;
  padding: 2px 8px;
  background: var(--pscta-yellow);
  font-size: 11px;
  font-weight: 900;
}

.poikatsu-strict-cta__scope strong { font-size: 14px; }
.poikatsu-strict-cta__scope small { grid-column: 2; color: var(--pscta-muted); font-size: 11px; }
.poikatsu-strict-cta h2 { margin: 0 0 10px; color: var(--pscta-ink); font-size: 20px; line-height: 1.4; }
.poikatsu-strict-cta p { color: var(--pscta-muted); }

.poikatsu-strict-cta__items {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.poikatsu-strict-cta__items li {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 5px 12px;
  padding: 13px;
  border: 1px solid var(--pscta-line);
  border-radius: 10px;
}

.poikatsu-strict-cta__items li div { display: grid; }
.poikatsu-strict-cta__items li div span { color: var(--pscta-muted); font-size: 11px; }
.poikatsu-strict-cta__items li > b { color: #087362; font-size: 14px; }
.poikatsu-strict-cta__items li > p { grid-column: 1 / -1; margin: 0; font-size: 12px; }
.poikatsu-strict-cta__items li > a {
  display: inline-flex;
  grid-column: 1 / -1;
  min-height: 44px;
  width: fit-content;
  align-items: center;
  font-weight: 800;
}

.poikatsu-strict-cta__state {
  padding: 15px;
  border: 1px solid var(--pscta-line);
  border-left: 4px solid var(--pscta-yellow);
  border-radius: 10px;
  background: #f7fbfa;
}

.poikatsu-strict-cta.is-error .poikatsu-strict-cta__state {
  border-left-color: var(--pscta-error);
  background: #fff1ee;
}

.poikatsu-strict-cta__state p { margin: 0; font-size: 13px; }

.poikatsu-strict-cta__all,
.poikatsu-strict-cta__retry {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  border: 1px solid var(--pscta-ink);
  border-radius: 9px;
  padding: 9px 14px;
  color: var(--pscta-ink);
  font-size: 13px;
  font-weight: 900;
  text-decoration: none;
}

.poikatsu-strict-cta__retry { margin-right: 8px; background: var(--pscta-ink); color: #fff; }

.poikatsu-strict-cta :focus-visible {
  outline: 3px solid var(--pscta-yellow);
  outline-offset: 3px;
}

@media (max-width: 520px) {
  .poikatsu-strict-cta { padding: 14px; }
  .poikatsu-strict-cta__scope { grid-template-columns: 1fr; }
  .poikatsu-strict-cta__scope small { grid-column: 1; }
  .poikatsu-strict-cta__items li { grid-template-columns: 1fr; }
  .poikatsu-strict-cta__items li > p,
  .poikatsu-strict-cta__items li > a { grid-column: 1; }
  .poikatsu-strict-cta__all,
  .poikatsu-strict-cta__retry { width: 100%; }
}
