button.term-help {
  width: 18px;
  height: 18px;
  border: 1px solid #b6c6d6;
  border-radius: 50%;
  background: #ffffff;
  color: #0f4c81;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
  cursor: help;
  position: relative;
}
button.term-help:hover::after,
button.term-help:focus::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translateX(-50%);
  width: min(280px, 78vw);
  padding: 9px 10px;
  border: 1px solid #c9d6e2;
  border-radius: 8px;
  background: #17202a;
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, 0.18);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.5;
  white-space: normal;
  z-index: 20;
}
.market-judgment {
  background: #ffffff;
  border: 1px solid #d7e2ea;
  border-radius: 8px;
  padding: 18px 20px;
  margin: 18px 0;
  box-shadow: 0 1px 2px rgba(16, 24, 40, 0.04);
}
.market-judgment-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}
.market-judgment-title {
  font-size: 26px;
  line-height: 1.2;
  font-weight: 900;
  color: #0f766e;
}
.market-judgment-link {
  color: #0f4c81;
  font-weight: 850;
  text-decoration: none;
  white-space: nowrap;
}
.market-judgment-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 12px;
  margin-top: 16px;
}
.market-summary-text {
  margin: 16px 0 0;
  color: #334155;
  font-weight: 650;
  line-height: 1.7;
}
.market-forces {
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 1fr));
  gap: 10px;
  margin-top: 14px;
}
.market-forces div {
  background: #f8fafc;
  border: 1px solid #e5edf5;
  border-radius: 8px;
  padding: 10px 12px;
  color: #334155;
  font-weight: 700;
}
.market-forces span {
  display: block;
  color: #687385;
  font-size: 12px;
  margin-bottom: 4px;
}
@media (max-width: 760px) {
  .market-judgment-header,
  .market-forces {
    display: block;
  }
  .market-judgment-link {
    display: inline-block;
    margin-top: 8px;
  }
  .market-judgment-grid {
    grid-template-columns: 1fr;
  }
  .market-forces div + div {
    margin-top: 10px;
  }
}
