.sidebar-widget {
  background: #f7f6f4;
  padding: 1.2rem;
  border-radius: 10px;
  font-family: 'Lora', serif;
  color: #222;
  box-shadow: 0 1px 3px rgba(0,0,0,0.05);
  margin-bottom: 1rem;
}

.sidebar-widget h4 {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: 0.6rem;
  color: #1a1a1a;
  font-size: 1.1rem;
}

.sidebar-widget p {
  line-height: 1.5;
  margin-bottom: 0.8rem;
  color: #333;
  font-size: 0.95rem;
}

.sidebar-btn {
  display: inline-block;
  background: #16a34a;
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  transition: all 0.25s ease;
  border: none;
  cursor: pointer;
}

.sidebar-btn:hover {
  background: #15803d;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(22, 163, 74, 0.3);
}

.sidebar-widget blockquote {
  margin: 0;
  font-style: italic;
  font-size: 1rem;
  line-height: 1.6;
}

.sidebar-widget blockquote p {
  margin-bottom: 0.5rem;
  color: #2d3748;
}

.sidebar-widget blockquote footer {
  text-align: right;
  font-size: 0.9rem;
  color: #555;
  margin-top: 0.5rem;
  font-style: normal;
  font-weight: 500;
}

/* Mobile Optimierung */
@media (max-width: 768px) {
  .sidebar-widget {
    padding: 1rem;
    margin-bottom: 0.5rem;
  }
  
  .sidebar-widget h4 {
    font-size: 1rem;
  }
  
  .sidebar-widget p {
    font-size: 0.9rem;
  }
  
  .sidebar-btn {
    width: 100%;
    text-align: center;
    padding: 0.6rem 1rem;
  }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
  .sidebar-widget {
    background: #2d3748;
    color: #e2e8f0;
  }
  
  .sidebar-widget h4 {
    color: #f7fafc;
  }
  
  .sidebar-widget p {
    color: #cbd5e0;
  }
  
  .sidebar-widget blockquote p {
    color: #e2e8f0;
  }
  
  .sidebar-widget blockquote footer {
    color: #a0aec0;
  }
}

