/* Styles for the chocolate market simulator embedded in the blog post.
 *
 * Note: on the live Podpage site these class names had no CSS behind them at
 * all, so the widget rendered as an unstyled stack of controls. This gives it
 * the site's own visual language instead.
 */

.post-content-body .chart-section {
  background: var(--card-bg-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-card);
  box-shadow: var(--card-shadow-style);
  padding: 20px;
  margin: 24px 0;
  text-align: center;
}
.post-content-body .price-value {
  font-family: var(--heading-font);
  font-size: 40px;
  color: var(--accent-3-color);
}
.post-content-body .controls-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin: 24px 0;
}
.post-content-body .control-group {
  background: var(--bg-component-color);
  border: 1px solid var(--border-color);
  border-radius: var(--border-radius-card);
  padding: 16px;
}
.post-content-body .control-group h4 {
  font-family: var(--heading-font);
  text-transform: uppercase;
  font-size: 15px;
  margin: 0 0 12px;
}
.post-content-body .slider-container { margin-bottom: 14px; }
.post-content-body .slider-label {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  font-size: 14px;
  margin-bottom: 4px;
}
.post-content-body .slider { width: 100%; accent-color: var(--primary-color); }
.post-content-body .impact-indicator {
  font-size: 11px;
  text-transform: uppercase;
  padding: 1px 8px;
  border-radius: var(--border-radius-button);
  background: var(--badge-bg-color);
}
.post-content-body .impact-high { background: var(--accent-3-color); color: #fff; }
.post-content-body .market-insights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}
.post-content-body .insight-card {
  background: var(--primary-light-color);
  border-radius: var(--border-radius-card);
  padding: 16px;
}
.post-content-body .insight-card h4 {
  font-family: var(--heading-font);
  text-transform: uppercase;
  font-size: 15px;
}
