/* Ads & Quotes Widget Styles */
.content-widget {
  background: linear-gradient(145deg, var(--card) 0%, rgba(17, 17, 24, 0.8) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  position: relative; overflow: hidden;
}
.content-widget::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.5;
}

.widget-quote { background: linear-gradient(145deg, rgba(0, 212, 170, 0.05) 0%, var(--card) 100%); }
.widget-tip { background: linear-gradient(145deg, rgba(255, 107, 53, 0.05) 0%, var(--card) 100%); }
.widget-fact { background: linear-gradient(145deg, rgba(168, 85, 247, 0.05) 0%, var(--card) 100%); }
.widget-learning { background: linear-gradient(145deg, rgba(96, 165, 250, 0.05) 0%, var(--card) 100%); }

.quote-text { font-size: 1.1rem; line-height: 1.6; color: var(--fg); font-style: italic; }
.quote-author { color: var(--fg-muted); font-size: 0.9rem; margin-top: 0.5rem; }

.section-divider { 
  height: 1px; 
  background: linear-gradient(90deg, transparent, var(--border), transparent); 
}