.forecast-section {
  margin: 34px 0 28px;
  padding: 0 0 8px;
  border-top: 1px solid var(--line);
}

.forecast-heading {
  width: fit-content;
  margin: 28px 0 22px;
  padding: 11px 16px 10px;
  border: 1px solid rgba(255, 185, 82, .62);
  border-radius: 3px;
  background: #080b10;
  box-shadow: 0 0 24px rgba(255,185,82,.16), inset 0 0 0 1px rgba(255,255,255,.05);
}

.forecast-heading span {
  display: block;
  color: #ffbf57;
  font-size: .72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.forecast-heading h2 {
  margin: 2px 0 0;
  color: #fff;
  font-size: clamp(1.45rem, 2.1vw, 2.3rem);
  line-height: .95;
}

.forecast-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.forecast-card {
  min-height: 230px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: color-mix(in srgb, var(--panel) 94%, transparent);
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
}

.forecast-top {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.forecast-symbol {
  font-size: .85rem;
  font-weight: 950;
  color: var(--muted);
}

.forecast-name {
  margin-top: 4px;
  font-size: 1.12rem;
  font-weight: 950;
  color: var(--ink);
}

.forecast-target {
  text-align: right;
  min-width: 124px;
}

.forecast-target span,
.forecast-label {
  display: block;
  color: var(--muted);
  font-size: .72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.forecast-target strong {
  display: block;
  margin-top: 4px;
  color: var(--green);
  font-size: 1.52rem;
  line-height: 1;
  text-shadow: 0 0 18px color-mix(in srgb, var(--green) 30%, transparent);
}

.forecast-range {
  margin: 18px 0 16px;
}

.forecast-track {
  position: relative;
  height: 10px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--line) 65%, transparent);
  overflow: hidden;
}

.forecast-track-fill {
  position: absolute;
  inset: 0 auto 0 0;
  width: var(--forecast-width, 50%);
  border-radius: inherit;
  background: linear-gradient(90deg, #2ed3a3, #ffbf57);
  box-shadow: 0 0 18px rgba(46,211,163,.22);
}

.forecast-prices {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  margin-top: 9px;
  color: var(--muted);
  font-size: .76rem;
  font-weight: 800;
}

.forecast-line {
  margin-top: 14px;
  color: var(--ink);
  font-size: .92rem;
  line-height: 1.45;
}

.forecast-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: .76rem;
  line-height: 1.35;
}

.forecast-nav-link {
  cursor: pointer;
}

@media (max-width: 1180px) {
  .forecast-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 720px) {
  .forecast-grid { grid-template-columns: 1fr; }
}
