
    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/7.0.0/css/all.min.css');

:root {
  --color-bg-dark-primary: #0a0f1e;
  --color-bg-dark-secondary: #0f1729;
  --color-bg-dark-tertiary: #1a2847;
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-card-dark: rgba(59, 130, 246, 0.08);
  
  --color-text-light: #ffffff;
  --color-text-light-secondary: #e2e8f0;
  --color-text-light-muted: #94a3b8;
  --color-text-dark: #0f172a;
  --color-text-dark-secondary: #374151;
  --color-text-dark-muted: #6b7280;
  
  --color-primary: #3b82f6;
  --color-primary-hover: #2563eb;
  --color-primary-light: #60a5fa;
  --color-secondary: #06b6d4;
  --color-accent-gold: #f59e0b;
  --color-accent-green: #10b981;
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 3.75rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}

h4 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

section {
  overflow: hidden;
  position: relative;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--color-primary);
  color: #ffffff;
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #ffffff;
}

.btn-secondary {
  background: var(--color-secondary);
  color: #ffffff;
}

.btn-secondary:hover {
  background: #0891b2;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-light {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.fas {
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  h3 {
    font-size: 1.875rem;
  }

  h4 {
    font-size: 1.5rem;
  }

  p {
    font-size: 1.0625rem;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 3.75rem;
  }

  h2 {
    font-size: 3rem;
  }

  h3 {
    font-size: 2.25rem;
  }

  h4 {
    font-size: 1.875rem;
  }

  p {
    font-size: 1.125rem;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.875rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.25rem;
  }

  p {
    font-size: 0.875rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }
}

.hero-section {
  background: var(--color-bg-dark-primary);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-section h1 {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  font-size: 3.75rem;
}

.hero-section p {
  color: var(--color-text-light-secondary);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number {
  color: var(--color-primary-light);
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.stat-label {
  color: var(--color-text-light-muted);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (min-width: 768px) {
  .hero-section {
    padding: 8rem 0;
  }

  .hero-content {
    grid-template-columns: 1fr 1fr;
  }

  .hero-section h1 {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-section {
    padding: 10rem 0;
  }

  .hero-section h1 {
    font-size: 3.75rem;
  }
}

@media (max-width: 767px) {
  .hero-section {
    padding: 4rem 0;
  }

  .hero-section h1 {
    font-size: 2.25rem;
  }

  .hero-section p {
    font-size: 1rem;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
  }

  .stat-number {
    font-size: 1.875rem;
  }
}

.features-section {
  background: var(--color-bg-light-primary);
  padding: 6rem 0;
  overflow: hidden;
}

.features-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.features-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.features-section h2 {
  color: var(--color-text-dark);
  margin-bottom: 1rem;
}

.features-section > .container > .features-content > p {
  color: var(--color-text-dark-secondary);
  text-align: center;
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-xl);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-lg);
}

.feature-card h3 {
  color: var(--color-text-dark);
  font-size: 1.5rem;
}

.feature-card p {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .features-section {
    padding: 8rem 0;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .feature-card {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .features-section {
    padding: 10rem 0;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 767px) {
  .features-section {
    padding: 4rem 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .features-section h2 {
    font-size: 1.875rem;
  }

  .feature-card h3 {
    font-size: 1.25rem;
  }

  .feature-card p {
    font-size: 0.875rem;
  }
}

.about-section {
  background: var(--color-bg-dark-secondary);
  padding: 6rem 0;
  overflow: hidden;
  position: relative;
}

.about-section::before {
  content: '';
  position: absolute;
  top: -300px;
  right: -300px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-section h2 {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.about-section p {
  color: var(--color-text-light-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-section .btn {
  width: fit-content;
}

.about-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefit-item .fas {
  color: var(--color-secondary);
  font-size: 1.25rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.benefit-item span {
  color: var(--color-text-light-secondary);
  font-size: 0.95rem;
}

.about-image-placeholder {
  width: 100%;
  height: 400px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(6, 182, 212, 0.2) 100%);
  border-radius: var(--radius-xl);
  border: 2px solid rgba(59, 130, 246, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-light-muted);
  font-size: 1rem;
}

@media (min-width: 768px) {
  .about-section {
    padding: 8rem 0;
  }

  .about-content {
    grid-template-columns: 1fr 1fr;
  }

  .about-image-placeholder {
    height: 450px;
  }
}

@media (min-width: 1024px) {
  .about-section {
    padding: 10rem 0;
  }

  .about-image-placeholder {
    height: 500px;
  }
}

@media (max-width: 767px) {
  .about-section {
    padding: 4rem 0;
  }

  .about-section h2 {
    font-size: 1.875rem;
  }

  .about-section p {
    font-size: 0.95rem;
  }

  .about-image-placeholder {
    height: 300px;
  }
}

.cta-section {
  background: var(--color-bg-dark-primary);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -400px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-section::after {
  content: '';
  position: absolute;
  bottom: -300px;
  right: -300px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 700px;
  margin: 0 auto;
}

.cta-section h2 {
  color: var(--color-text-light);
  font-size: 2.5rem;
}

.cta-section p {
  color: var(--color-text-light-secondary);
  font-size: 1.125rem;
  margin: 0;
}

.cta-button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .cta-section {
    padding: 8rem 0;
  }

  .cta-section h2 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .cta-section {
    padding: 10rem 0;
  }
}

@media (max-width: 767px) {
  .cta-section {
    padding: 4rem 0;
  }

  .cta-section h2 {
    font-size: 1.875rem;
  }

  .cta-section p {
    font-size: 1rem;
  }

  .cta-button-group {
    flex-direction: column;
  }

  .cta-button-group .btn {
    width: 100%;
  }
}

.pricing-section {
  background: var(--color-bg-light-primary);
  padding: 6rem 0;
  overflow: hidden;
}

.pricing-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.pricing-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.pricing-section h2 {
  color: var(--color-text-dark);
}

.pricing-section > .container > .pricing-content > p {
  color: var(--color-text-dark-secondary);
  text-align: center;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.pricing-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2.5rem;
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-xl);
  border: 2px solid #e2e8f0;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card.featured {
  border-color: var(--color-primary);
  background: var(--color-bg-light-primary);
  transform: scale(1.05);
}

.pricing-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}

.pricing-badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-primary);
  color: #ffffff;
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card h3 {
  color: var(--color-text-dark);
  font-size: 1.5rem;
  margin: 0;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 0.5rem;
}

.price-amount {
  color: var(--color-primary);
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.price-currency {
  color: var(--color-text-dark-secondary);
  font-size: 1.25rem;
}

.price-period {
  color: var(--color-text-dark-muted);
  font-size: 0.9rem;
}

.pricing-description {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  margin: 0;
}

.pricing-features {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style: none;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
}

.pricing-features .fas {
  color: var(--color-secondary);
  font-size: 1rem;
  flex-shrink: 0;
}

.pricing-card .btn {
  margin-top: auto;
}

@media (min-width: 768px) {
  .pricing-section {
    padding: 8rem 0;
  }

  .pricing-grid {
    gap: 2.5rem;
  }

  .pricing-card {
    padding: 3rem;
  }

  .pricing-card.featured {
    transform: scale(1.08);
  }
}

@media (min-width: 1024px) {
  .pricing-section {
    padding: 10rem 0;
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 767px) {
  .pricing-section {
    padding: 4rem 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .pricing-card {
    padding: 1.5rem;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .pricing-section h2 {
    font-size: 1.875rem;
  }

  .price-amount {
    font-size: 2rem;
  }
}

.testimonials-section {
  background: var(--color-bg-dark-tertiary);
  padding: 6rem 0;
  overflow: hidden;
  position: relative;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: -250px;
  right: -250px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.testimonials-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.testimonials-section h2 {
  color: var(--color-text-light);
  text-align: center;
  margin-bottom: 1rem;
}

.testimonials-intro {
  color: var(--color-text-light-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 2;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--color-bg-card-dark);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
}

.testimonial-stars {
  display: flex;
  gap: 0.5rem;
}

.testimonial-stars .fas {
  color: var(--color-accent-gold);
  font-size: 1rem;
}

.testimonial-text {
  color: var(--color-text-light-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.author-info h4 {
  color: var(--color-text-light);
  font-size: 1rem;
  margin: 0;
}

.author-info p {
  color: var(--color-text-light-muted);
  font-size: 0.85rem;
  margin: 0;
}

@media (min-width: 768px) {
  .testimonials-section {
    padding: 8rem 0;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .testimonial-card {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .testimonials-section {
    padding: 10rem 0;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 767px) {
  .testimonials-section {
    padding: 4rem 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .testimonials-section h2 {
    font-size: 1.875rem;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }
}

.contact-section {
  background: var(--color-bg-light-primary);
  padding: 6rem 0;
  overflow: hidden;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

.contact-section h2 {
  color: var(--color-text-dark);
  text-align: center;
  margin-bottom: 1rem;
}

.contact-intro {
  color: var(--color-text-dark-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.contact-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
  width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.form-group label {
  color: var(--color-text-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
  padding: 0.875rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: var(--color-text-dark);
  background: var(--color-bg-light-secondary);
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-bg-light-primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--color-primary);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
}

.form-submit-btn:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.form-submit-btn:active {
  transform: translateY(0);
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid #e2e8f0;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-item .fas {
  color: var(--color-primary);
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-lg);
}

.contact-info-item h4 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin: 0;
}

.contact-info-item p {
  color: var(--color-text-dark-secondary);
  margin: 0;
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .contact-section {
    padding: 8rem 0;
  }

  .contact-content {
    gap: 4rem;
  }

  .contact-info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .contact-section {
    padding: 10rem 0;
  }
}

@media (max-width: 767px) {
  .contact-section {
    padding: 4rem 0;
  }

  .contact-section h2 {
    font-size: 1.875rem;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-bg-dark-primary);
  border-top: 2px solid rgba(59, 130, 246, 0.3);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
}

.cookie-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-text {
  color: var(--color-text-light-secondary);
  font-size: 0.9rem;
  text-align: center;
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-buttons .btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .cookie-content {
    flex-direction: row;
    align-items: center;
  }

  .cookie-text {
    text-align: left;
    flex: 1;
  }

  .cookie-buttons {
    flex-wrap: nowrap;
  }
}

@media (max-width: 767px) {
  .cookie-banner {
    padding: 1rem;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-buttons .btn {
    flex: 1;
  }
}
:root {
    --color-bg-dark-primary: #0a0f1e;
    --color-bg-dark-secondary: #0f1729;
    --color-bg-dark-tertiary: #1a2847;
    --color-bg-light-primary: #ffffff;
    --color-bg-light-secondary: #f8fafc;
    --color-bg-card-dark: rgba(59, 130, 246, 0.08);
    --color-text-light: #ffffff;
    --color-text-light-secondary: #e2e8f0;
    --color-text-light-muted: #94a3b8;
    --color-text-dark: #0f172a;
    --color-text-dark-secondary: #374151;
    --color-text-dark-muted: #6b7280;
    --color-primary: #3b82f6;
    --color-primary-hover: #2563eb;
    --color-primary-light: #60a5fa;
    --color-secondary: #06b6d4;
    --color-accent-gold: #f59e0b;
    --color-accent-green: #10b981;
  }

  .header-capital-hub {
    background: linear-gradient(135deg, var(--color-bg-dark-primary) 0%, var(--color-bg-dark-secondary) 100%);
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    position: relative;
    z-index: 1000;
    padding: 1rem 0;
  }

  .header-capital-hub-container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
  }

  .header-capital-hub-logo {
    flex-shrink: 0;
  }

  .header-capital-hub-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--color-text-light);
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.5px;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .header-capital-hub-brand:hover {
    color: var(--color-primary-light);
  }

  .header-capital-hub-brand i {
    font-size: 1.5rem;
    color: var(--color-primary);
  }

  .header-capital-hub-desktop-nav {
    display: none;
    align-items: center;
    gap: 2.5rem;
    flex: 1;
  }

  .header-capital-hub-nav-link {
    color: var(--color-text-light-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
  }

  .header-capital-hub-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 300ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .header-capital-hub-nav-link:hover {
    color: var(--color-text-light);
  }

  .header-capital-hub-nav-link:hover::after {
    width: 100%;
  }

  .header-capital-hub-cta-button {
    display: none;
    padding: 0.75rem 1.75rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    color: var(--color-text-dark);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  }

  .header-capital-hub-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
  }

  .header-capital-hub-cta-button:active {
    transform: translateY(0);
  }

  .header-capital-hub-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: var(--color-text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
  }

  .header-capital-hub-mobile-toggle:hover {
    color: var(--color-primary-light);
  }

  .header-capital-hub-mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, var(--color-bg-dark-primary) 0%, var(--color-bg-dark-secondary) 100%);
    padding-top: 5rem;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 400ms cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
    z-index: 999;
  }

  .header-capital-hub-mobile-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }

  .header-capital-hub-mobile-header {
    padding: 1.5rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    display: flex;
    justify-content: flex-end;
  }

  .header-capital-hub-mobile-close {
    background: none;
    border: none;
    color: var(--color-text-light);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
  }

  .header-capital-hub-mobile-close:hover {
    color: var(--color-primary-light);
  }

  .header-capital-hub-mobile-links {
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .header-capital-hub-mobile-link {
    color: var(--color-text-light-secondary);
    text-decoration: none;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgba(59, 130, 246, 0.05);
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
  }

  .header-capital-hub-mobile-link:hover {
    background: rgba(59, 130, 246, 0.1);
    color: var(--color-text-light);
    padding-left: 2rem;
  }

  .header-capital-hub-mobile-cta {
    display: block;
    margin: 2rem 1.5rem 1.5rem;
    padding: 1rem 1.75rem;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-hover) 100%);
    color: var(--color-text-dark);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    text-align: center;
    letter-spacing: 0.3px;
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
  }

  .header-capital-hub-mobile-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.4);
  }

  @media (min-width: 768px) {
    .header-capital-hub {
      padding: 1.25rem 0;
    }

    .header-capital-hub-container {
      padding: 0 2rem;
    }

    .header-capital-hub-brand {
      font-size: 1.5rem;
    }

    .header-capital-hub-brand i {
      font-size: 1.75rem;
    }

    .header-capital-hub-desktop-nav {
      display: flex;
    }

    .header-capital-hub-nav-link {
      font-size: 1rem;
    }

    .header-capital-hub-cta-button {
      display: block;
    }

    .header-capital-hub-mobile-toggle {
      display: none;
    }

    .header-capital-hub-mobile-menu {
      display: none !important;
    }
  }

  @media (min-width: 1024px) {
    .header-capital-hub-container {
      padding: 0 3rem;
    }

    .header-capital-hub-desktop-nav {
      gap: 3rem;
    }

    .header-capital-hub-nav-link {
      font-size: 1.025rem;
    }

    .header-capital-hub-cta-button {
      padding: 0.875rem 2rem;
      font-size: 0.95rem;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .header-capital-hub-brand,
    .header-capital-hub-nav-link,
    .header-capital-hub-nav-link::after,
    .header-capital-hub-cta-button,
    .header-capital-hub-mobile-toggle,
    .header-capital-hub-mobile-menu,
    .header-capital-hub-mobile-link,
    .header-capital-hub-mobile-cta {
      transition: none !important;
      animation: none !important;
    }
  }

    @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root {
  --color-bg-dark-primary: #0a0f1e;
  --color-bg-dark-secondary: #0f1729;
  --color-bg-dark-tertiary: #1a2847;
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-card-dark: rgba(59, 130, 246, 0.08);
  
  --color-text-light: #ffffff;
  --color-text-light-secondary: #e2e8f0;
  --color-text-light-muted: #94a3b8;
  --color-text-dark: #0f172a;
  --color-text-dark-secondary: #374151;
  --color-text-dark-muted: #6b7280;
  
  --color-primary: #3b82f6;
  --color-primary-hover: #2563eb;
  --color-primary-light: #60a5fa;
  --color-secondary: #06b6d4;
  --color-accent-gold: #f59e0b;
  --color-accent-green: #10b981;
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 3.75rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}

h4 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

section {
  overflow: hidden;
  position: relative;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-align: center;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--color-primary);
  color: #000000;
}

.btn-primary:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-outline {
  background: transparent;
  border: 2px solid var(--color-primary);
  color: var(--color-primary);
}

.btn-outline:hover {
  background: var(--color-primary);
  color: #000000;
}

.btn-secondary {
  background: var(--color-secondary);
  color: #000000;
}

.btn-secondary:hover {
  background: #0891b2;
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.btn-light {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.btn-light:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
}

.fas {
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  h3 {
    font-size: 1.875rem;
  }

  h4 {
    font-size: 1.5rem;
  }

  p {
    font-size: 1.0625rem;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 3.75rem;
  }

  h2 {
    font-size: 3rem;
  }

  h3 {
    font-size: 2.25rem;
  }

  h4 {
    font-size: 1.875rem;
  }

  p {
    font-size: 1.125rem;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.875rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.25rem;
  }

  p {
    font-size: 0.875rem;
  }

  .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
  }
}

.trading-hub .hero-section {
  background: var(--color-bg-dark-primary);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.hero-glow-primary {
  position: absolute;
  top: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.hero-glow-secondary {
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.hero-accent-shape {
  position: absolute;
  top: 100px;
  left: 50px;
  width: 300px;
  height: 300px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

.hero-float-element-1 {
  position: absolute;
  top: 200px;
  right: 100px;
  width: 200px;
  height: 150px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transform: rotate(-15deg);
  z-index: 2;
  pointer-events: none;
}

.hero-float-element-2 {
  position: absolute;
  bottom: 150px;
  left: 100px;
  width: 180px;
  height: 180px;
  background: rgba(34, 211, 238, 0.05);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-gradient-mesh {
  position: absolute;
  top: 50%;
  left: 0;
  width: 800px;
  height: 800px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(6, 182, 212, 0.05) 100%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.hero-corner-accent {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.hero-light-ray {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 2px;
  height: 300px;
  background: linear-gradient(180deg, transparent, rgba(96, 165, 250, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.trading-hub .hero-section h1 {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  font-size: 3.75rem;
}

.trading-hub .hero-section p {
  color: var(--color-text-light-secondary);
  font-size: 1.25rem;
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number {
  color: var(--color-primary-light);
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.stat-label {
  color: var(--color-text-light-muted);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (min-width: 768px) {
  .trading-hub .hero-section {
    padding: 8rem 0;
  }

  .trading-hub .hero-section h1 {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .trading-hub .hero-section {
    padding: 10rem 0;
  }

  .trading-hub .hero-section h1 {
    font-size: 3.75rem;
  }
}

@media (max-width: 767px) {
  .trading-hub .hero-section {
    padding: 4rem 0;
  }

  .trading-hub .hero-section h1 {
    font-size: 2.25rem;
  }

  .trading-hub .hero-section p {
    font-size: 1rem;
  }

  .hero-cta-group {
    flex-direction: column;
  }

  .hero-cta-group .btn {
    width: 100%;
  }

  .hero-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
  }

  .stat-number {
    font-size: 1.875rem;
  }
}

.trading-hub .features-section {
  background: var(--color-bg-light-primary);
  padding: 6rem 0;
  overflow: hidden;
}

.feature-deco-glow-1 {
  position: absolute;
  top: -300px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.feature-deco-glow-2 {
  position: absolute;
  bottom: -200px;
  right: 100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.feature-deco-shape-1 {
  position: absolute;
  top: 200px;
  left: 50px;
  width: 250px;
  height: 250px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: 2;
  pointer-events: none;
}

.feature-deco-shape-2 {
  position: absolute;
  bottom: 100px;
  right: 50px;
  width: 200px;
  height: 200px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 2;
  pointer-events: none;
}

.feature-deco-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
  z-index: 1;
  pointer-events: none;
}

.feature-deco-accent {
  position: absolute;
  top: 100px;
  right: 200px;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.feature-deco-panel {
  position: absolute;
  bottom: 200px;
  left: 10%;
  width: 180px;
  height: 140px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 10px;
  transform: rotate(8deg);
  z-index: 1;
  pointer-events: none;
}

.features-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.features-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3rem;
}

.trading-hub .features-section h2 {
  color: var(--color-text-dark);
  margin-bottom: 1rem;
}

.trading-hub .features-section > .container > .features-content > p {
  color: var(--color-text-dark-secondary);
  text-align: center;
  font-size: 1.125rem;
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.feature-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-xl);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-lg);
}

.trading-hub .feature-card h3 {
  color: var(--color-text-dark);
  font-size: 1.5rem;
}

.trading-hub .feature-card p {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .trading-hub .features-section {
    padding: 8rem 0;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .feature-card {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .trading-hub .features-section {
    padding: 10rem 0;
  }

  .features-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 767px) {
  .trading-hub .features-section {
    padding: 4rem 0;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .feature-card {
    padding: 1.5rem;
  }

  .trading-hub .features-section h2 {
    font-size: 1.875rem;
  }

  .trading-hub .feature-card h3 {
    font-size: 1.25rem;
  }

  .trading-hub .feature-card p {
    font-size: 0.875rem;
  }
}

.trading-hub .about-section {
  background: var(--color-bg-dark-secondary);
  padding: 6rem 0;
  overflow: hidden;
  position: relative;
}

.about-glow-primary {
  position: absolute;
  top: -300px;
  right: -300px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.about-glow-secondary {
  position: absolute;
  bottom: -200px;
  left: 50px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.about-shape-accent {
  position: absolute;
  top: 100px;
  left: 100px;
  width: 300px;
  height: 300px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

.about-float-panel {
  position: absolute;
  bottom: 200px;
  right: 100px;
  width: 200px;
  height: 160px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transform: rotate(12deg);
  z-index: 2;
  pointer-events: none;
}

.about-line-element {
  position: absolute;
  top: 30%;
  right: 0;
  width: 2px;
  height: 250px;
  background: linear-gradient(180deg, transparent, rgba(6, 182, 212, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

.about-corner-glow {
  position: absolute;
  top: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.about-mesh-gradient {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: linear-gradient(225deg, rgba(59, 130, 246, 0.05) 0%, rgba(6, 182, 212, 0.08) 100%);
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.trading-hub .about-section h2 {
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
}

.trading-hub .about-section p {
  color: var(--color-text-light-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.trading-hub .about-section .btn {
  width: fit-content;
}

.about-benefits {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 2rem;
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.benefit-item .fas {
  color: var(--color-secondary);
  font-size: 1.25rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.benefit-item span {
  color: var(--color-text-light-secondary);
  font-size: 0.95rem;
}

.about-image-block {
  width: 100%;
}

.about-featured-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  object-fit: cover;
}

@media (min-width: 768px) {
  .trading-hub .about-section {
    padding: 8rem 0;
  }

  .about-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (min-width: 1024px) {
  .trading-hub .about-section {
    padding: 10rem 0;
  }
}

@media (max-width: 767px) {
  .trading-hub .about-section {
    padding: 4rem 0;
  }

  .trading-hub .about-section h2 {
    font-size: 1.875rem;
  }

  .trading-hub .about-section p {
    font-size: 0.95rem;
  }
}

.trading-hub .approaches-section {
  background: var(--color-bg-light-primary);
  padding: 6rem 0;
  overflow: hidden;
}

.approach-deco-glow {
  position: absolute;
  top: -300px;
  left: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.approach-deco-shape-1 {
  position: absolute;
  top: 100px;
  right: 50px;
  width: 280px;
  height: 280px;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  z-index: 2;
  pointer-events: none;
}

.approach-deco-shape-2 {
  position: absolute;
  bottom: 150px;
  left: 100px;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.approach-deco-line-1 {
  position: absolute;
  top: 40%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.15), transparent);
  z-index: 1;
  pointer-events: none;
}

.approach-deco-line-2 {
  position: absolute;
  bottom: 30%;
  right: 0;
  width: 2px;
  height: 200px;
  background: linear-gradient(180deg, transparent, rgba(6, 182, 212, 0.25), transparent);
  z-index: 1;
  pointer-events: none;
}

.approach-accent-panel {
  position: absolute;
  top: 200px;
  right: 100px;
  width: 180px;
  height: 140px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 10px;
  transform: rotate(-10deg);
  z-index: 1;
  pointer-events: none;
}

.approach-float-element {
  position: absolute;
  bottom: 100px;
  right: 10%;
  width: 150px;
  height: 150px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.approaches-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  z-index: 10;
}

.trading-hub .approaches-section h2 {
  color: var(--color-text-dark);
  text-align: center;
}

.trading-hub .approaches-section > .container > .approaches-content > p {
  color: var(--color-text-dark-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.approaches-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.approach-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-xl);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.approach-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-secondary);
}

.trading-hub .approach-card h3 {
  color: var(--color-text-dark);
  font-size: 1.5rem;
}

.trading-hub .approach-card p {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  margin: 0;
}

.approach-features {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.approach-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text-dark-secondary);
  font-size: 0.9rem;
}

.approach-features .fas {
  color: var(--color-secondary);
  font-size: 0.9rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .trading-hub .approaches-section {
    padding: 8rem 0;
  }

  .approaches-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .approach-card {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .trading-hub .approaches-section {
    padding: 10rem 0;
  }

  .approaches-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 767px) {
  .trading-hub .approaches-section {
    padding: 4rem 0;
  }

  .approaches-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .approach-card {
    padding: 1.5rem;
  }

  .trading-hub .approaches-section h2 {
    font-size: 1.875rem;
  }

  .trading-hub .approach-card h3 {
    font-size: 1.25rem;
  }
}

.trading-hub .posts-section {
  background: var(--color-bg-light-primary);
  padding: 6rem 0;
  overflow: hidden;
}

.posts-glow-1 {
  position: absolute;
  top: -300px;
  right: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.posts-glow-2 {
  position: absolute;
  bottom: -200px;
  left: 50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.posts-shape-accent {
  position: absolute;
  top: 150px;
  left: 100px;
  width: 250px;
  height: 250px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

.posts-float-card {
  position: absolute;
  bottom: 200px;
  right: 100px;
  width: 200px;
  height: 150px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  transform: rotate(15deg);
  z-index: 1;
  pointer-events: none;
}

.posts-line-decoration {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.15), transparent);
  z-index: 1;
  pointer-events: none;
}

.posts-corner-element {
  position: absolute;
  top: 50px;
  right: 50px;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.posts-mesh-bg {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 600px;
  height: 600px;
  background: linear-gradient(225deg, rgba(6, 182, 212, 0.05) 0%, rgba(59, 130, 246, 0.06) 100%);
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
}

.posts-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  z-index: 10;
}

.posts-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.trading-hub .posts-section h2 {
  color: var(--color-text-dark);
}

.trading-hub .posts-section > .container > .posts-content > .posts-header > p {
  color: var(--color-text-dark-secondary);
  font-size: 1.125rem;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.post-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-xl);
  border: 1px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.3s ease;
}

.post-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.post-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.post-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
}

.trading-hub .post-card h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
}

.trading-hub .post-card p {
  color: var(--color-text-dark-secondary);
  font-size: 0.9rem;
  margin: 0;
}

.post-card .btn {
  width: fit-content;
  margin-top: auto;
}

.posts-cta {
  text-align: center;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .trading-hub .posts-section {
    padding: 8rem 0;
  }

  .posts-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }

  .post-content {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .trading-hub .posts-section {
    padding: 10rem 0;
  }

  .posts-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 767px) {
  .trading-hub .posts-section {
    padding: 4rem 0;
  }

  .posts-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .trading-hub .posts-section h2 {
    font-size: 1.875rem;
  }

  .trading-hub .post-card h3 {
    font-size: 1.125rem;
  }
}

.trading-hub .principles-section {
  background: var(--color-bg-dark-tertiary);
  padding: 6rem 0;
  overflow: hidden;
}

.principles-glow-primary {
  position: absolute;
  top: -300px;
  left: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.principles-glow-secondary {
  position: absolute;
  bottom: -250px;
  right: 100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.principles-shape-1 {
  position: absolute;
  top: 100px;
  right: 50px;
  width: 280px;
  height: 280px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

.principles-shape-2 {
  position: absolute;
  bottom: 150px;
  left: 50px;
  width: 200px;
  height: 200px;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.principles-line-accent {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.15), transparent);
  z-index: 1;
  pointer-events: none;
}

.principles-float-element {
  position: absolute;
  top: 30%;
  right: 10%;
  width: 160px;
  height: 160px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.principles-corner-glow {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.principles-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  z-index: 10;
}

.trading-hub .principles-section h2 {
  color: var(--color-text-light);
  text-align: center;
}

.trading-hub .principles-section > .container > .principles-content > p {
  color: var(--color-text-light-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem;
}

.principles-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.principle-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-xl);
  transition: all 0.3s ease;
}

.principle-item:hover {
  background: rgba(59, 130, 246, 0.08);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
}

.principle-number {
  color: var(--color-primary-light);
  font-size: 2rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.trading-hub .principle-item h3 {
  color: var(--color-text-light);
  font-size: 1.25rem;
}

.trading-hub .principle-item p {
  color: var(--color-text-light-secondary);
  font-size: 0.95rem;
  margin: 0;
}

@media (min-width: 768px) {
  .trading-hub .principles-section {
    padding: 8rem 0;
  }

  .principles-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .principle-item {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .trading-hub .principles-section {
    padding: 10rem 0;
  }

  .principles-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 767px) {
  .trading-hub .principles-section {
    padding: 4rem 0;
  }

  .principles-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .principle-item {
    padding: 1.5rem;
  }

  .trading-hub .principles-section h2 {
    font-size: 1.875rem;
  }

  .trading-hub .principle-item h3 {
    font-size: 1.125rem;
  }
}

.trading-hub .testimonials-section {
  background: var(--color-bg-dark-secondary);
  padding: 6rem 0;
  overflow: hidden;
  position: relative;
}

.testimonials-glow-1 {
  position: absolute;
  top: -250px;
  right: 10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.testimonials-glow-2 {
  position: absolute;
  bottom: -200px;
  left: 100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.testimonials-shape-accent {
  position: absolute;
  top: 100px;
  left: 50px;
  width: 250px;
  height: 250px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

.testimonials-float-panel {
  position: absolute;
  bottom: 250px;
  right: 80px;
  width: 180px;
  height: 140px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  transform: rotate(-8deg);
  z-index: 1;
  pointer-events: none;
}

.testimonials-line-element {
  position: absolute;
  top: 30%;
  right: 0;
  width: 2px;
  height: 200px;
  background: linear-gradient(180deg, transparent, rgba(6, 182, 212, 0.25), transparent);
  z-index: 2;
  pointer-events: none;
}

.testimonials-corner-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.testimonials-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  z-index: 10;
}

.trading-hub .testimonials-section h2 {
  color: var(--color-text-light);
  text-align: center;
}

.testimonials-intro {
  color: var(--color-text-light-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--color-bg-card-dark);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
}

.testimonial-stars {
  display: flex;
  gap: 0.5rem;
}

.testimonial-stars .fas {
  color: var(--color-accent-gold);
  font-size: 1rem;
}

.testimonial-text {
  color: var(--color-text-light-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin: 0;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.trading-hub .author-info h4 {
  color: var(--color-text-light);
  font-size: 1rem;
  margin: 0;
}

.trading-hub .author-info p {
  color: var(--color-text-light-muted);
  font-size: 0.85rem;
  margin: 0;
}

@media (min-width: 768px) {
  .trading-hub .testimonials-section {
    padding: 8rem 0;
  }

  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .testimonial-card {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .trading-hub .testimonials-section {
    padding: 10rem 0;
  }

  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 767px) {
  .trading-hub .testimonials-section {
    padding: 4rem 0;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .testimonial-card {
    padding: 1.5rem;
  }

  .trading-hub .testimonials-section h2 {
    font-size: 1.875rem;
  }

  .testimonial-text {
    font-size: 0.9rem;
  }
}

.trading-hub .cta-section {
  background: var(--color-bg-dark-primary);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.cta-glow-primary {
  position: absolute;
  top: -400px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.cta-glow-secondary {
  position: absolute;
  bottom: -300px;
  right: -300px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.cta-shape-accent {
  position: absolute;
  top: 50px;
  right: 100px;
  width: 280px;
  height: 280px;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

.cta-float-element-1 {
  position: absolute;
  top: 150px;
  left: 100px;
  width: 200px;
  height: 150px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  transform: rotate(10deg);
  z-index: 2;
  pointer-events: none;
}

.cta-float-element-2 {
  position: absolute;
  bottom: 100px;
  right: 80px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.cta-line-decoration {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
  z-index: 1;
  pointer-events: none;
}

.cta-corner-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.cta-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
  text-align: center;
  position: relative;
  z-index: 10;
  max-width: 700px;
  margin: 0 auto;
}

.trading-hub .cta-section h2 {
  color: var(--color-text-light);
  font-size: 2.5rem;
}

.trading-hub .cta-section p {
  color: var(--color-text-light-secondary);
  font-size: 1.125rem;
  margin: 0;
}

.cta-button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .trading-hub .cta-section {
    padding: 8rem 0;
  }

  .trading-hub .cta-section h2 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .trading-hub .cta-section {
    padding: 10rem 0;
  }
}

@media (max-width: 767px) {
  .trading-hub .cta-section {
    padding: 4rem 0;
  }

  .trading-hub .cta-section h2 {
    font-size: 1.875rem;
  }

  .trading-hub .cta-section p {
    font-size: 1rem;
  }

  .cta-button-group {
    flex-direction: column;
  }

  .cta-button-group .btn {
    width: 100%;
  }
}

.trading-hub .contact-section {
  background: var(--color-bg-light-primary);
  padding: 6rem 0;
  overflow: hidden;
}

.contact-glow-1 {
  position: absolute;
  top: -300px;
  left: 10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.contact-glow-2 {
  position: absolute;
  bottom: -200px;
  right: 50px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.contact-shape-1 {
  position: absolute;
  top: 100px;
  right: 100px;
  width: 280px;
  height: 280px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 2;
  pointer-events: none;
}

.contact-shape-2 {
  position: absolute;
  bottom: 150px;
  left: 50px;
  width: 220px;
  height: 220px;
  background: rgba(6, 182, 212, 0.04);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.contact-accent-line {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.15), transparent);
  z-index: 1;
  pointer-events: none;
}

.contact-float-panel {
  position: absolute;
  top: 200px;
  left: 100px;
  width: 180px;
  height: 140px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 10px;
  transform: rotate(-12deg);
  z-index: 1;
  pointer-events: none;
}

.contact-corner-glow {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.contact-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  z-index: 10;
}

.trading-hub .contact-section h2 {
  color: var(--color-text-dark);
  text-align: center;
}

.contact-intro {
  color: var(--color-text-dark-secondary);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.05rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

.contact-form-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.trading-hub .form-group label {
  color: var(--color-text-dark);
  font-weight: 600;
  font-size: 0.95rem;
}

.trading-hub .form-group input,
.trading-hub .form-group textarea {
  padding: 0.875rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-lg);
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: var(--color-text-dark);
  background: var(--color-bg-light-secondary);
  transition: all 0.3s ease;
}

.trading-hub .form-group input:focus,
.trading-hub .form-group textarea:focus {
  outline: none;
  border-color: var(--color-primary);
  background: var(--color-bg-light-primary);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.trading-hub .form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.form-submit-btn {
  width: 100%;
  padding: 1rem;
  background: var(--color-primary);
  color: #000000;
  border: none;
  border-radius: var(--radius-lg);
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: var(--font-primary);
}

.form-submit-btn:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.form-submit-btn:active {
  transform: translateY(0);
}

.contact-info-wrapper {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.trading-hub .contact-info-wrapper h3 {
  color: var(--color-text-dark);
  font-size: 1.5rem;
}

.faq-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e2e8f0;
}

.faq-item:last-child {
  border-bottom: none;
}

.trading-hub .faq-item h4 {
  color: var(--color-text-dark);
  font-size: 1rem;
  margin: 0;
}

.trading-hub .faq-item p {
  color: var(--color-text-dark-secondary);
  font-size: 0.9rem;
  margin: 0;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 2px solid #e2e8f0;
}

.contact-info-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-info-item .fas {
  color: var(--color-primary);
  font-size: 1.5rem;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-lg);
}

.trading-hub .contact-info-item h4 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin: 0;
}

.trading-hub .contact-info-item p {
  color: var(--color-text-dark-secondary);
  margin: 0;
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .trading-hub .contact-section {
    padding: 8rem 0;
  }

  .contact-grid {
    gap: 4rem;
  }

  .contact-info-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .trading-hub .contact-section {
    padding: 10rem 0;
  }
}

@media (max-width: 767px) {
  .trading-hub .contact-section {
    padding: 4rem 0;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .trading-hub .contact-section h2 {
    font-size: 1.875rem;
  }

  .contact-info-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--color-bg-dark-primary);
  border-top: 2px solid rgba(59, 130, 246, 0.3);
  padding: 1.5rem;
  z-index: 9999;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.3);
}

.cookie-content {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
}

.cookie-text {
  color: var(--color-text-light-secondary);
  font-size: 0.9rem;
  text-align: center;
}

.cookie-text a {
  color: var(--color-primary-light);
  text-decoration: underline;
}

.cookie-text a:hover {
  color: var(--color-text-light);
}

.cookie-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.cookie-buttons .btn {
  padding: 0.75rem 1.5rem;
  font-size: 0.9rem;
}

@media (min-width: 768px) {
  .cookie-content {
    flex-direction: row;
    align-items: center;
  }

  .cookie-text {
    text-align: left;
    flex: 1;
  }

  .cookie-buttons {
    flex-wrap: nowrap;
  }
}

@media (max-width: 767px) {
  .cookie-banner {
    padding: 1rem;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-buttons .btn {
    flex: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

    .footer {
    background: var(--color-bg-dark-primary);
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .footer {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .footer {
      padding: 6rem 0;
    }
  }

  .footer .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1rem;
  }

  @media (min-width: 768px) {
    .footer .container {
      padding: 0 2rem;
    }
  }

  .footer-content {
    display: block;
  }

  .footer-about {
    display: block;
    margin-bottom: 2rem;
  }

  @media (min-width: 768px) {
    .footer-about {
      margin-bottom: 3rem;
    }
  }

  .footer-about-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 0.75rem;
    letter-spacing: -0.5px;
  }

  @media (min-width: 768px) {
    .footer-about-title {
      font-size: 1.875rem;
      margin-bottom: 1rem;
    }
  }

  .footer-about-text {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--color-text-light-muted);
    max-width: 420px;
  }

  @media (min-width: 768px) {
    .footer-about-text {
      font-size: 1rem;
      line-height: 1.7;
    }
  }

  .footer-navigation {
    display: block;
    margin-bottom: 2rem;
  }

  @media (min-width: 768px) {
    .footer-navigation {
      margin-bottom: 3rem;
    }
  }

  .footer-nav-title,
  .footer-contact-title,
  .footer-legal-title {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-light);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

  @media (min-width: 768px) {
    .footer-nav-title,
    .footer-contact-title,
    .footer-legal-title {
      font-size: 1.125rem;
      margin-bottom: 1.25rem;
    }
  }

  .footer-nav-links,
  .footer-legal-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  @media (min-width: 768px) {
    .footer-nav-links,
    .footer-legal-links {
      gap: 1rem;
    }
  }

  .footer-link {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    color: var(--color-text-light-muted);
    text-decoration: none;
    transition: all 300ms cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
  }

  @media (min-width: 768px) {
    .footer-link {
      font-size: 0.95rem;
    }
  }

  .footer-link:hover {
    color: var(--color-primary);
    transform: translateX(4px);
  }

  .footer-link:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
  }

  .footer-contact {
    display: block;
    margin-bottom: 2rem;
  }

  @media (min-width: 768px) {
    .footer-contact {
      margin-bottom: 3rem;
    }
  }

  .footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  @media (min-width: 768px) {
    .footer-contact-info {
      gap: 1rem;
    }
  }

  .footer-contact-item {
    font-family: var(--font-primary);
    font-size: 0.875rem;
    color: var(--color-text-light-muted);
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin: 0;
  }

  @media (min-width: 768px) {
    .footer-contact-item {
      font-size: 0.95rem;
      gap: 1rem;
    }
  }

  .footer-contact-item i {
    color: var(--color-primary);
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 0.125rem;
  }

  @media (min-width: 768px) {
    .footer-contact-item i {
      font-size: 1.125rem;
    }
  }

  .footer-legal {
    display: block;
    margin-bottom: 2rem;
  }

  @media (min-width: 768px) {
    .footer-legal {
      margin-bottom: 3rem;
    }
  }

  .footer-copyright {
    display: block;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
  }

  @media (min-width: 768px) {
    .footer-copyright {
      padding-top: 2.5rem;
    }
  }

  .footer-copyright-text {
    font-family: var(--font-primary);
    font-size: 0.8rem;
    color: var(--color-text-light-muted);
    text-align: center;
    margin: 0;
  }

  @media (min-width: 768px) {
    .footer-copyright-text {
      font-size: 0.875rem;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .footer-link {
      transition: none;
    }

    .footer-link:hover {
      transform: none;
    }
  }
    

:root {
  --color-bg-dark-primary: #0a0f1e;
  --color-bg-dark-secondary: #0f1729;
  --color-bg-dark-tertiary: #1a2847;
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-card-dark: rgba(59, 130, 246, 0.08);
  
  --color-text-light: #ffffff;
  --color-text-light-secondary: #e2e8f0;
  --color-text-light-muted: #94a3b8;
  --color-text-dark: #0f172a;
  --color-text-dark-secondary: #374151;
  --color-text-dark-muted: #6b7280;
  
  --color-primary: #3b82f6;
  --color-primary-hover: #2563eb;
  --color-primary-light: #60a5fa;
  --color-secondary: #06b6d4;
  --color-accent-gold: #f59e0b;
  --color-accent-green: #10b981;
  
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
  
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 3.75rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

h3 {
  font-size: 2.25rem;
  margin-bottom: 1.25rem;
}

h4 {
  font-size: 1.875rem;
  margin-bottom: 1rem;
}

p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
}

section {
  overflow: hidden;
  position: relative;
}

.card-link-trading-education {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  background: var(--color-primary);
  color: #ffffff;
  transition: all 0.3s ease;
  gap: 0.5rem;
}

.card-link-trading-education:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

.featured-link-trading-education {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  background: var(--color-primary);
  color: #ffffff;
  transition: all 0.3s ease;
  gap: 0.5rem;
}

.featured-link-trading-education:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  h3 {
    font-size: 1.875rem;
  }

  h4 {
    font-size: 1.5rem;
  }

  p {
    font-size: 1.0625rem;
  }
}

@media (min-width: 1024px) {
  h1 {
    font-size: 3.75rem;
  }

  h2 {
    font-size: 3rem;
  }

  h3 {
    font-size: 2.25rem;
  }

  h4 {
    font-size: 1.875rem;
  }

  p {
    font-size: 1.125rem;
  }
}

@media (max-width: 767px) {
  h1 {
    font-size: 2.25rem;
  }

  h2 {
    font-size: 1.875rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  h4 {
    font-size: 1.25rem;
  }

  p {
    font-size: 0.875rem;
  }

  .card-link-trading-education {
    padding: 0.65rem 1.25rem;
    font-size: 0.8rem;
  }

  .featured-link-trading-education {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
  }
}

.hero-section-trading-education {
  background: var(--color-bg-dark-primary);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.hero-glow-primary-trading-education {
  position: absolute;
  top: 10%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-glow-secondary-trading-education {
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-gradient-mesh-trading-education {
  position: absolute;
  top: 30%;
  left: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  filter: blur(60px);
}

.hero-accent-orb-trading-education {
  position: absolute;
  top: 60%;
  right: 15%;
  width: 300px;
  height: 300px;
  background: rgba(16, 185, 129, 0.05);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  filter: blur(50px);
}

.hero-floating-element-1-trading-education {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 200px;
  height: 150px;
  background: rgba(59, 130, 246, 0.04);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 2;
  pointer-events: none;
}

.hero-floating-element-2-trading-education {
  position: absolute;
  bottom: 15%;
  right: 5%;
  width: 250px;
  height: 200px;
  background: rgba(6, 182, 212, 0.03);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 2;
  pointer-events: none;
}

.hero-line-accent-trading-education {
  position: absolute;
  top: 40%;
  left: 0;
  width: 300px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
  z-index: 2;
  pointer-events: none;
}

.hero-content-trading-education {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  z-index: 10;
}

.hero-text-block-trading-education {
  max-width: 700px;
}

.hero-title-trading-education {
  color: var(--color-text-light);
  font-size: 3.75rem;
}

.hero-description-trading-education {
  color: var(--color-text-light-secondary);
  font-size: 1.25rem;
  line-height: 1.8;
}

.hero-stats-trading-education {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item-trading-education {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number-trading-education {
  color: var(--color-primary-light);
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
}

.stat-label-trading-education {
  color: var(--color-text-light-muted);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (min-width: 768px) {
  .hero-section-trading-education {
    padding: 8rem 0;
  }

  .hero-title-trading-education {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-section-trading-education {
    padding: 10rem 0;
  }

  .hero-title-trading-education {
    font-size: 3.75rem;
  }
}

@media (max-width: 767px) {
  .hero-section-trading-education {
    padding: 4rem 0;
  }

  .hero-title-trading-education {
    font-size: 2.25rem;
  }

  .hero-description-trading-education {
    font-size: 1rem;
  }

  .hero-stats-trading-education {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  }

  .stat-number-trading-education {
    font-size: 1.875rem;
  }
}

.featured-article-section-trading-education {
  background: var(--color-bg-dark-secondary);
  padding: 4rem 0;
  overflow: hidden;
  position: relative;
}

.featured-glow-1-trading-education {
  position: absolute;
  top: -300px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.featured-glow-2-trading-education {
  position: absolute;
  bottom: -200px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.featured-shape-trading-education {
  position: absolute;
  top: 30%;
  right: 10%;
  width: 200px;
  height: 200px;
  background: rgba(245, 158, 11, 0.04);
  border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.featured-content-trading-education {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

.featured-card-trading-education {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2.5rem;
  background: rgba(59, 130, 246, 0.08);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(59, 130, 246, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.featured-card-trading-education:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
}

.featured-image-trading-education {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.featured-text-block-trading-education {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.featured-title-trading-education {
  color: var(--color-text-light);
  font-size: 2rem;
}

.featured-description-trading-education {
  color: var(--color-text-light-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
}

@media (min-width: 768px) {
  .featured-article-section-trading-education {
    padding: 6rem 0;
  }

  .featured-card-trading-education {
    flex-direction: row;
    padding: 3rem;
    gap: 3rem;
    align-items: center;
  }

  .featured-image-trading-education {
    width: 50%;
    height: 350px;
    flex-shrink: 0;
  }

  .featured-text-block-trading-education {
    flex: 1;
  }

  .featured-title-trading-education {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .featured-article-section-trading-education {
    padding: 8rem 0;
  }

  .featured-card-trading-education {
    padding: 4rem;
    gap: 4rem;
  }

  .featured-image-trading-education {
    width: 45%;
    height: 400px;
  }

  .featured-title-trading-education {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .featured-article-section-trading-education {
    padding: 3rem 0;
  }

  .featured-card-trading-education {
    padding: 1.5rem;
    gap: 1.5rem;
  }

  .featured-image-trading-education {
    height: 200px;
  }

  .featured-title-trading-education {
    font-size: 1.5rem;
  }

  .featured-description-trading-education {
    font-size: 0.95rem;
  }
}

.posts-grid-section-trading-education {
  background: var(--color-bg-light-primary);
  padding: 6rem 0;
  overflow: hidden;
  position: relative;
}

.posts-glow-top-trading-education {
  position: absolute;
  top: -200px;
  left: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.posts-glow-bottom-trading-education {
  position: absolute;
  bottom: -300px;
  right: -150px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.posts-accent-shape-trading-education {
  position: absolute;
  top: 40%;
  left: 5%;
  width: 300px;
  height: 250px;
  background: rgba(16, 185, 129, 0.03);
  border-radius: 50% 30% 70% 40% / 30% 60% 40% 70%;
  z-index: 1;
  pointer-events: none;
}

.posts-grid-content-trading-education {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  z-index: 10;
}

.posts-section-title-trading-education {
  color: var(--color-text-dark);
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.posts-grid-trading-education {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.card-trading-education {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-xl);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
}

.card-trading-education:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.card-trading-education::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.card-trading-education:hover::before {
  opacity: 1;
}

.card-image-trading-education {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  display: block;
}

.card-title-trading-education {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin: 0;
}

.card-description-trading-education {
  color: var(--color-text-dark-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .posts-grid-section-trading-education {
    padding: 8rem 0;
  }

  .posts-grid-trading-education {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .card-trading-education {
    padding: 2rem;
  }

  .posts-section-title-trading-education {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .posts-grid-section-trading-education {
    padding: 10rem 0;
  }

  .posts-grid-trading-education {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }

  .posts-section-title-trading-education {
    font-size: 3rem;
  }
}

@media (max-width: 767px) {
  .posts-grid-section-trading-education {
    padding: 4rem 0;
  }

  .posts-grid-trading-education {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .card-trading-education {
    padding: 1rem;
  }

  .card-image-trading-education {
    height: 150px;
  }

  .card-title-trading-education {
    font-size: 1.1rem;
  }

  .card-description-trading-education {
    font-size: 0.85rem;
  }

  .posts-section-title-trading-education {
    font-size: 1.875rem;
  }
}

.insight-section-trading-education {
  background: var(--color-bg-dark-tertiary);
  padding: 6rem 0;
  overflow: hidden;
  position: relative;
}

.insight-glow-left-trading-education {
  position: absolute;
  top: -200px;
  left: -250px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.insight-glow-right-trading-education {
  position: absolute;
  bottom: -150px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.insight-shape-accent-trading-education {
  position: absolute;
  top: 30%;
  right: 10%;
  width: 250px;
  height: 250px;
  background: rgba(6, 182, 212, 0.04);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.insight-content-trading-education {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  z-index: 10;
}

.insight-quote-trading-education {
  padding: 3rem;
  background: rgba(59, 130, 246, 0.1);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
}

.quote-text-trading-education {
  color: var(--color-text-light);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.8;
  margin: 0 0 1rem 0;
}

.quote-author-trading-education {
  color: var(--color-text-light-muted);
  font-size: 0.95rem;
  margin: 0;
}

.insight-text-block-trading-education {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.insight-heading-trading-education {
  color: var(--color-text-light);
}

.insight-description-trading-education {
  color: var(--color-text-light-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin: 0;
}

@media (min-width: 768px) {
  .insight-section-trading-education {
    padding: 8rem 0;
  }

  .insight-quote-trading-education {
    padding: 3.5rem;
  }

  .insight-heading-trading-education {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .insight-section-trading-education {
    padding: 10rem 0;
  }

  .insight-heading-trading-education {
    font-size: 2.5rem;
  }
}

@media (max-width: 767px) {
  .insight-section-trading-education {
    padding: 4rem 0;
  }

  .insight-quote-trading-education {
    padding: 2rem;
  }

  .quote-text-trading-education {
    font-size: 1.05rem;
  }

  .insight-heading-trading-education {
    font-size: 1.75rem;
  }

  .insight-description-trading-education {
    font-size: 0.95rem;
  }
}

.framework-section-trading-education {
  background: var(--color-bg-light-primary);
  padding: 6rem 0;
  overflow: hidden;
  position: relative;
}

.framework-glow-top-trading-education {
  position: absolute;
  top: -200px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.framework-glow-bottom-trading-education {
  position: absolute;
  bottom: -250px;
  left: -100px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.framework-accent-line-trading-education {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.2), transparent);
  z-index: 1;
  pointer-events: none;
}

.framework-content-trading-education {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  position: relative;
  z-index: 10;
}

.framework-title-trading-education {
  color: var(--color-text-dark);
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.framework-steps-trading-education {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.step-item-trading-education {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-xl);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
}

.step-item-trading-education:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.step-number-trading-education {
  color: var(--color-primary);
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1;
}

.step-title-trading-education {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin: 0;
}

.step-description-trading-education {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .framework-section-trading-education {
    padding: 8rem 0;
  }

  .framework-steps-trading-education {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .step-item-trading-education {
    padding: 2.5rem;
  }

  .framework-title-trading-education {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .framework-section-trading-education {
    padding: 10rem 0;
  }

  .framework-steps-trading-education {
    grid-template-columns: repeat(5, 1fr);
    gap: 1.5rem;
  }

  .step-item-trading-education {
    padding: 2rem;
  }

  .framework-title-trading-education {
    font-size: 3rem;
  }
}

@media (max-width: 767px) {
  .framework-section-trading-education {
    padding: 4rem 0;
  }

  .framework-steps-trading-education {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .step-item-trading-education {
    padding: 1.5rem;
  }

  .step-number-trading-education {
    font-size: 1.875rem;
  }

  .step-title-trading-education {
    font-size: 1.1rem;
  }

  .step-description-trading-education {
    font-size: 0.85rem;
  }

  .framework-title-trading-education {
    font-size: 1.875rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:root {
      --color-bg-dark-primary: #0a0f1e;
      --color-bg-dark-secondary: #0f1729;
      --color-bg-dark-tertiary: #1a2847;
      --color-text-light: #ffffff;
      --color-text-light-secondary: #e2e8f0;
      --color-text-light-muted: #94a3b8;
      --color-primary: #3b82f6;
      --color-primary-hover: #2563eb;
      --color-secondary: #06b6d4;
      --color-accent-gold: #f59e0b;
      --font-primary: 'Inter', sans-serif;
      --font-heading: 'Playfair Display', serif;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .post-marktanalyse-verstehen {
      font-family: var(--font-primary);
      line-height: 1.6;
    }

    .post-marktanalyse-verstehen .container {
      max-width: 1440px;
      width: 100%;
      margin: 0 auto;
      padding: 0 20px;
    }

    .marktanalyse-verstehen-breadcrumbs {
      background: var(--color-bg-dark-primary);
      padding: 1.5rem 0;
      border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    }

    .marktanalyse-verstehen-breadcrumb-list {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      list-style: none;
      font-size: 0.875rem;
    }

    .marktanalyse-verstehen-breadcrumb-list a {
      color: var(--color-secondary);
      transition: color 0.3s ease;
    }

    .marktanalyse-verstehen-breadcrumb-list a:hover {
      color: var(--color-accent-gold);
    }

    .marktanalyse-verstehen-breadcrumb-list span {
      color: var(--color-text-light-muted);
    }

    .marktanalyse-verstehen-hero {
      background: linear-gradient(135deg, var(--color-bg-dark-primary) 0%, var(--color-bg-dark-secondary) 100%);
      padding: 5rem 0;
      position: relative;
      overflow: hidden;
    }

    .marktanalyse-verstehen-hero::before {
      content: '';
      position: absolute;
      top: -300px;
      right: -300px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
      z-index: 1;
    }

    .marktanalyse-verstehen-hero::after {
      content: '';
      position: absolute;
      bottom: -200px;
      left: -200px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
      z-index: 1;
    }

    .marktanalyse-verstehen-hero-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .marktanalyse-verstehen-hero h1 {
      font-family: var(--font-heading);
      font-size: 3rem;
      font-weight: 700;
      color: var(--color-text-light);
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    .marktanalyse-verstehen-hero-subtitle {
      font-size: 1.125rem;
      color: var(--color-text-light-secondary);
      line-height: 1.7;
      max-width: 600px;
    }

    .marktanalyse-verstehen-hero-meta {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      margin-top: 1.5rem;
      font-size: 0.875rem;
      color: var(--color-text-light-muted);
    }

    .marktanalyse-verstehen-hero-image {
      width: 100%;
      max-height: 400px;
      object-fit: cover;
      border-radius: 12px;
      margin-top: 2rem;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .marktanalyse-verstehen-content-section {
      background: var(--color-bg-dark-tertiary);
      padding: 5rem 0;
      overflow: hidden;
      position: relative;
    }

    .marktanalyse-verstehen-content-section:nth-child(even) {
      background: var(--color-bg-dark-secondary);
    }

    .marktanalyse-verstehen-content-section::before {
      content: '';
      position: absolute;
      top: -250px;
      right: -250px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
      z-index: 1;
    }

    .marktanalyse-verstehen-section-content {
      position: relative;
      z-index: 2;
    }

    .marktanalyse-verstehen-section-content h2 {
      font-family: var(--font-heading);
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--color-text-light);
      margin-bottom: 1.5rem;
      line-height: 1.2;
    }

    .marktanalyse-verstehen-section-content p {
      color: var(--color-text-light-secondary);
      font-size: 1rem;
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }

    .marktanalyse-verstehen-section-content ul {
      list-style: none;
      margin: 2rem 0;
      padding-left: 0;
    }

    .marktanalyse-verstehen-section-content li {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 1rem;
      color: var(--color-text-light-secondary);
    }

    .marktanalyse-verstehen-section-content li::before {
      content: '';
      color: var(--color-secondary);
      font-size: 1.5rem;
      flex-shrink: 0;
      margin-top: -0.25rem;
    }

    .marktanalyse-verstehen-content-image {
      width: 100%;
      max-height: 350px;
      object-fit: cover;
      border-radius: 12px;
      margin: 2rem 0;
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    }

    .marktanalyse-verstehen-highlight-box {
      background: rgba(59, 130, 246, 0.1);
      border: 2px solid rgba(59, 130, 246, 0.3);
      border-radius: 12px;
      padding: 2rem;
      margin: 2rem 0;
      position: relative;
    }

    .marktanalyse-verstehen-highlight-box::before {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      bottom: 0;
      width: 4px;
      background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-secondary) 100%);
      border-radius: 12px 0 0 12px;
    }

    .marktanalyse-verstehen-highlight-box p {
      margin: 0;
      padding-left: 1rem;
    }

    .marktanalyse-verstehen-quote {
      border-left: 4px solid var(--color-accent-gold);
      padding: 2rem;
      margin: 3rem 0;
      background: rgba(245, 158, 11, 0.05);
      border-radius: 8px;
      font-style: italic;
    }

    .marktanalyse-verstehen-quote p {
      color: var(--color-text-light-secondary);
      font-size: 1.125rem;
      margin: 0;
      line-height: 1.8;
    }

    .marktanalyse-verstehen-disclaimer {
      background: var(--color-bg-dark-primary);
      padding: 5rem 0;
      overflow: hidden;
      position: relative;
    }

    .marktanalyse-verstehen-disclaimer::before {
      content: '';
      position: absolute;
      top: -300px;
      left: -300px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
      z-index: 1;
    }

    .marktanalyse-verstehen-disclaimer-content {
      background: rgba(59, 130, 246, 0.08);
      border: 2px solid rgba(59, 130, 246, 0.2);
      border-radius: 12px;
      padding: 2.5rem;
      position: relative;
      z-index: 2;
      max-width: 800px;
      margin: 0 auto;
    }

    .marktanalyse-verstehen-disclaimer-title {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
      font-size: 1.25rem;
      font-weight: 600;
      color: var(--color-text-light);
    }

    .marktanalyse-verstehen-disclaimer-title .fas {
      color: var(--color-primary);
      font-size: 1.5rem;
    }

    .marktanalyse-verstehen-disclaimer-content p {
      color: var(--color-text-light-secondary);
      margin: 0;
      font-size: 0.95rem;
      line-height: 1.7;
    }

    .marktanalyse-verstehen-related {
      background: var(--color-bg-dark-secondary);
      padding: 5rem 0;
      overflow: hidden;
      position: relative;
    }

    .marktanalyse-verstehen-related::before {
      content: '';
      position: absolute;
      top: -250px;
      right: -250px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
      z-index: 1;
    }

    .marktanalyse-verstehen-related-content {
      position: relative;
      z-index: 2;
    }

    .marktanalyse-verstehen-related h2 {
      font-family: var(--font-heading);
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--color-text-light);
      text-align: center;
      margin-bottom: 3rem;
      line-height: 1.2;
    }

    .marktanalyse-verstehen-related-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }

    .marktanalyse-verstehen-related-card {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding: 2rem;
      background: rgba(59, 130, 246, 0.08);
      border: 2px solid rgba(59, 130, 246, 0.2);
      border-radius: 12px;
      transition: all 0.3s ease;
    }

    .marktanalyse-verstehen-related-card:hover {
      transform: translateY(-8px);
      border-color: rgba(59, 130, 246, 0.4);
      background: rgba(59, 130, 246, 0.12);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    }

    .marktanalyse-verstehen-related-card h3 {
      font-family: var(--font-heading);
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--color-text-light);
      margin: 0;
      line-height: 1.3;
    }

    .marktanalyse-verstehen-related-card p {
      color: var(--color-text-light-secondary);
      font-size: 0.95rem;
      margin: 0;
      line-height: 1.7;
    }

    .marktanalyse-verstehen-related-card a {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--color-secondary);
      font-weight: 600;
      margin-top: 0.5rem;
      transition: all 0.3s ease;
    }

    .marktanalyse-verstehen-related-card a:hover {
      color: var(--color-accent-gold);
      gap: 1rem;
    }

    @media (min-width: 768px) {
      .marktanalyse-verstehen-hero {
        padding: 6rem 0;
      }

      .marktanalyse-verstehen-hero h1 {
        font-size: 3.5rem;
      }

      .marktanalyse-verstehen-hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
      }

      .marktanalyse-verstehen-hero-image {
        max-height: 450px;
      }

      .marktanalyse-verstehen-content-section {
        padding: 6rem 0;
      }

      .marktanalyse-verstehen-section-content h2 {
        font-size: 2.75rem;
      }

      .marktanalyse-verstehen-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
      }

      .marktanalyse-verstehen-related-card {
        padding: 2.5rem;
      }
    }

    @media (min-width: 1024px) {
      .marktanalyse-verstehen-hero {
        padding: 7rem 0;
      }

      .marktanalyse-verstehen-hero h1 {
        font-size: 3.75rem;
      }

      .marktanalyse-verstehen-content-section {
        padding: 7rem 0;
      }

      .marktanalyse-verstehen-section-content h2 {
        font-size: 3rem;
      }
    }

    @media (max-width: 767px) {
      .marktanalyse-verstehen-hero {
        padding: 3rem 0;
      }

      .marktanalyse-verstehen-hero h1 {
        font-size: 2rem;
      }

      .marktanalyse-verstehen-hero-subtitle {
        font-size: 1rem;
      }

      .marktanalyse-verstehen-hero-meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
      }

      .marktanalyse-verstehen-content-section {
        padding: 3rem 0;
      }

      .marktanalyse-verstehen-section-content h2 {
        font-size: 1.75rem;
      }

      .marktanalyse-verstehen-section-content p {
        font-size: 0.9rem;
      }

      .marktanalyse-verstehen-related h2 {
        font-size: 1.75rem;
      }

      .marktanalyse-verstehen-related-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .marktanalyse-verstehen-related-card {
        padding: 1.5rem;
      }

      .marktanalyse-verstehen-disclaimer-content {
        padding: 1.5rem;
      }

      .marktanalyse-verstehen-highlight-box {
        padding: 1.5rem;
      }

      .marktanalyse-verstehen-quote {
        padding: 1.5rem;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }

.post-systematische-handelsanalyse {
  background: var(--color-bg-light-primary);
}

.systematische-handelsanalyse-breadcrumb-section {
  background: var(--color-bg-light-secondary);
  padding: 1.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.systematische-handelsanalyse-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.systematische-handelsanalyse-breadcrumb-link {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.systematische-handelsanalyse-breadcrumb-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.systematische-handelsanalyse-breadcrumb-separator {
  color: #cbd5e1;
}

.systematische-handelsanalyse-breadcrumb-current {
  color: var(--color-text-dark);
  font-weight: 500;
}

.systematische-handelsanalyse-hero {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 4rem 0;
  border-bottom: 2px solid #e2e8f0;
}

.systematische-handelsanalyse-hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.systematische-handelsanalyse-hero-title {
  color: var(--color-text-dark);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.systematische-handelsanalyse-hero-subtitle {
  color: var(--color-text-dark-secondary);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.systematische-handelsanalyse-hero-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.systematische-handelsanalyse-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-dark-secondary);
  font-size: 0.9rem;
}

.systematische-handelsanalyse-meta-item .fas {
  color: var(--color-primary);
  font-size: 1rem;
}

.systematische-handelsanalyse-featured-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  display: block;
}

@media (min-width: 768px) {
  .systematische-handelsanalyse-hero {
    padding: 5rem 0;
  }

  .systematische-handelsanalyse-hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .systematische-handelsanalyse-hero-title {
    font-size: 3rem;
  }
}

@media (max-width: 767px) {
  .systematische-handelsanalyse-hero {
    padding: 3rem 0;
  }

  .systematische-handelsanalyse-hero-title {
    font-size: 1.875rem;
  }

  .systematische-handelsanalyse-hero-subtitle {
    font-size: 1rem;
  }
}

.systematische-handelsanalyse-lead-section {
  background: var(--color-bg-light-primary);
  padding: 3rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.systematische-handelsanalyse-lead-content {
  max-width: 800px;
  margin: 0 auto;
}

.systematische-handelsanalyse-lead-text {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  line-height: 1.8;
  font-weight: 500;
}

@media (max-width: 767px) {
  .systematische-handelsanalyse-lead-section {
    padding: 2rem 0;
  }

  .systematische-handelsanalyse-lead-text {
    font-size: 1rem;
  }
}

.systematische-handelsanalyse-content-section-1,
.systematische-handelsanalyse-content-section-2,
.systematische-handelsanalyse-content-section-3,
.systematische-handelsanalyse-content-section-4,
.systematische-handelsanalyse-content-section-5 {
  background: var(--color-bg-light-primary);
  padding: 4rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.systematische-handelsanalyse-content-wrapper,
.systematische-handelsanalyse-content-wrapper-reverse {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

.systematische-handelsanalyse-content-wrapper-reverse {
  direction: rtl;
}

.systematische-handelsanalyse-content-wrapper-reverse > * {
  direction: ltr;
}

.systematische-handelsanalyse-section-title {
  color: var(--color-text-dark);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.systematische-handelsanalyse-content-text {
  color: var(--color-text-dark);
}

.systematische-handelsanalyse-content-text p {
  color: var(--color-text-dark-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.8;
}

.systematische-handelsanalyse-content-text strong {
  color: var(--color-text-dark);
  font-weight: 600;
}

.systematische-handelsanalyse-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

.systematische-handelsanalyse-list li {
  color: var(--color-text-dark-secondary);
  margin-bottom: 1rem;
  padding-left: 1.75rem;
  position: relative;
  line-height: 1.7;
}

.systematische-handelsanalyse-list li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.systematische-handelsanalyse-section-image {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  display: block;
}

@media (min-width: 768px) {
  .systematische-handelsanalyse-content-section-1,
  .systematische-handelsanalyse-content-section-2,
  .systematische-handelsanalyse-content-section-3,
  .systematische-handelsanalyse-content-section-4,
  .systematische-handelsanalyse-content-section-5 {
    padding: 5rem 0;
  }

  .systematische-handelsanalyse-content-wrapper,
  .systematische-handelsanalyse-content-wrapper-reverse {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .systematische-handelsanalyse-section-title {
    font-size: 2.25rem;
  }
}

@media (max-width: 767px) {
  .systematische-handelsanalyse-content-section-1,
  .systematische-handelsanalyse-content-section-2,
  .systematische-handelsanalyse-content-section-3,
  .systematische-handelsanalyse-content-section-4,
  .systematische-handelsanalyse-content-section-5 {
    padding: 2.5rem 0;
  }

  .systematische-handelsanalyse-section-title {
    font-size: 1.5rem;
  }

  .systematische-handelsanalyse-content-text p {
    font-size: 0.95rem;
  }
}

.systematische-handelsanalyse-highlight-section {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
  padding: 3rem 0;
  border-top: 2px solid rgba(59, 130, 246, 0.2);
  border-bottom: 2px solid rgba(59, 130, 246, 0.2);
}

.systematische-handelsanalyse-highlight-box {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.systematische-handelsanalyse-highlight-icon {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.systematische-handelsanalyse-highlight-icon .fas {
  color: var(--color-primary);
  font-size: 1.5rem;
  line-height: 50px;
}

.systematische-handelsanalyse-highlight-box h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin: 0 0 0.75rem 0;
}

.systematische-handelsanalyse-highlight-box p {
  color: var(--color-text-dark-secondary);
  margin: 0;
  line-height: 1.7;
}

@media (max-width: 767px) {
  .systematische-handelsanalyse-highlight-section {
    padding: 2rem 0;
  }

  .systematische-handelsanalyse-highlight-box {
    padding: 1.5rem;
    gap: 1rem;
  }

  .systematische-handelsanalyse-highlight-box h3 {
    font-size: 1.1rem;
  }

  .systematische-handelsanalyse-highlight-box p {
    font-size: 0.9rem;
  }
}

.systematische-handelsanalyse-quote-section {
  background: var(--color-bg-dark-primary);
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.systematische-handelsanalyse-quote {
  max-width: 700px;
  margin: 0 auto;
  padding: 0;
  border: none;
  text-align: center;
}

.systematische-handelsanalyse-quote p {
  color: var(--color-text-light);
  font-size: 1.5rem;
  line-height: 1.8;
  font-style: italic;
  font-weight: 500;
  margin: 0 0 1.5rem 0;
}

.systematische-handelsanalyse-quote-footer {
  color: var(--color-text-light-muted);
  font-size: 0.95rem;
  font-style: normal;
}

@media (min-width: 768px) {
  .systematische-handelsanalyse-quote-section {
    padding: 5rem 0;
  }

  .systematische-handelsanalyse-quote p {
    font-size: 1.75rem;
  }
}

@media (max-width: 767px) {
  .systematische-handelsanalyse-quote-section {
    padding: 2.5rem 0;
  }

  .systematische-handelsanalyse-quote p {
    font-size: 1.25rem;
  }
}

.systematische-handelsanalyse-disclaimer-section {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
  padding: 3rem 0;
  border-top: 2px solid rgba(245, 158, 11, 0.2);
  border-bottom: 2px solid rgba(245, 158, 11, 0.2);
}

.systematische-handelsanalyse-disclaimer-box {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent-gold);
}

.systematische-handelsanalyse-disclaimer-icon {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: rgba(245, 158, 11, 0.1);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.systematische-handelsanalyse-disclaimer-icon .fas {
  color: var(--color-accent-gold);
  font-size: 1.5rem;
  line-height: 50px;
}

.systematische-handelsanalyse-disclaimer-title {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin: 0 0 0.75rem 0;
}

.systematische-handelsanalyse-disclaimer-content p {
  color: var(--color-text-dark-secondary);
  margin: 0;
  line-height: 1.7;
  font-size: 0.95rem;
}

@media (max-width: 767px) {
  .systematische-handelsanalyse-disclaimer-section {
    padding: 2rem 0;
  }

  .systematische-handelsanalyse-disclaimer-box {
    padding: 1.5rem;
    gap: 1rem;
  }

  .systematische-handelsanalyse-disclaimer-title {
    font-size: 1.1rem;
  }

  .systematische-handelsanalyse-disclaimer-content p {
    font-size: 0.9rem;
  }
}

.systematische-handelsanalyse-related-section {
  background: var(--color-bg-light-secondary);
  padding: 4rem 0;
}

.systematische-handelsanalyse-related-header {
  text-align: center;
  margin-bottom: 3rem;
}

.systematische-handelsanalyse-related-title {
  color: var(--color-text-dark);
  font-size: 2rem;
  margin-bottom: 0.75rem;
}

.systematische-handelsanalyse-related-description {
  color: var(--color-text-dark-secondary);
  font-size: 1rem;
}

.systematische-handelsanalyse-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.systematische-handelsanalyse-related-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.systematische-handelsanalyse-related-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.systematische-handelsanalyse-related-card-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-md);
}

.systematische-handelsanalyse-related-card-icon .fas {
  color: var(--color-primary);
  font-size: 1.5rem;
}

.systematische-handelsanalyse-related-card-title {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin: 0;
}

.systematische-handelsanalyse-related-card-description {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.systematische-handelsanalyse-related-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.systematische-handelsanalyse-related-card-link:hover {
  color: var(--color-primary-hover);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .systematische-handelsanalyse-related-section {
    padding: 5rem 0;
  }

  .systematische-handelsanalyse-related-title {
    font-size: 2.25rem;
  }

  .systematische-handelsanalyse-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

  .systematische-handelsanalyse-related-card {
    padding: 2rem;
  }
}

@media (max-width: 767px) {
  .systematische-handelsanalyse-related-section {
    padding: 2.5rem 0;
  }

  .systematische-handelsanalyse-related-title {
    font-size: 1.5rem;
  }

  .systematische-handelsanalyse-related-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .systematische-handelsanalyse-related-card {
    padding: 1.5rem;
  }

  .systematische-handelsanalyse-related-card-title {
    font-size: 1.1rem;
  }

  .systematische-handelsanalyse-related-card-description {
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:root {
      --color-bg-dark-primary: #0a0f1e;
      --color-bg-dark-secondary: #0f1729;
      --color-bg-light-primary: #ffffff;
      --color-bg-light-secondary: #f8fafc;
      --color-text-light: #ffffff;
      --color-text-light-secondary: #e2e8f0;
      --color-text-dark: #0f172a;
      --color-text-dark-secondary: #374151;
      --color-text-dark-muted: #6b7280;
      --color-primary: #3b82f6;
      --color-primary-hover: #2563eb;
      --color-secondary: #06b6d4;
      --color-accent-gold: #f59e0b;
      --font-primary: 'Inter', sans-serif;
      --font-heading: 'Playfair Display', serif;
      --radius-lg: 12px;
      --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
      --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .post-technische-indikatoren {
      font-family: var(--font-primary);
      line-height: 1.6;
    }

    .post-technische-indikatoren .container {
      max-width: 1440px;
      width: 100%;
      margin: 0 auto;
      padding: 0 20px;
    }

    .post-technische-indikatoren h1,
    .post-technische-indikatoren h2,
    .post-technische-indikatoren h3,
    .post-technische-indikatoren h4 {
      font-family: var(--font-heading);
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.5px;
    }

    .post-technische-indikatoren h1 {
      font-size: 2.25rem;
    }

    .post-technische-indikatoren h2 {
      font-size: 1.875rem;
      margin-bottom: 1.5rem;
    }

    .post-technische-indikatoren h3 {
      font-size: 1.5rem;
      margin-bottom: 1.25rem;
    }

    .post-technische-indikatoren p {
      font-size: 0.875rem;
      line-height: 1.7;
      margin-bottom: 1rem;
    }

    .post-technische-indikatoren a {
      color: var(--color-primary);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .post-technische-indikatoren a:hover {
      color: var(--color-primary-hover);
    }

    @media (min-width: 768px) {
      .post-technische-indikatoren h1 {
        font-size: 2.75rem;
      }

      .post-technische-indikatoren h2 {
        font-size: 2.25rem;
      }

      .post-technische-indikatoren h3 {
        font-size: 1.75rem;
      }

      .post-technische-indikatoren p {
        font-size: 0.95rem;
      }
    }

    @media (min-width: 1024px) {
      .post-technische-indikatoren h1 {
        font-size: 3.25rem;
      }

      .post-technische-indikatoren h2 {
        font-size: 2.5rem;
      }

      .post-technische-indikatoren h3 {
        font-size: 2rem;
      }

      .post-technische-indikatoren p {
        font-size: 1.0625rem;
      }
    }

    .post-technische-indikatoren section {
      overflow: hidden;
      position: relative;
    }

    .post-technische-indikatoren img {
      max-width: 100%;
      height: auto;
      display: block;
      border-radius: var(--radius-lg);
    }

    .technische-indikatoren-breadcrumbs {
      background: var(--color-bg-light-secondary);
      padding: 1rem 0;
      margin-bottom: 2rem;
    }

    .technische-indikatoren-breadcrumbs-content {
      font-size: 0.875rem;
      color: var(--color-text-dark-secondary);
    }

    .technische-indikatoren-breadcrumbs-content a {
      color: var(--color-primary);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .technische-indikatoren-breadcrumbs-content a:hover {
      color: var(--color-primary-hover);
    }

    .technische-indikatoren-hero {
      background: var(--color-bg-light-primary);
      padding: 4rem 0;
      border-bottom: 2px solid #e5e7eb;
    }

    .technische-indikatoren-hero-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .technische-indikatoren-hero h1 {
      color: var(--color-text-dark);
      margin-bottom: 1rem;
      font-size: 2.25rem;
    }

    .technische-indikatoren-hero-meta {
      display: flex;
      gap: 1.5rem;
      color: var(--color-text-dark-muted);
      font-size: 0.875rem;
      flex-wrap: wrap;
    }

    .technische-indikatoren-hero-meta span {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .technische-indikatoren-hero-image {
      width: 100%;
      max-height: 350px;
      object-fit: cover;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
    }

    @media (min-width: 768px) {
      .technische-indikatoren-hero {
        padding: 5rem 0;
      }

      .technische-indikatoren-hero h1 {
        font-size: 2.75rem;
      }

      .technische-indikatoren-hero-image {
        max-height: 400px;
      }
    }

    @media (min-width: 1024px) {
      .technische-indikatoren-hero {
        padding: 6rem 0;
      }

      .technische-indikatoren-hero h1 {
        font-size: 3.25rem;
      }

      .technische-indikatoren-hero-image {
        max-height: 450px;
      }
    }

    .technische-indikatoren-article-content {
      background: var(--color-bg-light-primary);
      padding: 3rem 0;
    }

    .technische-indikatoren-article-inner {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
    }

    .technische-indikatoren-section {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .technische-indikatoren-section h2 {
      color: var(--color-text-dark);
    }

    .technische-indikatoren-section p {
      color: var(--color-text-dark-secondary);
    }

    .technische-indikatoren-section-image {
      width: 100%;
      max-height: 300px;
      object-fit: cover;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
      margin-top: 1rem;
    }

    .technische-indikatoren-highlight-box {
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
      border-left: 4px solid var(--color-primary);
      padding: 1.5rem;
      border-radius: var(--radius-lg);
      margin: 1.5rem 0;
    }

    .technische-indikatoren-highlight-box p {
      color: var(--color-text-dark-secondary);
      margin: 0;
      font-size: 0.95rem;
    }

    .technische-indikatoren-list {
      list-style: none;
      padding: 0;
      margin: 1.5rem 0;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .technische-indikatoren-list li {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      color: var(--color-text-dark-secondary);
      font-size: 0.95rem;
    }

    .technische-indikatoren-list li::before {
      content: '';
      color: var(--color-secondary);
      font-weight: 700;
      font-size: 1.25rem;
      flex-shrink: 0;
      line-height: 1.4;
    }

    .technische-indikatoren-quote {
      background: var(--color-bg-light-secondary);
      border-left: 4px solid var(--color-accent-gold);
      padding: 2rem;
      margin: 2rem 0;
      border-radius: var(--radius-lg);
      font-style: italic;
    }

    .technische-indikatoren-quote p {
      color: var(--color-text-dark);
      font-size: 1.1rem;
      margin: 0;
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .technische-indikatoren-article-content {
        padding: 4rem 0;
      }

      .technische-indikatoren-article-inner {
        gap: 4rem;
      }

      .technische-indikatoren-section-image {
        max-height: 350px;
      }
    }

    @media (min-width: 1024px) {
      .technische-indikatoren-article-content {
        padding: 5rem 0;
      }

      .technische-indikatoren-article-inner {
        gap: 5rem;
      }

      .technische-indikatoren-section-image {
        max-height: 400px;
      }
    }

    .technische-indikatoren-disclaimer {
      background: #fef3c7;
      border: 2px solid #f59e0b;
      border-radius: var(--radius-lg);
      padding: 2rem;
      margin: 3rem 0;
    }

    .technische-indikatoren-disclaimer-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
    }

    .technische-indikatoren-disclaimer-icon {
      color: var(--color-accent-gold);
      font-size: 1.5rem;
      flex-shrink: 0;
    }

    .technische-indikatoren-disclaimer-title {
      color: var(--color-text-dark);
      font-weight: 700;
      font-size: 1rem;
      margin: 0;
    }

    .technische-indikatoren-disclaimer p {
      color: var(--color-text-dark-secondary);
      margin: 0;
      font-size: 0.9rem;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .technische-indikatoren-disclaimer {
        padding: 2.5rem;
      }
    }

    .technische-indikatoren-related {
      background: var(--color-bg-light-secondary);
      padding: 4rem 0;
      margin-top: 3rem;
      border-top: 2px solid #e5e7eb;
    }

    .technische-indikatoren-related-title {
      color: var(--color-text-dark);
      text-align: center;
      margin-bottom: 2rem;
      font-size: 1.875rem;
    }

    .technische-indikatoren-related-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .technische-indikatoren-related-card {
      background: var(--color-bg-light-primary);
      border: 2px solid #e5e7eb;
      border-radius: var(--radius-lg);
      padding: 1.5rem;
      transition: all 0.3s ease;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .technische-indikatoren-related-card:hover {
      border-color: var(--color-primary);
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }

    .technische-indikatoren-related-card h3 {
      color: var(--color-text-dark);
      font-size: 1.25rem;
      margin: 0;
    }

    .technische-indikatoren-related-card p {
      color: var(--color-text-dark-secondary);
      margin: 0;
      font-size: 0.875rem;
      line-height: 1.6;
    }

    .technische-indikatoren-related-link {
      color: var(--color-primary);
      font-weight: 600;
      font-size: 0.875rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: auto;
    }

    .technische-indikatoren-related-link:hover {
      color: var(--color-primary-hover);
    }

    @media (min-width: 768px) {
      .technische-indikatoren-related {
        padding: 5rem 0;
      }

      .technische-indikatoren-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
      }

      .technische-indikatoren-related-card {
        padding: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .technische-indikatoren-related {
        padding: 6rem 0;
      }

      .technische-indikatoren-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
      }
    }

    @media (max-width: 767px) {
      .technische-indikatoren-breadcrumbs {
        padding: 0.75rem 0;
        margin-bottom: 1.5rem;
      }

      .technische-indikatoren-hero {
        padding: 2.5rem 0;
      }

      .technische-indikatoren-hero h1 {
        font-size: 1.75rem;
      }

      .technische-indikatoren-hero-image {
        max-height: 250px;
      }

      .technische-indikatoren-article-content {
        padding: 2rem 0;
      }

      .technische-indikatoren-article-inner {
        gap: 2rem;
      }

      .technische-indikatoren-section-image {
        max-height: 250px;
      }

      .technische-indikatoren-quote {
        padding: 1.5rem;
      }

      .technische-indikatoren-quote p {
        font-size: 1rem;
      }

      .technische-indikatoren-disclaimer {
        padding: 1.5rem;
      }

      .technische-indikatoren-related {
        padding: 2.5rem 0;
        margin-top: 2rem;
      }

      .technische-indikatoren-related-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
      }
    }

:root {
  --color-bg-dark-primary: #0a0f1e;
  --color-bg-dark-secondary: #0f1729;
  --color-bg-dark-tertiary: #1a2847;
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-text-light: #ffffff;
  --color-text-light-secondary: #e2e8f0;
  --color-text-light-muted: #94a3b8;
  --color-text-dark: #0f172a;
  --color-text-dark-secondary: #374151;
  --color-text-dark-muted: #6b7280;
  --color-primary: #3b82f6;
  --color-primary-hover: #2563eb;
  --color-secondary: #06b6d4;
  --color-accent-gold: #f59e0b;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
}

.post-risikomanagement-handel {
  font-family: var(--font-primary);
  background: var(--color-bg-light-primary);
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.risikomanagement-handel-breadcrumbs-section {
  background: var(--color-bg-light-secondary);
  padding: 1.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.risikomanagement-handel-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.risikomanagement-handel-breadcrumbs a {
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.risikomanagement-handel-breadcrumbs a:hover {
  color: var(--color-primary-hover);
}

.risikomanagement-handel-breadcrumb-separator {
  color: var(--color-text-dark-muted);
}

.risikomanagement-handel-breadcrumb-current {
  color: var(--color-text-dark-secondary);
  font-weight: 600;
}

.risikomanagement-handel-hero {
  background: var(--color-bg-dark-primary);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}

.risikomanagement-handel-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.risikomanagement-handel-hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.risikomanagement-handel-hero-glow-1 {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.risikomanagement-handel-hero-glow-2 {
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.risikomanagement-handel-hero-shape-1 {
  position: absolute;
  top: 20%;
  right: 15%;
  width: 150px;
  height: 150px;
  background: rgba(59, 130, 246, 0.04);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.risikomanagement-handel-hero-shape-2 {
  position: absolute;
  bottom: 15%;
  left: 10%;
  width: 120px;
  height: 150px;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
}

.risikomanagement-handel-hero-accent-line {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--color-accent-gold) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.risikomanagement-handel-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.risikomanagement-handel-hero h1 {
  font-family: var(--font-heading);
  font-size: 3.75rem;
  color: var(--color-text-light);
  margin-bottom: 1.5rem;
  font-weight: 700;
  line-height: 1.2;
}

.risikomanagement-handel-lead {
  font-size: 1.25rem;
  color: var(--color-text-light-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.risikomanagement-handel-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.risikomanagement-handel-read-time,
.risikomanagement-handel-date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-light-muted);
  font-size: 0.95rem;
}

.risikomanagement-handel-read-time .fas,
.risikomanagement-handel-date .fas {
  color: var(--color-accent-gold);
  font-size: 1.1rem;
}

.risikomanagement-handel-hero-image {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid rgba(59, 130, 246, 0.3);
}

.risikomanagement-handel-img-hero {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.risikomanagement-handel-intro-section {
  background: var(--color-bg-light-primary);
  padding: 4rem 0;
}

.risikomanagement-handel-intro-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: flex-start;
}

.risikomanagement-handel-intro-text p {
  color: var(--color-text-dark-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.risikomanagement-handel-highlight-box {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
  border-left: 4px solid var(--color-primary);
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.risikomanagement-handel-highlight-box h3 {
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.risikomanagement-handel-highlight-box p {
  color: var(--color-text-dark-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.risikomanagement-handel-section-1 {
  background: var(--color-bg-dark-secondary);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.risikomanagement-handel-section-1-deco-1 {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.risikomanagement-handel-section-1-deco-2 {
  position: absolute;
  bottom: -100px;
  right: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.risikomanagement-handel-section-1-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.risikomanagement-handel-section-1 h2 {
  font-family: var(--font-heading);
  color: var(--color-text-light);
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.risikomanagement-handel-section-1-text p {
  color: var(--color-text-light-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.risikomanagement-handel-formula-box {
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.3);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
}

.risikomanagement-handel-formula-box h4 {
  font-family: var(--font-heading);
  color: var(--color-text-light);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.risikomanagement-handel-formula-box p {
  color: var(--color-text-light-secondary);
  font-size: 1rem;
  margin: 0.5rem 0;
  font-family: 'Courier New', monospace;
}

.risikomanagement-handel-section-1-image {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.risikomanagement-handel-img-section {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.risikomanagement-handel-section-2 {
  background: var(--color-bg-light-primary);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.risikomanagement-handel-section-2-deco-1 {
  position: absolute;
  top: 15%;
  right: 10%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.risikomanagement-handel-section-2-deco-2 {
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.risikomanagement-handel-section-2-deco-3 {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 150px;
  height: 180px;
  background: rgba(59, 130, 246, 0.04);
  border-radius: 40% 60% 50% 50% / 50% 50% 50% 50%;
  z-index: 1;
  pointer-events: none;
}

.risikomanagement-handel-section-2-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.risikomanagement-handel-section-2 h2 {
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.risikomanagement-handel-section-2-text p {
  color: var(--color-text-dark-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.risikomanagement-handel-benefits-list h4 {
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.risikomanagement-handel-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.risikomanagement-handel-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--color-text-dark-secondary);
  font-size: 1rem;
  line-height: 1.6;
}

.risikomanagement-handel-list .fas {
  color: var(--color-primary);
  margin-top: 0.2rem;
  flex-shrink: 0;
  font-size: 1.1rem;
}

.risikomanagement-handel-section-2-image {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.risikomanagement-handel-quote-section {
  background: var(--color-bg-dark-tertiary);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.risikomanagement-handel-quote-deco-1 {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.risikomanagement-handel-quote-deco-2 {
  position: absolute;
  bottom: 15%;
  right: 8%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.risikomanagement-handel-quote-wrapper {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.risikomanagement-handel-quote {
  text-align: center;
  border-left: 4px solid var(--color-accent-gold);
  padding-left: 2rem;
  margin: 0;
}

.risikomanagement-handel-quote p {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin: 0 0 1.5rem 0;
  font-style: italic;
  font-weight: 600;
}

.risikomanagement-handel-quote-footer {
  display: block;
  margin-top: 1.5rem;
}

.risikomanagement-handel-quote-author {
  color: var(--color-text-light-secondary);
  font-size: 1rem;
}

.risikomanagement-handel-section-3 {
  background: var(--color-bg-light-primary);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.risikomanagement-handel-section-3-deco-1 {
  position: absolute;
  top: 5%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.risikomanagement-handel-section-3-deco-2 {
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.risikomanagement-handel-section-3-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.risikomanagement-handel-section-3 h2 {
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.risikomanagement-handel-section-3 h3 {
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  font-size: 1.75rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.risikomanagement-handel-section-3-text p {
  color: var(--color-text-dark-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.risikomanagement-handel-section-3-image {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.risikomanagement-handel-section-4 {
  background: var(--color-bg-dark-primary);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.risikomanagement-handel-section-4-deco-1 {
  position: absolute;
  top: 20%;
  left: 5%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.risikomanagement-handel-section-4-deco-2 {
  position: absolute;
  bottom: -100px;
  right: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.risikomanagement-handel-section-4-content {
  position: relative;
  z-index: 10;
}

.risikomanagement-handel-section-4 h2 {
  font-family: var(--font-heading);
  color: var(--color-text-light);
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.risikomanagement-handel-section-4-content > p {
  color: var(--color-text-light-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
}

.risikomanagement-handel-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 3rem 0;
}

.risikomanagement-handel-card {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s ease;
}

.risikomanagement-handel-card:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-6px);
}

.risikomanagement-handel-card-icon {
  font-size: 2.5rem;
  color: var(--color-secondary);
  margin-bottom: 1rem;
}

.risikomanagement-handel-card h4 {
  font-family: var(--font-heading);
  color: var(--color-text-light);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.risikomanagement-handel-card p {
  color: var(--color-text-light-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.risikomanagement-handel-section-5 {
  background: var(--color-bg-light-primary);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.risikomanagement-handel-section-5-deco-1 {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.risikomanagement-handel-section-5-deco-2 {
  position: absolute;
  bottom: 5%;
  left: 8%;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.risikomanagement-handel-section-5-deco-3 {
  position: absolute;
  top: 50%;
  right: 15%;
  width: 160px;
  height: 160px;
  background: rgba(59, 130, 246, 0.04);
  border-radius: 50% 40% 60% 40% / 40% 50% 40% 50%;
  z-index: 1;
  pointer-events: none;
}

.risikomanagement-handel-section-5-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.risikomanagement-handel-section-5 h2 {
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
}

.risikomanagement-handel-section-5 h3 {
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
  font-weight: 700;
}

.risikomanagement-handel-section-5-text p {
  color: var(--color-text-dark-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.risikomanagement-handel-metrics-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
}

.risikomanagement-handel-metrics-list li {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
  color: var(--color-text-dark-secondary);
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
}

.risikomanagement-handel-metrics-list li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
  font-size: 1.2rem;
}

.risikomanagement-handel-section-5-image {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.risikomanagement-handel-conclusion-section {
  background: var(--color-bg-dark-secondary);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.risikomanagement-handel-conclusion-deco-1 {
  position: absolute;
  top: 15%;
  left: 10%;
  width: 280px;
  height: 280px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.risikomanagement-handel-conclusion-deco-2 {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.risikomanagement-handel-conclusion-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.risikomanagement-handel-conclusion-section h2 {
  font-family: var(--font-heading);
  color: var(--color-text-light);
  font-size: 3rem;
  margin-bottom: 2rem;
  font-weight: 700;
  text-align: center;
}

.risikomanagement-handel-conclusion-content p {
  color: var(--color-text-light-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: justify;
}

.risikomanagement-handel-disclaimer-section {
  background: var(--color-bg-light-primary);
  padding: 4rem 0;
  border-top: 2px solid #e2e8f0;
}

.risikomanagement-handel-disclaimer {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
  border-left: 4px solid var(--color-primary);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  max-width: 900px;
}

.risikomanagement-handel-disclaimer h3 {
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 700;
}

.risikomanagement-handel-disclaimer h3 .fas {
  color: var(--color-primary);
  font-size: 1.3rem;
}

.risikomanagement-handel-disclaimer p {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.risikomanagement-handel-related-section {
  background: var(--color-bg-light-secondary);
  padding: 5rem 0;
}

.risikomanagement-handel-related-title {
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
  font-weight: 700;
}

.risikomanagement-handel-related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.risikomanagement-handel-related-card {
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
}

.risikomanagement-handel-related-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.risikomanagement-handel-related-card-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.risikomanagement-handel-img-related {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.risikomanagement-handel-related-card:hover .risikomanagement-handel-img-related {
  transform: scale(1.05);
}

.risikomanagement-handel-related-card h3 {
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  font-size: 1.3rem;
  margin: 1.5rem 1.5rem 0.75rem;
  font-weight: 700;
  line-height: 1.3;
}

.risikomanagement-handel-related-card p {
  color: var(--color-text-dark-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 1.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.risikomanagement-handel-related-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  margin: 1.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.risikomanagement-handel-related-link:hover {
  color: var(--color-primary-hover);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .risikomanagement-handel-hero {
    padding: 6rem 0;
  }

  .risikomanagement-handel-hero h1 {
    font-size: 3rem;
  }

  .risikomanagement-handel-intro-section {
    padding: 5rem 0;
  }

  .risikomanagement-handel-section-1 {
    padding: 6rem 0;
  }

  .risikomanagement-handel-section-2 {
    padding: 6rem 0;
  }

  .risikomanagement-handel-section-3 {
    padding: 6rem 0;
  }

  .risikomanagement-handel-section-4 {
    padding: 6rem 0;
  }

  .risikomanagement-handel-section-5 {
    padding: 6rem 0;
  }

  .risikomanagement-handel-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }

  .risikomanagement-handel-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 767px) {
  .risikomanagement-handel-hero {
    padding: 3rem 0;
  }

  .risikomanagement-handel-hero h1 {
    font-size: 2rem;
  }

  .risikomanagement-handel-lead {
    font-size: 1rem;
  }

  .risikomanagement-handel-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .risikomanagement-handel-hero-image {
    height: 280px;
  }

  .risikomanagement-handel-intro-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .risikomanagement-handel-section-1-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .risikomanagement-handel-section-1 h2 {
    font-size: 1.875rem;
  }

  .risikomanagement-handel-section-1-image {
    height: 300px;
  }

  .risikomanagement-handel-section-2-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .risikomanagement-handel-section-2 h2 {
    font-size: 1.875rem;
  }

  .risikomanagement-handel-section-2-image {
    height: 300px;
  }

  .risikomanagement-handel-section-3-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .risikomanagement-handel-section-3 h2 {
    font-size: 1.875rem;
  }

  .risikomanagement-handel-section-3-image {
    height: 300px;
  }

  .risikomanagement-handel-section-4 h2 {
    font-size: 1.875rem;
  }

  .risikomanagement-handel-cards-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .risikomanagement-handel-section-5-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .risikomanagement-handel-section-5 h2 {
    font-size: 1.875rem;
  }

  .risikomanagement-handel-section-5-image {
    height: 300px;
  }

  .risikomanagement-handel-conclusion-section h2 {
    font-size: 1.875rem;
  }

  .risikomanagement-handel-related-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .risikomanagement-handel-related-card h3 {
    font-size: 1.1rem;
  }

  .risikomanagement-handel-meta {
    flex-direction: column;
    gap: 1rem;
  }

  .risikomanagement-handel-quote p {
    font-size: 1.5rem;
  }

  .risikomanagement-handel-intro-section,
  .risikomanagement-handel-section-1,
  .risikomanagement-handel-section-2,
  .risikomanagement-handel-section-3,
  .risikomanagement-handel-section-4,
  .risikomanagement-handel-section-5,
  .risikomanagement-handel-conclusion-section {
    padding: 3rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

:root {
      --color-bg-dark-primary: #0a0f1e;
      --color-bg-dark-secondary: #0f1729;
      --color-bg-light-primary: #ffffff;
      --color-bg-light-secondary: #f8fafc;
      --color-text-light: #ffffff;
      --color-text-light-secondary: #e2e8f0;
      --color-text-light-muted: #94a3b8;
      --color-text-dark: #0f172a;
      --color-text-dark-secondary: #374151;
      --color-text-dark-muted: #6b7280;
      --color-primary: #3b82f6;
      --color-primary-hover: #2563eb;
      --color-secondary: #06b6d4;
      --color-accent-gold: #f59e0b;
      --color-accent-green: #10b981;
      --font-primary: 'Inter', sans-serif;
      --font-heading: 'Playfair Display', serif;
    }

    .post-portfolio-diversifikation {
      font-family: var(--font-primary);
      line-height: 1.6;
      background: var(--color-bg-light-primary);
    }

    .post-portfolio-diversifikation .portfolio-diversifikation-breadcrumbs {
      background: var(--color-bg-light-secondary);
      padding: 1rem 0;
      font-size: 0.9rem;
    }

    .post-portfolio-diversifikation .portfolio-diversifikation-breadcrumbs-list {
      display: flex;
      gap: 0.5rem;
      list-style: none;
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .post-portfolio-diversifikation .portfolio-diversifikation-breadcrumbs-item {
      color: var(--color-text-dark-muted);
    }

    .post-portfolio-diversifikation .portfolio-diversifikation-breadcrumbs-item a {
      color: var(--color-primary);
      transition: color 0.3s ease;
    }

    .post-portfolio-diversifikation .portfolio-diversifikation-breadcrumbs-item a:hover {
      color: var(--color-primary-hover);
    }

    .post-portfolio-diversifikation .portfolio-diversifikation-hero {
      background: var(--color-bg-light-primary);
      padding: 4rem 0 3rem;
      position: relative;
      overflow: hidden;
    }

    .post-portfolio-diversifikation .portfolio-diversifikation-hero-content {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 20px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 2.5rem;
      align-items: center;
    }

    .post-portfolio-diversifikation .portfolio-diversifikation-hero h1 {
      font-family: var(--font-heading);
      font-size: 3rem;
      font-weight: 700;
      color: var(--color-text-dark);
      line-height: 1.2;
      margin: 0 0 1rem 0;
    }

    .post-portfolio-diversifikation .portfolio-diversifikation-hero-meta {
      display: flex;
      gap: 2rem;
      margin-bottom: 1.5rem;
      flex-wrap: wrap;
      color: var(--color-text-dark-secondary);
      font-size: 0.95rem;
    }

    .post-portfolio-diversifikation .portfolio-diversifikation-hero-featured {
      width: 100%;
      height: 300px;
      border-radius: 12px;
      object-fit: cover;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .post-portfolio-diversifikation .portfolio-diversifikation-lead {
      background: var(--color-bg-light-secondary);
      padding: 3rem 0;
      position: relative;
      overflow: hidden;
    }

    .post-portfolio-diversifikation .portfolio-diversifikation-lead-content {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .post-portfolio-diversifikation .portfolio-diversifikation-lead p {
      font-size: 1.125rem;
      color: var(--color-text-dark-secondary);
      line-height: 1.8;
      margin: 0;
    }

    .post-portfolio-diversifikation .portfolio-diversifikation-content-section {
      padding: 3rem 0;
      border-bottom: 1px solid #e5e7eb;
    }

    .post-portfolio-diversifikation .portfolio-diversifikation-content-section:last-of-type {
      border-bottom: none;
    }

    .post-portfolio-diversifikation .portfolio-diversifikation-content-wrapper {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .post-portfolio-diversifikation .portfolio-diversifikation-section-title {
      font-family: var(--font-heading);
      font-size: 2.25rem;
      font-weight: 700;
      color: var(--color-text-dark);
      margin: 0 0 1.5rem 0;
      line-height: 1.2;
    }

    .post-portfolio-diversifikation .portfolio-diversifikation-section-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      align-items: start;
      margin-bottom: 2rem;
    }

    .post-portfolio-diversifikation .portfolio-diversifikation-section-image {
      width: 100%;
      height: auto;
      border-radius: 12px;
      object-fit: cover;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    .post-portfolio-diversifikation .portfolio-diversifikation-section-text p {
      color: var(--color-text-dark-secondary);
      font-size: 1rem;
      line-height: 1.8;
      margin: 0 0 1rem 0;
    }

    .post-portfolio-diversifikation .portfolio-diversifikation-section-text p:last-child {
      margin-bottom: 0;
    }

    .post-portfolio-diversifikation .portfolio-diversifikation-highlight-box {
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
      border-left: 4px solid var(--color-primary);
      padding: 1.5rem;
      border-radius: 8px;
      margin: 2rem 0;
    }

    .post-portfolio-diversifikation .portfolio-diversifikation-highlight-box h3 {
      font-family: var(--font-heading);
      font-size: 1.25rem;
      color: var(--color-primary);
      margin: 0 0 0.75rem 0;
    }

    .post-portfolio-diversifikation .portfolio-diversifikation-highlight-box p {
      color: var(--color-text-dark-secondary);
      margin: 0;
      font-size: 0.95rem;
      line-height: 1.7;
    }

    .post-portfolio-diversifikation .portfolio-diversifikation-list {
      list-style: none;
      padding: 0;
      margin: 1.5rem 0;
    }

    .post-portfolio-diversifikation .portfolio-diversifikation-list li {
      display: flex;
      gap: 1rem;
      margin-bottom: 1rem;
      color: var(--color-text-dark-secondary);
      font-size: 0.95rem;
      line-height: 1.7;
    }

    .post-portfolio-diversifikation .portfolio-diversifikation-list li:last-child {
      margin-bottom: 0;
    }

    .post-portfolio-diversifikation .portfolio-diversifikation-list .fas {
      color: var(--color-accent-green);
      font-size: 1.1rem;
      flex-shrink: 0;
      margin-top: 0.25rem;
    }

    .post-portfolio-diversifikation .portfolio-diversifikation-quote {
      background: var(--color-bg-dark-primary);
      color: var(--color-text-light);
      padding: 2.5rem;
      border-radius: 12px;
      margin: 2.5rem 0;
      border-left: 4px solid var(--color-secondary);
      font-style: italic;
      font-size: 1.125rem;
      line-height: 1.8;
      position: relative;
      overflow: hidden;
    }

    .post-portfolio-diversifikation .portfolio-diversifikation-quote::before {
      content: '';
      position: absolute;
      top: -50px;
      right: -50px;
      width: 200px;
      height: 200px;
      background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .post-portfolio-diversifikation .portfolio-diversifikation-quote p {
      color: var(--color-text-light);
      margin: 0;
      position: relative;
      z-index: 1;
    }

    .post-portfolio-diversifikation .portfolio-diversifikation-disclaimer {
      background: #fef3c7;
      border: 1px solid #fcd34d;
      border-radius: 12px;
      padding: 1.5rem;
      margin: 3rem 0;
    }

    .post-portfolio-diversifikation .portfolio-diversifikation-disclaimer-title {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-weight: 600;
      color: #92400e;
      margin: 0 0 0.75rem 0;
      font-size: 0.95rem;
    }

    .post-portfolio-diversifikation .portfolio-diversifikation-disclaimer-title .fas {
      font-size: 1.1rem;
    }

    .post-portfolio-diversifikation .portfolio-diversifikation-disclaimer p {
      color: #78350f;
      font-size: 0.9rem;
      line-height: 1.6;
      margin: 0;
    }

    .post-portfolio-diversifikation .portfolio-diversifikation-related {
      background: var(--color-bg-light-secondary);
      padding: 4rem 0;
      margin-top: 3rem;
    }

    .post-portfolio-diversifikation .portfolio-diversifikation-related-wrapper {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .post-portfolio-diversifikation .portfolio-diversifikation-related-title {
      font-family: var(--font-heading);
      font-size: 2rem;
      font-weight: 700;
      color: var(--color-text-dark);
      margin: 0 0 2.5rem 0;
      text-align: center;
    }

    .post-portfolio-diversifikation .portfolio-diversifikation-related-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }

    .post-portfolio-diversifikation .portfolio-diversifikation-related-card {
      background: var(--color-bg-light-primary);
      border-radius: 12px;
      padding: 1.75rem;
      border: 1px solid #e5e7eb;
      transition: all 0.3s ease;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .post-portfolio-diversifikation .portfolio-diversifikation-related-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      border-color: var(--color-primary);
    }

    .post-portfolio-diversifikation .portfolio-diversifikation-related-card h3 {
      font-family: var(--font-heading);
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--color-text-dark);
      margin: 0;
      line-height: 1.4;
    }

    .post-portfolio-diversifikation .portfolio-diversifikation-related-card p {
      color: var(--color-text-dark-secondary);
      font-size: 0.9rem;
      line-height: 1.6;
      margin: 0;
    }

    .post-portfolio-diversifikation .portfolio-diversifikation-related-card::after {
      content: '';
      color: var(--color-primary);
      font-weight: 700;
      margin-top: auto;
      font-size: 1.25rem;
      transition: transform 0.3s ease;
    }

    .post-portfolio-diversifikation .portfolio-diversifikation-related-card:hover::after {
      transform: translateX(4px);
    }

    @media (min-width: 768px) {
      .post-portfolio-diversifikation .portfolio-diversifikation-hero {
        padding: 5rem 0 4rem;
      }

      .post-portfolio-diversifikation .portfolio-diversifikation-hero h1 {
        font-size: 3.5rem;
      }

      .post-portfolio-diversifikation .portfolio-diversifikation-hero-featured {
        height: 400px;
      }

      .post-portfolio-diversifikation .portfolio-diversifikation-lead {
        padding: 4rem 0;
      }

      .post-portfolio-diversifikation .portfolio-diversifikation-content-section {
        padding: 4rem 0;
      }

      .post-portfolio-diversifikation .portfolio-diversifikation-section-title {
        font-size: 2.5rem;
      }

      .post-portfolio-diversifikation .portfolio-diversifikation-section-grid {
        grid-template-columns: 1.2fr 1fr;
        gap: 2.5rem;
      }

      .post-portfolio-diversifikation .portfolio-diversifikation-quote {
        padding: 3rem;
        font-size: 1.25rem;
      }

      .post-portfolio-diversifikation .portfolio-diversifikation-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
      }
    }

    @media (min-width: 1024px) {
      .post-portfolio-diversifikation .portfolio-diversifikation-hero {
        padding: 6rem 0 5rem;
      }

      .post-portfolio-diversifikation .portfolio-diversifikation-hero h1 {
        font-size: 3.75rem;
      }

      .post-portfolio-diversifikation .portfolio-diversifikation-hero-featured {
        height: 450px;
      }

      .post-portfolio-diversifikation .portfolio-diversifikation-lead {
        padding: 5rem 0;
      }

      .post-portfolio-diversifikation .portfolio-diversifikation-content-section {
        padding: 5rem 0;
      }

      .post-portfolio-diversifikation .portfolio-diversifikation-section-title {
        font-size: 2.75rem;
      }

      .post-portfolio-diversifikation .portfolio-diversifikation-lead-content {
        max-width: 900px;
      }
    }

    @media (max-width: 767px) {
      .post-portfolio-diversifikation .portfolio-diversifikation-hero {
        padding: 2.5rem 0 2rem;
      }

      .post-portfolio-diversifikation .portfolio-diversifikation-hero h1 {
        font-size: 2rem;
      }

      .post-portfolio-diversifikation .portfolio-diversifikation-hero-featured {
        height: 220px;
      }

      .post-portfolio-diversifikation .portfolio-diversifikation-hero-meta {
        font-size: 0.85rem;
        gap: 1rem;
      }

      .post-portfolio-diversifikation .portfolio-diversifikation-lead {
        padding: 2rem 0;
      }

      .post-portfolio-diversifikation .portfolio-diversifikation-lead p {
        font-size: 1rem;
      }

      .post-portfolio-diversifikation .portfolio-diversifikation-content-section {
        padding: 2rem 0;
      }

      .post-portfolio-diversifikation .portfolio-diversifikation-section-title {
        font-size: 1.5rem;
      }

      .post-portfolio-diversifikation .portfolio-diversifikation-section-grid {
        gap: 1.5rem;
      }

      .post-portfolio-diversifikation .portfolio-diversifikation-section-text p {
        font-size: 0.9rem;
      }

      .post-portfolio-diversifikation .portfolio-diversifikation-quote {
        padding: 1.5rem;
        font-size: 1rem;
        margin: 1.5rem 0;
      }

      .post-portfolio-diversifikation .portfolio-diversifikation-disclaimer {
        padding: 1rem;
        margin: 2rem 0;
      }

      .post-portfolio-diversifikation .portfolio-diversifikation-related {
        padding: 2.5rem 0;
      }

      .post-portfolio-diversifikation .portfolio-diversifikation-related-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
      }

      .post-portfolio-diversifikation .portfolio-diversifikation-related-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .post-portfolio-diversifikation .portfolio-diversifikation-related-card {
        padding: 1.25rem;
      }

      .post-portfolio-diversifikation .portfolio-diversifikation-related-card h3 {
        font-size: 1.1rem;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }

:root {
      --color-bg-dark-primary: #0a0f1e;
      --color-bg-dark-secondary: #0f1729;
      --color-bg-light-primary: #ffffff;
      --color-bg-light-secondary: #f8fafc;
      --color-text-light: #ffffff;
      --color-text-light-secondary: #e2e8f0;
      --color-text-light-muted: #94a3b8;
      --color-text-dark: #0f172a;
      --color-text-dark-secondary: #374151;
      --color-text-dark-muted: #6b7280;
      --color-primary: #3b82f6;
      --color-primary-hover: #2563eb;
      --color-secondary: #06b6d4;
      --color-accent-gold: #f59e0b;
      --font-primary: 'Inter', sans-serif;
      --font-heading: 'Playfair Display', serif;
      --radius-lg: 12px;
      --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
      --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .post-handelspsychologie-meistern {
      font-family: var(--font-primary);
      line-height: 1.6;
    }

    .container {
      max-width: 1440px;
      width: 100%;
      margin: 0 auto;
      padding: 0 20px;
    }

    .post-handelspsychologie-meistern .handelspsychologie-meistern-breadcrumbs {
      background: var(--color-bg-dark-primary);
      padding: 1.5rem 0;
      overflow: hidden;
      position: relative;
    }

    .post-handelspsychologie-meistern .handelspsychologie-meistern-breadcrumbs a,
    .post-handelspsychologie-meistern .handelspsychologie-meistern-breadcrumbs span {
      color: var(--color-text-light-muted);
      font-size: 0.9rem;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .post-handelspsychologie-meistern .handelspsychologie-meistern-breadcrumbs a:hover {
      color: var(--color-primary);
    }

    .post-handelspsychologie-meistern .handelspsychologie-meistern-breadcrumbs span {
      margin: 0 0.75rem;
    }

    .post-handelspsychologie-meistern .handelspsychologie-meistern-hero {
      background: var(--color-bg-dark-primary);
      padding: 4rem 0;
      overflow: hidden;
      position: relative;
    }

    .post-handelspsychologie-meistern .handelspsychologie-meistern-hero::before {
      content: '';
      position: absolute;
      top: -200px;
      right: -200px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .post-handelspsychologie-meistern .handelspsychologie-meistern-hero::after {
      content: '';
      position: absolute;
      bottom: -300px;
      left: -150px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .post-handelspsychologie-meistern .handelspsychologie-meistern-hero-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      position: relative;
      z-index: 2;
    }

    .post-handelspsychologie-meistern .handelspsychologie-meistern-hero h1 {
      font-family: var(--font-heading);
      font-size: 2.25rem;
      font-weight: 700;
      color: var(--color-text-light);
      margin-bottom: 1rem;
      line-height: 1.2;
    }

    .post-handelspsychologie-meistern .handelspsychologie-meistern-hero-lead {
      color: var(--color-text-light-secondary);
      font-size: 1rem;
      line-height: 1.8;
      margin-bottom: 1.5rem;
      max-width: 650px;
    }

    .post-handelspsychologie-meistern .handelspsychologie-meistern-hero-meta {
      display: flex;
      gap: 1.5rem;
      color: var(--color-text-light-muted);
      font-size: 0.85rem;
      margin-bottom: 1.5rem;
    }

    .post-handelspsychologie-meistern .handelspsychologie-meistern-featured-image {
      width: 100%;
      max-height: 400px;
      border-radius: var(--radius-lg);
      object-fit: cover;
      border: 1px solid rgba(59, 130, 246, 0.2);
    }

    .post-handelspsychologie-meistern .handelspsychologie-meistern-content-section {
      background: var(--color-bg-light-primary);
      padding: 4rem 0;
      overflow: hidden;
      position: relative;
    }

    .post-handelspsychologie-meistern .handelspsychologie-meistern-content-section:nth-child(even) {
      background: var(--color-bg-light-secondary);
    }

    .post-handelspsychologie-meistern .handelspsychologie-meistern-section-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .post-handelspsychologie-meistern .handelspsychologie-meistern-section-text h2 {
      font-family: var(--font-heading);
      font-size: 1.875rem;
      font-weight: 700;
      color: var(--color-text-dark);
      margin-bottom: 1rem;
      line-height: 1.2;
    }

    .post-handelspsychologie-meistern .handelspsychologie-meistern-section-text p {
      color: var(--color-text-dark-secondary);
      font-size: 1rem;
      line-height: 1.8;
      margin-bottom: 1.25rem;
    }

    .post-handelspsychologie-meistern .handelspsychologie-meistern-section-text p:last-child {
      margin-bottom: 0;
    }

    .post-handelspsychologie-meistern .handelspsychologie-meistern-highlight-box {
      background: rgba(59, 130, 246, 0.08);
      border-left: 4px solid var(--color-primary);
      padding: 1.5rem;
      border-radius: var(--radius-lg);
      margin: 1.5rem 0;
    }

    .post-handelspsychologie-meistern .handelspsychologie-meistern-highlight-box p {
      margin: 0;
      color: var(--color-text-dark);
      font-weight: 500;
    }

    .post-handelspsychologie-meistern .handelspsychologie-meistern-section-image {
      width: 100%;
      max-height: 350px;
      border-radius: var(--radius-lg);
      object-fit: cover;
      box-shadow: var(--shadow-lg);
    }

    .post-handelspsychologie-meistern .handelspsychologie-meistern-quote-section {
      background: var(--color-bg-dark-secondary);
      padding: 3rem 0;
      overflow: hidden;
      position: relative;
    }

    .post-handelspsychologie-meistern .handelspsychologie-meistern-quote-section::before {
      content: '';
      position: absolute;
      top: -150px;
      left: -150px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .post-handelspsychologie-meistern .handelspsychologie-meistern-quote-content {
      position: relative;
      z-index: 2;
      text-align: center;
      max-width: 700px;
      margin: 0 auto;
    }

    .post-handelspsychologie-meistern .handelspsychologie-meistern-quote-text {
      color: var(--color-text-light);
      font-size: 1.5rem;
      font-style: italic;
      line-height: 1.6;
      margin-bottom: 1.5rem;
      font-family: var(--font-heading);
      font-weight: 600;
    }

    .post-handelspsychologie-meistern .handelspsychologie-meistern-quote-attribution {
      color: var(--color-text-light-muted);
      font-size: 0.95rem;
    }

    .post-handelspsychologie-meistern .handelspsychologie-meistern-disclaimer {
      background: var(--color-bg-light-secondary);
      padding: 2rem;
      border-radius: var(--radius-lg);
      border-left: 4px solid var(--color-accent-gold);
      margin-top: 3rem;
    }

    .post-handelspsychologie-meistern .handelspsychologie-meistern-disclaimer-title {
      color: var(--color-text-dark);
      font-size: 0.95rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .post-handelspsychologie-meistern .handelspsychologie-meistern-disclaimer p {
      color: var(--color-text-dark-secondary);
      font-size: 0.9rem;
      line-height: 1.7;
      margin: 0;
    }

    .post-handelspsychologie-meistern .handelspsychologie-meistern-related {
      background: var(--color-bg-light-primary);
      padding: 4rem 0;
      overflow: hidden;
    }

    .post-handelspsychologie-meistern .handelspsychologie-meistern-related-title {
      font-family: var(--font-heading);
      font-size: 1.875rem;
      font-weight: 700;
      color: var(--color-text-dark);
      margin-bottom: 2.5rem;
      text-align: center;
    }

    .post-handelspsychologie-meistern .handelspsychologie-meistern-related-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }

    .post-handelspsychologie-meistern .handelspsychologie-meistern-related-card {
      background: var(--color-bg-light-secondary);
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid #e2e8f0;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .post-handelspsychologie-meistern .handelspsychologie-meistern-related-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
      border-color: var(--color-primary);
    }

    .post-handelspsychologie-meistern .handelspsychologie-meistern-related-card-content {
      padding: 1.5rem;
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .post-handelspsychologie-meistern .handelspsychologie-meistern-related-card h3 {
      font-family: var(--font-heading);
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--color-text-dark);
      line-height: 1.3;
      margin: 0;
    }

    .post-handelspsychologie-meistern .handelspsychologie-meistern-related-card p {
      color: var(--color-text-dark-secondary);
      font-size: 0.9rem;
      line-height: 1.6;
      margin: 0;
      flex: 1;
    }

    .post-handelspsychologie-meistern .handelspsychologie-meistern-related-link {
      color: var(--color-primary);
      font-size: 0.9rem;
      font-weight: 600;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.3s ease;
    }

    .post-handelspsychologie-meistern .handelspsychologie-meistern-related-link:hover {
      color: var(--color-primary-hover);
      gap: 0.75rem;
    }

    @media (min-width: 768px) {
      .post-handelspsychologie-meistern .handelspsychologie-meistern-hero {
        padding: 5rem 0;
      }

      .post-handelspsychologie-meistern .handelspsychologie-meistern-hero h1 {
        font-size: 3rem;
      }

      .post-handelspsychologie-meistern .handelspsychologie-meistern-hero-lead {
        font-size: 1.125rem;
      }

      .post-handelspsychologie-meistern .handelspsychologie-meistern-content-section {
        padding: 5rem 0;
      }

      .post-handelspsychologie-meistern .handelspsychologie-meistern-section-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
      }

      .post-handelspsychologie-meistern .handelspsychologie-meistern-section-text h2 {
        font-size: 2.25rem;
      }

      .post-handelspsychologie-meistern .handelspsychologie-meistern-section-text p {
        font-size: 1.05rem;
      }

      .post-handelspsychologie-meistern .handelspsychologie-meistern-quote-text {
        font-size: 1.875rem;
      }

      .post-handelspsychologie-meistern .handelspsychologie-meistern-related {
        padding: 5rem 0;
      }

      .post-handelspsychologie-meistern .handelspsychologie-meistern-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
      }
    }

    @media (min-width: 1024px) {
      .post-handelspsychologie-meistern .handelspsychologie-meistern-hero {
        padding: 6rem 0;
      }

      .post-handelspsychologie-meistern .handelspsychologie-meistern-hero h1 {
        font-size: 3.5rem;
      }

      .post-handelspsychologie-meistern .handelspsychologie-meistern-content-section {
        padding: 6rem 0;
      }

      .post-handelspsychologie-meistern .handelspsychologie-meistern-related {
        padding: 6rem 0;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
    }

.post-fundamentalanalyse-lernen {
  width: 100%;
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-breadcrumbs-section {
  background: var(--color-bg-light-primary);
  padding: 1.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-breadcrumb-link {
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-breadcrumb-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-breadcrumb-separator {
  color: #cbd5e1;
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-breadcrumb-current {
  color: var(--color-text-dark);
  font-weight: 600;
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-hero-section {
  background: var(--color-bg-light-primary);
  padding: 4rem 0;
  overflow: hidden;
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-hero-title {
  color: var(--color-text-dark);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-hero-subtitle {
  color: var(--color-text-dark-secondary);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-hero-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.95rem;
  color: var(--color-text-dark-muted);
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-read-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-read-time .fas {
  color: var(--color-primary);
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-featured-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-intro-section {
  background: var(--color-bg-light-primary);
  padding: 3rem 0;
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-intro-paragraph {
  color: var(--color-text-dark);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 800px;
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-highlight-box {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.05);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-highlight-icon {
  font-size: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-highlight-text h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  margin-top: 0;
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-highlight-text p {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-content-section-1,
.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-content-section-2,
.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-content-section-3,
.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-content-section-4 {
  background: var(--color-bg-light-primary);
  padding: 3rem 0;
  overflow: hidden;
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-content-wrapper-1,
.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-content-wrapper-2,
.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-content-wrapper-3,
.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-content-wrapper-4 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-content-section-1 .fundamentalanalyse-lernen-content-wrapper-1 {
  grid-template-columns: 1fr 1fr;
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-content-section-1 h2 {
  color: var(--color-text-dark);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-content-section-1 p,
.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-content-section-2 p,
.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-content-section-3 p,
.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-content-section-4 p {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-content-section-2 h2,
.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-content-section-3 h2,
.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-content-section-4 h2 {
  color: var(--color-text-dark);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-content-image {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  margin: 1.5rem 0;
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-steps-list h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin: 2rem 0 1rem;
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-steps {
  list-style: none;
  counter-reset: step-counter;
  margin-bottom: 1.5rem;
  padding-left: 0;
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-steps li {
  counter-increment: step-counter;
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-steps li::before {
  content: counter(step-counter);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-quote-section {
  margin: 3rem 0;
  padding: 2rem;
  background: #f8fafc;
  border-left: 5px solid var(--color-secondary);
  border-radius: var(--radius-lg);
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-quote {
  margin: 0;
  font-style: italic;
  color: var(--color-text-dark);
  font-size: 1.125rem;
  line-height: 1.7;
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-quote p {
  margin: 0;
  color: var(--color-text-dark);
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-tips-box {
  margin: 2rem 0;
  padding: 1.5rem;
  background: rgba(16, 185, 129, 0.05);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-tips-box h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-tips-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-tips-list li {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 0.75rem;
  padding-left: 1.5rem;
  position: relative;
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-tips-list li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-accent-green);
  font-weight: 700;
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-disclaimer-section {
  background: #f0f4f8;
  padding: 3rem 0;
  overflow: hidden;
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-disclaimer-content {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--color-bg-light-primary);
  border-left: 5px solid var(--color-primary);
  border-radius: var(--radius-lg);
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-disclaimer-icon {
  font-size: 1.75rem;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-disclaimer-text h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  margin-top: 0;
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-disclaimer-text p {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-related-section {
  background: var(--color-bg-light-primary);
  padding: 4rem 0;
  overflow: hidden;
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-related-content h2 {
  color: var(--color-text-dark);
  font-size: 2rem;
  margin-bottom: 2rem;
  text-align: center;
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-related-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.75rem;
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-xl);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-related-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-related-header h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin: 0;
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-related-description {
  color: var(--color-text-dark-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-related-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  margin-top: auto;
}

.post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-related-link:hover {
  color: var(--color-primary-hover);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-hero-section {
    padding: 5rem 0;
  }

  .post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-hero-title {
    font-size: 3rem;
  }

  .post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-hero-content {
    grid-template-columns: 1fr 1fr;
  }

  .post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-intro-section {
    padding: 4rem 0;
  }

  .post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-content-section-1,
  .post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-content-section-2,
  .post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-content-section-3,
  .post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-content-section-4 {
    padding: 4rem 0;
  }

  .post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-content-section-1 .fundamentalanalyse-lernen-content-wrapper-1 {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-content-section-1 h2 {
    font-size: 2.25rem;
  }

  .post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-related-grid {
    gap: 2.5rem;
  }

  .post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-related-section {
    padding: 5rem 0;
  }
}

@media (max-width: 767px) {
  .post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-hero-section {
    padding: 2rem 0;
  }

  .post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-hero-title {
    font-size: 1.75rem;
  }

  .post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-hero-subtitle {
    font-size: 1rem;
  }

  .post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-intro-section {
    padding: 2rem 0;
  }

  .post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-intro-paragraph {
    font-size: 0.9rem;
  }

  .post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-content-section-1,
  .post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-content-section-2,
  .post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-content-section-3,
  .post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-content-section-4 {
    padding: 2rem 0;
  }

  .post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-content-section-1 h2,
  .post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-content-section-2 h2,
  .post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-content-section-3 h2,
  .post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-content-section-4 h2 {
    font-size: 1.5rem;
  }

  .post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-content-section-1 p,
  .post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-content-section-2 p,
  .post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-content-section-3 p,
  .post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-content-section-4 p {
    font-size: 0.875rem;
  }

  .post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-highlight-box {
    flex-direction: column;
    gap: 1rem;
  }

  .post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-disclaimer-content {
    flex-direction: column;
    gap: 1rem;
  }

  .post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-related-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-related-section {
    padding: 2rem 0;
  }

  .post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-quote-section {
    padding: 1.25rem;
  }

  .post-fundamentalanalyse-lernen .fundamentalanalyse-lernen-quote {
    font-size: 1rem;
  }
}

.post-trend-analyse-verstehen {
  background: var(--color-bg-light-primary);
  color: var(--color-text-dark);
}

.trend-analyse-verstehen-article {
  width: 100%;
}

.trend-analyse-verstehen-hero {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 3rem 0;
  border-bottom: 2px solid #e2e8f0;
  overflow: hidden;
  position: relative;
}

.trend-analyse-verstehen-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.trend-analyse-verstehen-breadcrumbs a {
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.trend-analyse-verstehen-breadcrumbs a:hover {
  color: var(--color-primary-hover);
}

.trend-analyse-verstehen-separator {
  color: #cbd5e1;
}

.trend-analyse-verstehen-current {
  color: #64748b;
}

.trend-analyse-verstehen-hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.trend-analyse-verstehen-title {
  color: var(--color-text-dark);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.trend-analyse-verstehen-subtitle {
  color: #475569;
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 700px;
}

.trend-analyse-verstehen-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  color: #64748b;
  font-size: 0.95rem;
}

.trend-analyse-verstehen-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.trend-analyse-verstehen-meta .fas {
  color: var(--color-primary);
  font-size: 1rem;
}

.trend-analyse-verstehen-featured-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 2px solid #e2e8f0;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .trend-analyse-verstehen-hero {
    padding: 5rem 0;
  }

  .trend-analyse-verstehen-hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .trend-analyse-verstehen-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .trend-analyse-verstehen-hero {
    padding: 6rem 0;
  }

  .trend-analyse-verstehen-title {
    font-size: 3.5rem;
  }

  .trend-analyse-verstehen-featured-image {
    max-height: 450px;
  }
}

@media (max-width: 767px) {
  .trend-analyse-verstehen-hero {
    padding: 2rem 0;
  }

  .trend-analyse-verstehen-title {
    font-size: 1.875rem;
  }

  .trend-analyse-verstehen-subtitle {
    font-size: 1rem;
  }

  .trend-analyse-verstehen-meta {
    gap: 1rem;
    font-size: 0.85rem;
  }

  .trend-analyse-verstehen-featured-image {
    max-height: 300px;
  }
}

.trend-analyse-verstehen-intro {
  background: var(--color-bg-light-primary);
  padding: 4rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.trend-analyse-verstehen-intro-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.trend-analyse-verstehen-lead {
  color: #1e293b;
  font-size: 1.125rem;
  line-height: 1.8;
  max-width: 800px;
  margin: 0;
}

.trend-analyse-verstehen-intro-image {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 2px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
}

.trend-analyse-verstehen-intro p {
  color: #475569;
  line-height: 1.8;
  margin: 0;
}

@media (min-width: 768px) {
  .trend-analyse-verstehen-intro {
    padding: 5rem 0;
  }

  .trend-analyse-verstehen-intro-image {
    max-height: 380px;
  }
}

@media (min-width: 1024px) {
  .trend-analyse-verstehen-intro {
    padding: 6rem 0;
  }
}

@media (max-width: 767px) {
  .trend-analyse-verstehen-intro {
    padding: 2rem 0;
  }

  .trend-analyse-verstehen-lead {
    font-size: 1rem;
  }

  .trend-analyse-verstehen-intro-image {
    max-height: 280px;
  }
}

.trend-analyse-verstehen-section-1,
.trend-analyse-verstehen-section-2,
.trend-analyse-verstehen-section-3,
.trend-analyse-verstehen-section-4 {
  background: var(--color-bg-light-primary);
  padding: 4rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.trend-analyse-verstehen-section-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.trend-analyse-verstehen-section-content h2 {
  color: var(--color-text-dark);
  font-size: 2rem;
  margin: 0 0 1rem 0;
}

.trend-analyse-verstehen-section-content p {
  color: #475569;
  line-height: 1.8;
  margin: 0;
  font-size: 1rem;
}

.trend-analyse-verstehen-section-image {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 2px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
}

.trend-analyse-verstehen-highlight-box {
  background: #f0f9ff;
  border-left: 4px solid var(--color-primary);
  padding: 2rem;
  border-radius: var(--radius-md);
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.trend-analyse-verstehen-highlight-icon {
  color: var(--color-primary);
  font-size: 1.75rem;
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-md);
}

.trend-analyse-verstehen-highlight-text h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin: 0 0 1rem 0;
}

.trend-analyse-verstehen-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.trend-analyse-verstehen-list li {
  color: #475569;
  line-height: 1.6;
  padding-left: 0;
  margin: 0;
  font-size: 0.95rem;
}

.trend-analyse-verstehen-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.trend-analyse-verstehen-method-card {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.trend-analyse-verstehen-method-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.trend-analyse-verstehen-method-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.trend-analyse-verstehen-method-header .fas {
  color: var(--color-primary);
  font-size: 1.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

.trend-analyse-verstehen-method-header h3 {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  margin: 0;
}

.trend-analyse-verstehen-method-card p {
  color: #475569;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.trend-analyse-verstehen-quote-section {
  background: linear-gradient(135deg, #0f172a 0%, #1a2847 100%);
  padding: 3rem;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
}

.trend-analyse-verstehen-quote {
  color: #ffffff;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.8;
  margin: 0;
  text-align: center;
  border: none;
  padding: 0;
}

.trend-analyse-verstehen-application-steps {
  background: #faf5ff;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid #8b5cf6;
  margin: 2rem 0;
}

.trend-analyse-verstehen-application-steps h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin: 0 0 1.5rem 0;
}

.trend-analyse-verstehen-ordered-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  counter-reset: step-counter;
}

.trend-analyse-verstehen-ordered-list li {
  color: #475569;
  line-height: 1.6;
  padding-left: 2.5rem;
  position: relative;
  margin: 0;
  font-size: 0.95rem;
  counter-increment: step-counter;
}

.trend-analyse-verstehen-ordered-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 0;
  top: 0;
  background: #8b5cf6;
  color: #ffffff;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.85rem;
}

.trend-analyse-verstehen-mistakes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.trend-analyse-verstehen-mistake-item {
  background: #fef2f2;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 2px solid #fee2e2;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: flex-start;
}

.trend-analyse-verstehen-mistake-icon {
  color: #ef4444;
  font-size: 1.75rem;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(239, 68, 68, 0.1);
  border-radius: var(--radius-md);
}

.trend-analyse-verstehen-mistake-item h3 {
  color: var(--color-text-dark);
  font-size: 1.1rem;
  margin: 0;
}

.trend-analyse-verstehen-mistake-item p {
  color: #475569;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .trend-analyse-verstehen-section-1,
  .trend-analyse-verstehen-section-2,
  .trend-analyse-verstehen-section-3,
  .trend-analyse-verstehen-section-4 {
    padding: 5rem 0;
  }

  .trend-analyse-verstehen-section-content h2 {
    font-size: 2.25rem;
  }

  .trend-analyse-verstehen-section-image {
    max-height: 380px;
  }

  .trend-analyse-verstehen-methods-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trend-analyse-verstehen-quote-section {
    padding: 3.5rem;
  }

  .trend-analyse-verstehen-quote {
    font-size: 1.375rem;
  }
}

@media (min-width: 1024px) {
  .trend-analyse-verstehen-section-1,
  .trend-analyse-verstehen-section-2,
  .trend-analyse-verstehen-section-3,
  .trend-analyse-verstehen-section-4 {
    padding: 6rem 0;
  }

  .trend-analyse-verstehen-section-content h2 {
    font-size: 2.5rem;
  }

  .trend-analyse-verstehen-methods-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .trend-analyse-verstehen-mistakes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .trend-analyse-verstehen-section-1,
  .trend-analyse-verstehen-section-2,
  .trend-analyse-verstehen-section-3,
  .trend-analyse-verstehen-section-4 {
    padding: 2rem 0;
  }

  .trend-analyse-verstehen-section-content h2 {
    font-size: 1.5rem;
  }

  .trend-analyse-verstehen-section-content p {
    font-size: 0.9rem;
  }

  .trend-analyse-verstehen-section-image {
    max-height: 280px;
  }

  .trend-analyse-verstehen-highlight-box {
    flex-direction: column;
    padding: 1.5rem;
  }

  .trend-analyse-verstehen-methods-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .trend-analyse-verstehen-method-card {
    padding: 1rem;
  }

  .trend-analyse-verstehen-quote-section {
    padding: 1.5rem;
  }

  .trend-analyse-verstehen-quote {
    font-size: 1rem;
  }

  .trend-analyse-verstehen-application-steps {
    padding: 1.5rem;
  }

  .trend-analyse-verstehen-mistakes-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .trend-analyse-verstehen-mistake-item {
    padding: 1rem;
  }
}

.trend-analyse-verstehen-disclaimer {
  background: linear-gradient(135deg, #f0f9ff 0%, #f1f5f9 100%);
  padding: 4rem 0;
  border-top: 2px solid #bfdbfe;
  border-bottom: 1px solid #e2e8f0;
}

.trend-analyse-verstehen-disclaimer-content {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
  background: var(--color-bg-light-primary);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.trend-analyse-verstehen-disclaimer-icon {
  color: var(--color-primary);
  font-size: 2rem;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.trend-analyse-verstehen-disclaimer-text h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin: 0 0 1rem 0;
}

.trend-analyse-verstehen-disclaimer-text p {
  color: #475569;
  line-height: 1.8;
  margin: 0;
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .trend-analyse-verstehen-disclaimer {
    padding: 5rem 0;
  }

  .trend-analyse-verstehen-disclaimer-content {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .trend-analyse-verstehen-disclaimer {
    padding: 6rem 0;
  }

  .trend-analyse-verstehen-disclaimer-content {
    padding: 3rem;
  }
}

@media (max-width: 767px) {
  .trend-analyse-verstehen-disclaimer {
    padding: 2rem 0;
  }

  .trend-analyse-verstehen-disclaimer-content {
    flex-direction: column;
    padding: 1.5rem;
  }

  .trend-analyse-verstehen-disclaimer-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .trend-analyse-verstehen-disclaimer-text h3 {
    font-size: 1.1rem;
  }

  .trend-analyse-verstehen-disclaimer-text p {
    font-size: 0.9rem;
  }
}

.trend-analyse-verstehen-related {
  background: var(--color-bg-light-primary);
  padding: 4rem 0;
}

.trend-analyse-verstehen-related-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.trend-analyse-verstehen-related-content h2 {
  color: var(--color-text-dark);
  font-size: 2rem;
  margin: 0 0 1rem 0;
  text-align: center;
}

.trend-analyse-verstehen-related-intro {
  color: #475569;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
  font-size: 1rem;
  line-height: 1.6;
}

.trend-analyse-verstehen-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.trend-analyse-verstehen-related-card {
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  border: 2px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  text-decoration: none;
}

.trend-analyse-verstehen-related-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}

.trend-analyse-verstehen-related-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f1f5f9;
}

.trend-analyse-verstehen-related-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.trend-analyse-verstehen-related-card:hover .trend-analyse-verstehen-related-card-image img {
  transform: scale(1.05);
}

.trend-analyse-verstehen-related-card-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.trend-analyse-verstehen-related-card h3 {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  margin: 0;
  line-height: 1.4;
}

.trend-analyse-verstehen-related-card p {
  color: #475569;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.trend-analyse-verstehen-read-more {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.trend-analyse-verstehen-related-card:hover .trend-analyse-verstehen-read-more {
  color: var(--color-primary-hover);
  transform: translateX(4px);
}

@media (min-width: 768px) {
  .trend-analyse-verstehen-related {
    padding: 5rem 0;
  }

  .trend-analyse-verstehen-related-content h2 {
    font-size: 2.25rem;
  }

  .trend-analyse-verstehen-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .trend-analyse-verstehen-related-card-content {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .trend-analyse-verstehen-related {
    padding: 6rem 0;
  }

  .trend-analyse-verstehen-related-content h2 {
    font-size: 2.5rem;
  }

  .trend-analyse-verstehen-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 767px) {
  .trend-analyse-verstehen-related {
    padding: 2rem 0;
  }

  .trend-analyse-verstehen-related-content h2 {
    font-size: 1.5rem;
  }

  .trend-analyse-verstehen-related-intro {
    font-size: 0.9rem;
  }

  .trend-analyse-verstehen-related-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .trend-analyse-verstehen-related-card-content {
    padding: 1.25rem;
  }

  .trend-analyse-verstehen-related-card h3 {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.post-nachrichtengesteuerte-strategien {
      background: var(--color-bg-light-primary);
    }

    .nachrichtengesteuerte-strategien-breadcrumbs {
      background: var(--color-bg-light-secondary);
      padding: 1rem 0;
      border-bottom: 1px solid #e2e8f0;
    }

    .nachrichtengesteuerte-strategien-breadcrumbs-list {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      list-style: none;
      font-size: 0.875rem;
    }

    .nachrichtengesteuerte-strategien-breadcrumbs-list li {
      color: var(--color-text-dark-muted);
    }

    .nachrichtengesteuerte-strategien-breadcrumbs-list a {
      color: var(--color-primary);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .nachrichtengesteuerte-strategien-breadcrumbs-list a:hover {
      color: var(--color-primary-hover);
    }

    .nachrichtengesteuerte-strategien-hero {
      background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
      padding: 4rem 0;
    }

    @media (min-width: 768px) {
      .nachrichtengesteuerte-strategien-hero {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .nachrichtengesteuerte-strategien-hero {
        padding: 6rem 0;
      }
    }

    .nachrichtengesteuerte-strategien-hero-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      align-items: center;
    }

    @media (min-width: 768px) {
      .nachrichtengesteuerte-strategien-hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
      }
    }

    .nachrichtengesteuerte-strategien-hero h1 {
      color: var(--color-text-dark);
      font-size: 2.25rem;
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .nachrichtengesteuerte-strategien-hero h1 {
        font-size: 2.75rem;
      }
    }

    @media (min-width: 1024px) {
      .nachrichtengesteuerte-strategien-hero h1 {
        font-size: 3.25rem;
      }
    }

    .nachrichtengesteuerte-strategien-hero-subtitle {
      color: var(--color-text-dark-secondary);
      font-size: 1.125rem;
      line-height: 1.6;
      margin-bottom: 2rem;
    }

    .nachrichtengesteuerte-strategien-hero-meta {
      display: flex;
      gap: 2rem;
      margin-bottom: 2rem;
      flex-wrap: wrap;
    }

    .nachrichtengesteuerte-strategien-meta-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.9rem;
      color: var(--color-text-dark-muted);
    }

    .nachrichtengesteuerte-strategien-meta-item .fas {
      color: var(--color-primary);
      font-size: 1rem;
    }

    .nachrichtengesteuerte-strategien-hero-image {
      width: 100%;
      height: 350px;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
      border-radius: var(--radius-xl);
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-text-dark-muted);
      border: 2px solid #e2e8f0;
    }

    @media (min-width: 768px) {
      .nachrichtengesteuerte-strategien-hero-image {
        height: 400px;
      }
    }

    .nachrichtengesteuerte-strategien-hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .nachrichtengesteuerte-strategien-article {
      padding: 4rem 0;
    }

    @media (min-width: 768px) {
      .nachrichtengesteuerte-strategien-article {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .nachrichtengesteuerte-strategien-article {
        padding: 6rem 0;
      }
    }

    .nachrichtengesteuerte-strategien-article-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
    }

    @media (min-width: 768px) {
      .nachrichtengesteuerte-strategien-article-content {
        grid-template-columns: 1fr;
        gap: 4rem;
      }
    }

    .nachrichtengesteuerte-strategien-section {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .nachrichtengesteuerte-strategien-section h2 {
      color: var(--color-text-dark);
      font-size: 1.875rem;
      margin-bottom: 0.5rem;
    }

    @media (min-width: 768px) {
      .nachrichtengesteuerte-strategien-section h2 {
        font-size: 2.25rem;
      }
    }

    .nachrichtengesteuerte-strategien-section p {
      color: var(--color-text-dark-secondary);
      line-height: 1.8;
      font-size: 1rem;
    }

    @media (min-width: 768px) {
      .nachrichtengesteuerte-strategien-section p {
        font-size: 1.0625rem;
      }
    }

    .nachrichtengesteuerte-strategien-section-image {
      width: 100%;
      height: 300px;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(16, 185, 129, 0.08) 100%);
      border-radius: var(--radius-xl);
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-text-dark-muted);
      border: 1px solid #e2e8f0;
      margin: 1.5rem 0;
    }

    @media (min-width: 768px) {
      .nachrichtengesteuerte-strategien-section-image {
        height: 350px;
      }
    }

    @media (min-width: 1024px) {
      .nachrichtengesteuerte-strategien-section-image {
        height: 400px;
      }
    }

    .nachrichtengesteuerte-strategien-section-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .nachrichtengesteuerte-strategien-highlight {
      background: linear-gradient(135deg, #f0f4ff 0%, #f0f9ff 100%);
      border-left: 4px solid var(--color-primary);
      padding: 1.5rem;
      border-radius: var(--radius-lg);
      margin: 2rem 0;
    }

    .nachrichtengesteuerte-strategien-highlight p {
      color: var(--color-text-dark);
      margin: 0;
      font-style: italic;
      font-size: 1rem;
    }

    @media (min-width: 768px) {
      .nachrichtengesteuerte-strategien-highlight {
        padding: 2rem;
        margin: 2.5rem 0;
      }

      .nachrichtengesteuerte-strategien-highlight p {
        font-size: 1.0625rem;
      }
    }

    .nachrichtengesteuerte-strategien-list {
      list-style: none;
      margin: 1.5rem 0;
    }

    .nachrichtengesteuerte-strategien-list li {
      display: flex;
      gap: 1rem;
      margin-bottom: 1rem;
      color: var(--color-text-dark-secondary);
      font-size: 0.95rem;
    }

    @media (min-width: 768px) {
      .nachrichtengesteuerte-strategien-list li {
        font-size: 1rem;
      }
    }

    .nachrichtengesteuerte-strategien-list .fas {
      color: var(--color-secondary);
      flex-shrink: 0;
      margin-top: 0.25rem;
    }

    .nachrichtengesteuerte-strategien-two-column {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      margin: 2rem 0;
    }

    @media (min-width: 768px) {
      .nachrichtengesteuerte-strategien-two-column {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
      }
    }

    .nachrichtengesteuerte-strategien-two-column-image {
      width: 100%;
      height: 250px;
      background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
      border-radius: var(--radius-xl);
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid #e2e8f0;
    }

    @media (min-width: 768px) {
      .nachrichtengesteuerte-strategien-two-column-image {
        height: 300px;
      }
    }

    .nachrichtengesteuerte-strategien-two-column-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .nachrichtengesteuerte-strategien-two-column-text {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 1rem;
    }

    .nachrichtengesteuerte-strategien-two-column-text h3 {
      color: var(--color-text-dark);
      font-size: 1.5rem;
      margin: 0;
    }

    @media (min-width: 768px) {
      .nachrichtengesteuerte-strategien-two-column-text h3 {
        font-size: 1.75rem;
      }
    }

    .nachrichtengesteuerte-strategien-two-column-text p {
      color: var(--color-text-dark-secondary);
      margin: 0;
      line-height: 1.8;
    }

    .nachrichtengesteuerte-strategien-disclaimer {
      background: #f0f9ff;
      border: 2px solid #bfdbfe;
      border-radius: var(--radius-lg);
      padding: 2rem;
      margin: 3rem 0;
    }

    @media (min-width: 768px) {
      .nachrichtengesteuerte-strategien-disclaimer {
        padding: 2.5rem;
      }
    }

    .nachrichtengesteuerte-strategien-disclaimer-title {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      color: var(--color-text-dark);
      font-weight: 600;
      font-size: 1rem;
      margin-bottom: 1rem;
    }

    .nachrichtengesteuerte-strategien-disclaimer-title .fas {
      color: var(--color-primary);
      font-size: 1.25rem;
    }

    .nachrichtengesteuerte-strategien-disclaimer-text {
      color: var(--color-text-dark-secondary);
      font-size: 0.9rem;
      line-height: 1.7;
      margin: 0;
    }

    @media (min-width: 768px) {
      .nachrichtengesteuerte-strategien-disclaimer-text {
        font-size: 0.95rem;
      }
    }

    .nachrichtengesteuerte-strategien-related {
      background: var(--color-bg-light-secondary);
      padding: 4rem 0;
      margin-top: 4rem;
      border-top: 2px solid #e2e8f0;
    }

    @media (min-width: 768px) {
      .nachrichtengesteuerte-strategien-related {
        padding: 5rem 0;
      }
    }

    .nachrichtengesteuerte-strategien-related-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .nachrichtengesteuerte-strategien-related-title {
      color: var(--color-text-dark);
      font-size: 1.875rem;
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .nachrichtengesteuerte-strategien-related-title {
        font-size: 2.25rem;
      }
    }

    .nachrichtengesteuerte-strategien-related-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .nachrichtengesteuerte-strategien-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
      }
    }

    .nachrichtengesteuerte-strategien-related-card {
      background: var(--color-bg-light-primary);
      border: 2px solid #e2e8f0;
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: all 0.3s ease;
    }

    .nachrichtengesteuerte-strategien-related-card:hover {
      border-color: var(--color-primary);
      box-shadow: var(--shadow-md);
      transform: translateY(-4px);
    }

    .nachrichtengesteuerte-strategien-related-card-image {
      width: 100%;
      height: 200px;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-text-dark-muted);
    }

    .nachrichtengesteuerte-strategien-related-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .nachrichtengesteuerte-strategien-related-card-content {
      padding: 1.5rem;
    }

    @media (min-width: 768px) {
      .nachrichtengesteuerte-strategien-related-card-content {
        padding: 2rem;
      }
    }

    .nachrichtengesteuerte-strategien-related-card-title {
      color: var(--color-text-dark);
      font-size: 1.125rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
      line-height: 1.4;
    }

    .nachrichtengesteuerte-strategien-related-card-description {
      color: var(--color-text-dark-secondary);
      font-size: 0.875rem;
      line-height: 1.6;
      margin: 0;
    }

    .nachrichtengesteuerte-strategien-related-card-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--color-primary);
      font-weight: 600;
      margin-top: 1rem;
      text-decoration: none;
      transition: all 0.3s ease;
    }

    .nachrichtengesteuerte-strategien-related-card-link:hover {
      color: var(--color-primary-hover);
      transform: translateX(4px);
    }

    .nachrichtengesteuerte-strategien-related-card-link .fas {
      font-size: 0.875rem;
    }

    @media (max-width: 767px) {
      .nachrichtengesteuerte-strategien-hero {
        padding: 2rem 0;
      }

      .nachrichtengesteuerte-strategien-hero h1 {
        font-size: 1.75rem;
      }

      .nachrichtengesteuerte-strategien-hero-image {
        height: 250px;
      }

      .nachrichtengesteuerte-strategien-article {
        padding: 2rem 0;
      }

      .nachrichtengesteuerte-strategien-section h2 {
        font-size: 1.5rem;
      }

      .nachrichtengesteuerte-strategien-section-image {
        height: 250px;
        margin: 1rem 0;
      }

      .nachrichtengesteuerte-strategien-related {
        padding: 2rem 0;
        margin-top: 2rem;
      }

      .nachrichtengesteuerte-strategien-related-title {
        font-size: 1.5rem;
      }

      .nachrichtengesteuerte-strategien-related-grid {
        gap: 1.5rem;
      }

      .nachrichtengesteuerte-strategien-related-card-content {
        padding: 1rem;
      }
    }

.post-persoenliche-handelsplanung {
  background: var(--color-bg-light-primary);
  width: 100%;
}

.persoenliche-handelsplanung-article {
  width: 100%;
}

.persoenliche-handelsplanung-breadcrumbs {
  background: var(--color-bg-light-secondary);
  padding: 1rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.persoenliche-handelsplanung-breadcrumbs nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.persoenliche-handelsplanung-breadcrumbs a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.persoenliche-handelsplanung-breadcrumbs a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.persoenliche-handelsplanung-breadcrumbs span {
  color: var(--color-text-dark-muted);
}

.persoenliche-handelsplanung-hero {
  padding: 4rem 0;
  background: var(--color-bg-light-primary);
}

.persoenliche-handelsplanung-hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.persoenliche-handelsplanung-hero-text h1 {
  color: var(--color-text-dark);
  font-size: 3rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.persoenliche-handelsplanung-lead {
  color: var(--color-text-dark-secondary);
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 650px;
}

.persoenliche-handelsplanung-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.persoenliche-handelsplanung-read-time {
  color: var(--color-text-dark-muted);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.persoenliche-handelsplanung-read-time .fas {
  color: var(--color-primary);
  font-size: 1rem;
}

.persoenliche-handelsplanung-hero-image {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.persoenliche-handelsplanung-featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.persoenliche-handelsplanung-content-section {
  padding: 5rem 0;
  background: var(--color-bg-light-primary);
  border-bottom: 1px solid #f0f0f0;
}

.persoenliche-handelsplanung-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.persoenliche-handelsplanung-content-reversed {
  direction: rtl;
}

.persoenliche-handelsplanung-content-reversed > * {
  direction: ltr;
}

.persoenliche-handelsplanung-text-block h2 {
  color: var(--color-text-dark);
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.persoenliche-handelsplanung-text-block p {
  color: var(--color-text-dark-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.persoenliche-handelsplanung-text-block p:last-child {
  margin-bottom: 0;
}

.persoenliche-handelsplanung-image-block {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.persoenliche-handelsplanung-content-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.persoenliche-handelsplanung-highlight-section {
  padding: 4rem 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
}

.persoenliche-handelsplanung-highlight-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: flex-start;
  padding: 2.5rem;
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-xl);
  border-left: 4px solid var(--color-primary);
  box-shadow: var(--shadow-md);
}

.persoenliche-handelsplanung-highlight-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.persoenliche-handelsplanung-highlight-content h3 {
  color: var(--color-text-dark);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.persoenliche-handelsplanung-highlight-content p {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.persoenliche-handelsplanung-quote-section {
  padding: 5rem 0;
  background: var(--color-bg-light-secondary);
}

.persoenliche-handelsplanung-quote {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  border-left: 4px solid var(--color-primary);
  padding-left: 2rem;
  font-size: 1.5rem;
  font-style: italic;
  color: var(--color-text-dark);
  line-height: 1.8;
}

.persoenliche-handelsplanung-quote p {
  margin: 0;
}

.persoenliche-handelsplanung-disclaimer-section {
  padding: 4rem 0;
  background: var(--color-bg-light-primary);
}

.persoenliche-handelsplanung-disclaimer-box {
  padding: 2.5rem;
  background: #fef3c7;
  border-radius: var(--radius-xl);
  border-left: 4px solid #f59e0b;
}

.persoenliche-handelsplanung-disclaimer-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.persoenliche-handelsplanung-disclaimer-header .fas {
  font-size: 1.5rem;
  color: #f59e0b;
}

.persoenliche-handelsplanung-disclaimer-header h3 {
  color: #92400e;
  font-size: 1.25rem;
  margin: 0;
}

.persoenliche-handelsplanung-disclaimer-box p {
  color: #78350f;
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.persoenliche-handelsplanung-related-section {
  padding: 5rem 0;
  background: var(--color-bg-light-primary);
}

.persoenliche-handelsplanung-related-section h2 {
  color: var(--color-text-dark);
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.25rem;
}

.persoenliche-handelsplanung-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
}

.persoenliche-handelsplanung-related-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.persoenliche-handelsplanung-related-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.persoenliche-handelsplanung-related-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
}

.persoenliche-handelsplanung-related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.persoenliche-handelsplanung-related-card:hover .persoenliche-handelsplanung-related-image img {
  transform: scale(1.05);
}

.persoenliche-handelsplanung-related-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.persoenliche-handelsplanung-related-content h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin: 0;
  line-height: 1.3;
}

.persoenliche-handelsplanung-related-content p {
  color: var(--color-text-dark-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.persoenliche-handelsplanung-related-link {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: auto;
  width: fit-content;
}

.persoenliche-handelsplanung-related-link:hover {
  color: var(--color-primary-hover);
  gap: 0.75rem;
}

.persoenliche-handelsplanung-related-link .fas {
  font-size: 0.85rem;
  transition: transform 0.3s ease;
}

.persoenliche-handelsplanung-related-card:hover .persoenliche-handelsplanung-related-link .fas {
  transform: translateX(3px);
}

@media (min-width: 768px) {
  .persoenliche-handelsplanung-hero {
    padding: 6rem 0;
  }

  .persoenliche-handelsplanung-hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .persoenliche-handelsplanung-hero-text h1 {
    font-size: 3.25rem;
  }

  .persoenliche-handelsplanung-hero-image {
    height: 450px;
  }

  .persoenliche-handelsplanung-content-section {
    padding: 6rem 0;
  }

  .persoenliche-handelsplanung-content {
    gap: 4rem;
  }

  .persoenliche-handelsplanung-image-block {
    height: 450px;
  }

  .persoenliche-handelsplanung-highlight-section {
    padding: 5rem 0;
  }

  .persoenliche-handelsplanung-quote-section {
    padding: 6rem 0;
  }

  .persoenliche-handelsplanung-quote {
    font-size: 1.75rem;
  }

  .persoenliche-handelsplanung-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .persoenliche-handelsplanung-hero {
    padding: 8rem 0;
  }

  .persoenliche-handelsplanung-hero-text h1 {
    font-size: 3.5rem;
  }

  .persoenliche-handelsplanung-hero-image {
    height: 500px;
  }

  .persoenliche-handelsplanung-content-section {
    padding: 8rem 0;
  }

  .persoenliche-handelsplanung-text-block h2 {
    font-size: 2.5rem;
  }

  .persoenliche-handelsplanung-image-block {
    height: 500px;
  }

  .persoenliche-handelsplanung-related-section {
    padding: 8rem 0;
  }

  .persoenliche-handelsplanung-related-grid {
    gap: 3rem;
  }
}

@media (max-width: 767px) {
  .persoenliche-handelsplanung-hero {
    padding: 3rem 0;
  }

  .persoenliche-handelsplanung-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .persoenliche-handelsplanung-hero-text h1 {
    font-size: 2rem;
  }

  .persoenliche-handelsplanung-lead {
    font-size: 1rem;
    margin-bottom: 1.5rem;
  }

  .persoenliche-handelsplanung-hero-image {
    height: 300px;
  }

  .persoenliche-handelsplanung-content-section {
    padding: 3rem 0;
  }

  .persoenliche-handelsplanung-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .persoenliche-handelsplanung-content-reversed {
    direction: ltr;
  }

  .persoenliche-handelsplanung-text-block h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .persoenliche-handelsplanung-text-block p {
    font-size: 0.9rem;
    margin-bottom: 1rem;
  }

  .persoenliche-handelsplanung-image-block {
    height: 300px;
  }

  .persoenliche-handelsplanung-highlight-box {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .persoenliche-handelsplanung-highlight-icon {
    font-size: 2rem;
  }

  .persoenliche-handelsplanung-highlight-content h3 {
    font-size: 1.25rem;
  }

  .persoenliche-handelsplanung-quote-section {
    padding: 3rem 0;
  }

  .persoenliche-handelsplanung-quote {
    font-size: 1.25rem;
    padding-left: 1.5rem;
    border-left: 3px solid var(--color-primary);
  }

  .persoenliche-handelsplanung-disclaimer-section {
    padding: 2.5rem 0;
  }

  .persoenliche-handelsplanung-disclaimer-box {
    padding: 1.5rem;
  }

  .persoenliche-handelsplanung-disclaimer-header h3 {
    font-size: 1.1rem;
  }

  .persoenliche-handelsplanung-disclaimer-box p {
    font-size: 0.85rem;
  }

  .persoenliche-handelsplanung-related-section {
    padding: 3rem 0;
  }

  .persoenliche-handelsplanung-related-section h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .persoenliche-handelsplanung-related-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .persoenliche-handelsplanung-related-image {
    height: 200px;
  }

  .persoenliche-handelsplanung-related-content {
    padding: 1.25rem;
    gap: 0.75rem;
  }

  .persoenliche-handelsplanung-related-content h3 {
    font-size: 1.1rem;
  }

  .persoenliche-handelsplanung-related-content p {
    font-size: 0.85rem;
  }

  .persoenliche-handelsplanung-breadcrumbs {
    padding: 0.75rem 0;
  }

  .persoenliche-handelsplanung-breadcrumbs nav {
    font-size: 0.75rem;
    gap: 0.5rem;
  }

  .persoenliche-handelsplanung-meta {
    font-size: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.post-volatilitaet-auswirkungen {
  background: var(--color-bg-light-primary);
  color: var(--color-text-dark);
}

.volatilitaet-auswirkungen-breadcrumbs {
  background: var(--color-bg-light-secondary);
  padding: 1rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.volatilitaet-auswirkungen-breadcrumbs nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.volatilitaet-auswirkungen-breadcrumbs a {
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.volatilitaet-auswirkungen-breadcrumbs a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.volatilitaet-auswirkungen-breadcrumbs span {
  color: var(--color-text-dark-muted);
}

.volatilitaet-auswirkungen-hero {
  background: linear-gradient(135deg, var(--color-bg-light-primary) 0%, var(--color-bg-light-secondary) 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.volatilitaet-auswirkungen-hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.volatilitaet-auswirkungen-hero::after {
  content: '';
  position: absolute;
  bottom: -300px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.volatilitaet-auswirkungen-hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.volatilitaet-auswirkungen-hero h1 {
  color: var(--color-text-dark);
  font-size: 2.5rem;
  margin-bottom: 1.25rem;
}

.volatilitaet-auswirkungen-lead {
  color: var(--color-text-dark-secondary);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.volatilitaet-auswirkungen-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.volatilitaet-auswirkungen-read-time {
  color: var(--color-text-dark-muted);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.volatilitaet-auswirkungen-hero-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.volatilitaet-auswirkungen-content-section {
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.volatilitaet-auswirkungen-alt-bg {
  background: var(--color-bg-light-secondary);
}

.volatilitaet-auswirkungen-content-1,
.volatilitaet-auswirkungen-content-2,
.volatilitaet-auswirkungen-content-3,
.volatilitaet-auswirkungen-content-4,
.volatilitaet-auswirkungen-content-5,
.volatilitaet-auswirkungen-content-6 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.volatilitaet-auswirkungen-text-block h2 {
  color: var(--color-text-dark);
  font-size: 1.875rem;
  margin-bottom: 1.25rem;
}

.volatilitaet-auswirkungen-text-block p {
  color: var(--color-text-dark-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.volatilitaet-auswirkungen-text-block p:last-child {
  margin-bottom: 0;
}

.volatilitaet-auswirkungen-section-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.volatilitaet-auswirkungen-highlight-box {
  background: rgba(59, 130, 246, 0.08);
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin-top: 1.5rem;
}

.volatilitaet-auswirkungen-highlight-box p {
  color: var(--color-text-dark);
  margin: 0;
}

.volatilitaet-auswirkungen-disclaimer-section {
  background: var(--color-bg-light-secondary);
  padding: 3rem 0;
  border-top: 2px solid #e2e8f0;
  border-bottom: 2px solid #e2e8f0;
}

.volatilitaet-auswirkungen-disclaimer {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--color-bg-light-primary);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
}

.volatilitaet-auswirkungen-disclaimer .fas {
  color: var(--color-primary);
  font-size: 1.5rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

.volatilitaet-auswirkungen-disclaimer h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.volatilitaet-auswirkungen-disclaimer p {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.volatilitaet-auswirkungen-related-section {
  padding: 5rem 0;
  background: var(--color-bg-light-primary);
}

.volatilitaet-auswirkungen-related-content h2 {
  color: var(--color-text-dark);
  font-size: 2rem;
  text-align: center;
  margin-bottom: 3rem;
}

.volatilitaet-auswirkungen-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.volatilitaet-auswirkungen-related-card {
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.volatilitaet-auswirkungen-related-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.volatilitaet-auswirkungen-related-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #f0f0f0;
}

.volatilitaet-auswirkungen-related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.volatilitaet-auswirkungen-related-card:hover .volatilitaet-auswirkungen-related-image img {
  transform: scale(1.05);
}

.volatilitaet-auswirkungen-related-info {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.volatilitaet-auswirkungen-related-info h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin: 0;
}

.volatilitaet-auswirkungen-related-info p {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  margin: 0;
  flex: 1;
}

.volatilitaet-auswirkungen-related-link {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  margin-top: auto;
}

.volatilitaet-auswirkungen-related-link:hover {
  color: var(--color-primary-hover);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .volatilitaet-auswirkungen-hero {
    padding: 6rem 0;
  }

  .volatilitaet-auswirkungen-hero h1 {
    font-size: 3rem;
  }

  .volatilitaet-auswirkungen-hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .volatilitaet-auswirkungen-hero-image {
    height: 400px;
  }

  .volatilitaet-auswirkungen-content-section {
    padding: 5rem 0;
  }

  .volatilitaet-auswirkungen-content-2 {
    grid-template-columns: 1fr 1fr;
  }

  .volatilitaet-auswirkungen-image-left {
    order: -1;
  }

  .volatilitaet-auswirkungen-section-image {
    height: 350px;
  }

  .volatilitaet-auswirkungen-text-block h2 {
    font-size: 2.25rem;
  }

  .volatilitaet-auswirkungen-text-block p {
    font-size: 1.0625rem;
  }

  .volatilitaet-auswirkungen-related-section {
    padding: 6rem 0;
  }

  .volatilitaet-auswirkungen-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .volatilitaet-auswirkungen-hero {
    padding: 7rem 0;
  }

  .volatilitaet-auswirkungen-hero h1 {
    font-size: 3.5rem;
  }

  .volatilitaet-auswirkungen-hero-content {
    gap: 4rem;
  }

  .volatilitaet-auswirkungen-hero-image {
    height: 450px;
  }

  .volatilitaet-auswirkungen-content-section {
    padding: 6rem 0;
  }

  .volatilitaet-auswirkungen-section-image {
    height: 400px;
  }

  .volatilitaet-auswirkungen-text-block h2 {
    font-size: 2.5rem;
  }

  .volatilitaet-auswirkungen-related-section {
    padding: 7rem 0;
  }
}

@media (max-width: 767px) {
  .volatilitaet-auswirkungen-hero {
    padding: 3rem 0;
  }

  .volatilitaet-auswirkungen-hero h1 {
    font-size: 1.875rem;
  }

  .volatilitaet-auswirkungen-lead {
    font-size: 1rem;
  }

  .volatilitaet-auswirkungen-hero-image {
    height: 250px;
  }

  .volatilitaet-auswirkungen-content-section {
    padding: 2.5rem 0;
  }

  .volatilitaet-auswirkungen-content-1,
  .volatilitaet-auswirkungen-content-2,
  .volatilitaet-auswirkungen-content-3,
  .volatilitaet-auswirkungen-content-4,
  .volatilitaet-auswirkungen-content-5,
  .volatilitaet-auswirkungen-content-6 {
    gap: 1.5rem;
  }

  .volatilitaet-auswirkungen-text-block h2 {
    font-size: 1.5rem;
  }

  .volatilitaet-auswirkungen-text-block p {
    font-size: 0.95rem;
  }

  .volatilitaet-auswirkungen-section-image {
    height: 250px;
  }

  .volatilitaet-auswirkungen-highlight-box {
    padding: 1rem;
    margin-top: 1rem;
  }

  .volatilitaet-auswirkungen-disclaimer-section {
    padding: 2rem 0;
  }

  .volatilitaet-auswirkungen-disclaimer {
    flex-direction: column;
    padding: 1.5rem;
  }

  .volatilitaet-auswirkungen-related-section {
    padding: 3rem 0;
  }

  .volatilitaet-auswirkungen-related-content h2 {
    font-size: 1.5rem;
  }

  .volatilitaet-auswirkungen-related-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.post-handelsplattformen-auswaehlen {
  background: var(--color-bg-light-primary);
}

.handelsplattformen-auswaehlen-hero {
  background: linear-gradient(135deg, var(--color-bg-light-primary) 0%, var(--color-bg-light-secondary) 100%);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.handelsplattformen-auswaehlen-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.875rem;
}

.handelsplattformen-auswaehlen-breadcrumbs a {
  color: var(--color-primary);
  transition: all 0.3s ease;
}

.handelsplattformen-auswaehlen-breadcrumbs a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.handelsplattformen-auswaehlen-breadcrumbs span {
  color: var(--color-text-dark-muted);
}

.handelsplattformen-auswaehlen-hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.handelsplattformen-auswaehlen-hero-text h1 {
  color: var(--color-text-dark);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.handelsplattformen-auswaehlen-hero-lead {
  color: var(--color-text-dark-secondary);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.handelsplattformen-auswaehlen-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  color: var(--color-text-dark-muted);
  font-size: 0.95rem;
}

.handelsplattformen-auswaehlen-hero-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.handelsplattformen-auswaehlen-hero-meta i {
  color: var(--color-primary);
}

.handelsplattformen-auswaehlen-hero-image {
  width: 100%;
  max-height: 400px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.handelsplattformen-auswaehlen-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .handelsplattformen-auswaehlen-hero {
    padding: 6rem 0;
  }

  .handelsplattformen-auswaehlen-hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .handelsplattformen-auswaehlen-hero-text h1 {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .handelsplattformen-auswaehlen-hero {
    padding: 8rem 0;
  }

  .handelsplattformen-auswaehlen-hero-text h1 {
    font-size: 3.25rem;
  }
}

.handelsplattformen-auswaehlen-article {
  width: 100%;
}

.handelsplattformen-auswaehlen-intro-section {
  padding: 4rem 0;
  background: var(--color-bg-light-primary);
}

.handelsplattformen-auswaehlen-intro-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.handelsplattformen-auswaehlen-intro-content > p {
  color: var(--color-text-dark-secondary);
  font-size: 1rem;
  line-height: 1.8;
  max-width: 800px;
}

.handelsplattformen-auswaehlen-highlight-box {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--color-bg-light-secondary);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  margin: 1rem 0;
}

.handelsplattformen-auswaehlen-highlight-box i {
  font-size: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.handelsplattformen-auswaehlen-highlight-box h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.handelsplattformen-auswaehlen-highlight-box p {
  color: var(--color-text-dark-secondary);
  margin: 0;
}

.handelsplattformen-auswaehlen-intro-content img {
  width: 100%;
  max-height: 350px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .handelsplattformen-auswaehlen-intro-section {
    padding: 6rem 0;
  }

  .handelsplattformen-auswaehlen-highlight-box {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .handelsplattformen-auswaehlen-intro-section {
    padding: 8rem 0;
  }
}

.handelsplattformen-auswaehlen-criteria-section {
  padding: 4rem 0;
  background: var(--color-bg-light-secondary);
}

.handelsplattformen-auswaehlen-criteria-section h2 {
  color: var(--color-text-dark);
  margin-bottom: 3rem;
  text-align: center;
}

.handelsplattformen-auswaehlen-criteria-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.handelsplattformen-auswaehlen-criteria-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.handelsplattformen-auswaehlen-criteria-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.handelsplattformen-auswaehlen-criteria-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.handelsplattformen-auswaehlen-criteria-card h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin: 0;
}

.handelsplattformen-auswaehlen-criteria-card p {
  color: var(--color-text-dark-secondary);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.handelsplattformen-auswaehlen-criteria-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.handelsplattformen-auswaehlen-criteria-list li {
  color: var(--color-text-dark-secondary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.handelsplattformen-auswaehlen-criteria-list i {
  color: var(--color-secondary);
  font-size: 1rem;
}

.handelsplattformen-auswaehlen-criteria-section img {
  width: 100%;
  max-height: 350px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .handelsplattformen-auswaehlen-criteria-section {
    padding: 6rem 0;
  }

  .handelsplattformen-auswaehlen-criteria-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .handelsplattformen-auswaehlen-criteria-card {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .handelsplattformen-auswaehlen-criteria-section {
    padding: 8rem 0;
  }

  .handelsplattformen-auswaehlen-criteria-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

.handelsplattformen-auswaehlen-comparison-section {
  padding: 4rem 0;
  background: var(--color-bg-light-primary);
}

.handelsplattformen-auswaehlen-comparison-section h2 {
  color: var(--color-text-dark);
  margin-bottom: 3rem;
  text-align: center;
}

.handelsplattformen-auswaehlen-comparison-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.handelsplattformen-auswaehlen-comparison-item {
  padding: 2rem;
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-secondary);
}

.handelsplattformen-auswaehlen-comparison-item h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.handelsplattformen-auswaehlen-comparison-item p {
  color: var(--color-text-dark-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

.handelsplattformen-auswaehlen-pros-cons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.handelsplattformen-auswaehlen-pros,
.handelsplattformen-auswaehlen-cons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.handelsplattformen-auswaehlen-pros h4,
.handelsplattformen-auswaehlen-cons h4 {
  color: var(--color-text-dark);
  font-size: 1rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.handelsplattformen-auswaehlen-pros ul,
.handelsplattformen-auswaehlen-cons ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin: 0;
  padding-left: 1rem;
}

.handelsplattformen-auswaehlen-pros li,
.handelsplattformen-auswaehlen-cons li {
  color: var(--color-text-dark-secondary);
  font-size: 0.9rem;
}

.handelsplattformen-auswaehlen-comparison-section img {
  width: 100%;
  max-height: 350px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .handelsplattformen-auswaehlen-comparison-section {
    padding: 6rem 0;
  }

  .handelsplattformen-auswaehlen-pros-cons {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .handelsplattformen-auswaehlen-comparison-item {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .handelsplattformen-auswaehlen-comparison-section {
    padding: 8rem 0;
  }
}

.handelsplattformen-auswaehlen-practical-section {
  padding: 4rem 0;
  background: var(--color-bg-light-secondary);
}

.handelsplattformen-auswaehlen-practical-section h2 {
  color: var(--color-text-dark);
  margin-bottom: 3rem;
  text-align: center;
}

.handelsplattformen-auswaehlen-practical-steps {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
}

.handelsplattformen-auswaehlen-step {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--color-primary);
}

.handelsplattformen-auswaehlen-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  min-width: 50px;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.25rem;
  font-family: var(--font-heading);
}

.handelsplattformen-auswaehlen-step h3 {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.handelsplattformen-auswaehlen-step p {
  color: var(--color-text-dark-secondary);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.handelsplattformen-auswaehlen-practical-section img {
  width: 100%;
  max-height: 350px;
  border-radius: var(--radius-xl);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .handelsplattformen-auswaehlen-practical-section {
    padding: 6rem 0;
  }

  .handelsplattformen-auswaehlen-step {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .handelsplattformen-auswaehlen-practical-section {
    padding: 8rem 0;
  }
}

.handelsplattformen-auswaehlen-quote-section {
  padding: 4rem 0;
  background: var(--color-bg-dark-primary);
}

.handelsplattformen-auswaehlen-quote {
  text-align: center;
  margin: 0;
  padding: 0;
}

.handelsplattformen-auswaehlen-quote p {
  color: var(--color-text-light);
  font-size: 1.5rem;
  font-style: italic;
  line-height: 1.8;
  margin: 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .handelsplattformen-auswaehlen-quote-section {
    padding: 6rem 0;
  }

  .handelsplattformen-auswaehlen-quote p {
    font-size: 1.75rem;
  }
}

@media (min-width: 1024px) {
  .handelsplattformen-auswaehlen-quote-section {
    padding: 8rem 0;
  }
}

.handelsplattformen-auswaehlen-conclusion-section {
  padding: 4rem 0;
  background: var(--color-bg-light-primary);
}

.handelsplattformen-auswaehlen-conclusion-section h2 {
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
}

.handelsplattformen-auswaehlen-conclusion-section p {
  color: var(--color-text-dark-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 800px;
}

.handelsplattformen-auswaehlen-key-takeaways {
  padding: 2rem;
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-secondary);
  margin-top: 2rem;
}

.handelsplattformen-auswaehlen-key-takeaways h3 {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.handelsplattformen-auswaehlen-key-takeaways ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
}

.handelsplattformen-auswaehlen-key-takeaways li {
  color: var(--color-text-dark-secondary);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-size: 0.95rem;
}

.handelsplattformen-auswaehlen-key-takeaways i {
  color: var(--color-accent-gold);
  font-size: 1.25rem;
  margin-top: 0.25rem;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .handelsplattformen-auswaehlen-conclusion-section {
    padding: 6rem 0;
  }

  .handelsplattformen-auswaehlen-key-takeaways {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .handelsplattformen-auswaehlen-conclusion-section {
    padding: 8rem 0;
  }
}

.handelsplattformen-auswaehlen-disclaimer-section {
  padding: 4rem 0;
  background: var(--color-bg-light-secondary);
}

.handelsplattformen-auswaehlen-disclaimer-box {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-accent-gold);
}

.handelsplattformen-auswaehlen-disclaimer-box i {
  font-size: 1.5rem;
  color: var(--color-accent-gold);
  flex-shrink: 0;
}

.handelsplattformen-auswaehlen-disclaimer-box h3 {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.handelsplattformen-auswaehlen-disclaimer-box p {
  color: var(--color-text-dark-secondary);
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .handelsplattformen-auswaehlen-disclaimer-section {
    padding: 6rem 0;
  }

  .handelsplattformen-auswaehlen-disclaimer-box {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .handelsplattformen-auswaehlen-disclaimer-section {
    padding: 8rem 0;
  }
}

.handelsplattformen-auswaehlen-related-section {
  padding: 4rem 0;
  background: var(--color-bg-light-primary);
}

.handelsplattformen-auswaehlen-related-section h2 {
  color: var(--color-text-dark);
  margin-bottom: 3rem;
  text-align: center;
}

.handelsplattformen-auswaehlen-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

.handelsplattformen-auswaehlen-related-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  text-decoration: none;
}

.handelsplattformen-auswaehlen-related-card:hover {
  border-color: var(--color-primary);
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.handelsplattformen-auswaehlen-related-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.handelsplattformen-auswaehlen-related-card h3 {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  margin: 0;
}

.handelsplattformen-auswaehlen-related-card p {
  color: var(--color-text-dark-secondary);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

.handelsplattformen-auswaehlen-related-arrow {
  color: var(--color-primary);
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.handelsplattformen-auswaehlen-related-card:hover .handelsplattformen-auswaehlen-related-arrow {
  transform: translateX(4px);
}

@media (min-width: 768px) {
  .handelsplattformen-auswaehlen-related-section {
    padding: 6rem 0;
  }

  .handelsplattformen-auswaehlen-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .handelsplattformen-auswaehlen-related-card {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .handelsplattformen-auswaehlen-related-section {
    padding: 8rem 0;
  }

  .handelsplattformen-auswaehlen-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 767px) {
  .handelsplattformen-auswaehlen-hero {
    padding: 3rem 0;
  }

  .handelsplattformen-auswaehlen-hero-text h1 {
    font-size: 1.875rem;
  }

  .handelsplattformen-auswaehlen-hero-lead {
    font-size: 1rem;
  }

  .handelsplattformen-auswaehlen-hero-meta {
    flex-direction: column;
    gap: 1rem;
  }

  .handelsplattformen-auswaehlen-intro-section,
  .handelsplattformen-auswaehlen-criteria-section,
  .handelsplattformen-auswaehlen-comparison-section,
  .handelsplattformen-auswaehlen-practical-section,
  .handelsplattformen-auswaehlen-conclusion-section,
  .handelsplattformen-auswaehlen-disclaimer-section,
  .handelsplattformen-auswaehlen-related-section {
    padding: 3rem 0;
  }

  .handelsplattformen-auswaehlen-criteria-section h2,
  .handelsplattformen-auswaehlen-comparison-section h2,
  .handelsplattformen-auswaehlen-practical-section h2,
  .handelsplattformen-auswaehlen-related-section h2 {
    font-size: 1.75rem;
  }

  .handelsplattformen-auswaehlen-quote p {
    font-size: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

:root {
      --color-bg-dark-primary: #0a0f1e;
      --color-bg-dark-secondary: #0f1729;
      --color-bg-dark-tertiary: #1a2847;
      --color-bg-light-primary: #ffffff;
      --color-bg-light-secondary: #f8fafc;
      --color-text-light: #ffffff;
      --color-text-light-secondary: #e2e8f0;
      --color-text-light-muted: #94a3b8;
      --color-text-dark: #0f172a;
      --color-text-dark-secondary: #374151;
      --color-text-dark-muted: #6b7280;
      --color-primary: #3b82f6;
      --color-primary-hover: #2563eb;
      --color-secondary: #06b6d4;
      --color-accent-gold: #f59e0b;
      --font-primary: 'Inter', sans-serif;
      --font-heading: 'Playfair Display', serif;
      --space-sm: 1rem;
      --space-md: 1.5rem;
      --space-lg: 2rem;
      --space-xl: 3rem;
      --radius-lg: 12px;
      --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
      --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .post-wirtschaftliche-indikatoren {
      font-family: var(--font-primary);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
    }

    .post-wirtschaftliche-indikatoren .container {
      max-width: 1440px;
      width: 100%;
      margin: 0 auto;
      padding: 0 20px;
    }

    .post-wirtschaftliche-indikatoren h1,
    .post-wirtschaftliche-indikatoren h2,
    .post-wirtschaftliche-indikatoren h3,
    .post-wirtschaftliche-indikatoren h4 {
      font-family: var(--font-heading);
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.5px;
    }

    .post-wirtschaftliche-indikatoren h1 {
      font-size: 2.25rem;
      margin-bottom: 1rem;
    }

    .post-wirtschaftliche-indikatoren h2 {
      font-size: 1.875rem;
      margin-bottom: 1.25rem;
    }

    .post-wirtschaftliche-indikatoren h3 {
      font-size: 1.5rem;
      margin-bottom: 1rem;
    }

    .post-wirtschaftliche-indikatoren p {
      font-size: 0.95rem;
      line-height: 1.8;
      margin-bottom: 1rem;
    }

    .post-wirtschaftliche-indikatoren a {
      color: var(--color-primary);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .post-wirtschaftliche-indikatoren a:hover {
      color: var(--color-primary-hover);
      text-decoration: underline;
    }

    .wirtschaftliche-indikatoren-breadcrumbs {
      padding: 1.5rem 0;
      border-bottom: 1px solid #e2e8f0;
      margin-bottom: 2rem;
    }

    .wirtschaftliche-indikatoren-breadcrumbs p {
      font-size: 0.85rem;
      color: var(--color-text-dark-muted);
      margin: 0;
    }

    .wirtschaftliche-indikatoren-breadcrumbs a {
      color: var(--color-primary);
    }

    .wirtschaftliche-indikatoren-hero-section {
      background: var(--color-bg-dark-primary);
      padding: 4rem 0;
      overflow: hidden;
      position: relative;
    }

    .wirtschaftliche-indikatoren-hero-section::before {
      content: '';
      position: absolute;
      top: -300px;
      right: -200px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .wirtschaftliche-indikatoren-hero-section::after {
      content: '';
      position: absolute;
      bottom: -200px;
      left: -300px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .wirtschaftliche-indikatoren-hero-content {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      align-items: center;
    }

    .wirtschaftliche-indikatoren-hero-text h1 {
      color: var(--color-text-light);
      font-size: 2.75rem;
      margin-bottom: 1rem;
    }

    .wirtschaftliche-indikatoren-hero-text p {
      color: var(--color-text-light-secondary);
      font-size: 1.1rem;
      margin-bottom: 1.5rem;
      max-width: 650px;
    }

    .wirtschaftliche-indikatoren-hero-meta {
      display: flex;
      gap: 1.5rem;
      color: var(--color-text-light-muted);
      font-size: 0.9rem;
      margin-bottom: 2rem;
    }

    .wirtschaftliche-indikatoren-hero-image {
      width: 100%;
      height: 350px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(6, 182, 212, 0.2) 100%);
      border: 2px solid rgba(59, 130, 246, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .wirtschaftliche-indikatoren-hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .wirtschaftliche-indikatoren-content-section {
      background: var(--color-bg-light-primary);
      padding: 4rem 0;
      overflow: hidden;
    }

    .wirtschaftliche-indikatoren-content-section:nth-child(even) {
      background: var(--color-bg-light-secondary);
    }

    .wirtschaftliche-indikatoren-content-block {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      align-items: center;
      margin-bottom: 3rem;
    }

    .wirtschaftliche-indikatoren-content-block:last-child {
      margin-bottom: 0;
    }

    .wirtschaftliche-indikatoren-content-text h2 {
      color: var(--color-text-dark);
      margin-bottom: 1rem;
    }

    .wirtschaftliche-indikatoren-content-text p {
      color: var(--color-text-dark-secondary);
      margin-bottom: 1rem;
    }

    .wirtschaftliche-indikatoren-content-text ul {
      list-style: none;
      margin: 1.5rem 0;
    }

    .wirtschaftliche-indikatoren-content-text li {
      color: var(--color-text-dark-secondary);
      margin-bottom: 0.75rem;
      padding-left: 1.75rem;
      position: relative;
    }

    .wirtschaftliche-indikatoren-content-text li::before {
      content: '';
      position: absolute;
      left: 0;
      color: var(--color-secondary);
      font-weight: 700;
      font-size: 1.1rem;
    }

    .wirtschaftliche-indikatoren-content-image {
      width: 100%;
      height: 320px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
      border: 2px solid #e2e8f0;
    }

    .wirtschaftliche-indikatoren-content-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .wirtschaftliche-indikatoren-highlight-box {
      background: var(--color-bg-card-dark);
      border-left: 4px solid var(--color-secondary);
      padding: 1.5rem;
      border-radius: var(--radius-lg);
      margin: 2rem 0;
      background: rgba(6, 182, 212, 0.08);
    }

    .wirtschaftliche-indikatoren-highlight-box p {
      color: var(--color-text-dark-secondary);
      margin: 0;
      font-style: italic;
    }

    .wirtschaftliche-indikatoren-quote-section {
      background: var(--color-bg-dark-secondary);
      padding: 3rem;
      border-radius: var(--radius-lg);
      margin: 3rem 0;
      position: relative;
      overflow: hidden;
      border-left: 5px solid var(--color-accent-gold);
    }

    .wirtschaftliche-indikatoren-quote-section::before {
      content: '';
      position: absolute;
      top: -200px;
      right: -200px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .wirtschaftliche-indikatoren-quote-text {
      color: var(--color-text-light);
      font-size: 1.3rem;
      font-style: italic;
      margin: 0;
      position: relative;
      z-index: 2;
      font-family: var(--font-heading);
      line-height: 1.6;
    }

    .wirtschaftliche-indikatoren-disclaimer-section {
      background: var(--color-bg-light-secondary);
      padding: 2.5rem;
      border-radius: var(--radius-lg);
      border: 2px solid #e2e8f0;
      margin: 3rem 0;
    }

    .wirtschaftliche-indikatoren-disclaimer-section h3 {
      color: var(--color-text-dark);
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .wirtschaftliche-indikatoren-disclaimer-section h3::before {
      content: '';
      font-size: 1.5rem;
      color: var(--color-primary);
    }

    .wirtschaftliche-indikatoren-disclaimer-section p {
      color: var(--color-text-dark-secondary);
      font-size: 0.9rem;
      margin: 0;
      line-height: 1.7;
    }

    .wirtschaftliche-indikatoren-related-section {
      background: var(--color-bg-light-primary);
      padding: 4rem 0;
      overflow: hidden;
    }

    .wirtschaftliche-indikatoren-related-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .wirtschaftliche-indikatoren-related-header h2 {
      color: var(--color-text-dark);
      margin-bottom: 0.5rem;
    }

    .wirtschaftliche-indikatoren-related-header p {
      color: var(--color-text-dark-secondary);
      max-width: 500px;
      margin: 0 auto;
    }

    .wirtschaftliche-indikatoren-related-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }

    .wirtschaftliche-indikatoren-related-card {
      background: var(--color-bg-light-secondary);
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 2px solid #e2e8f0;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .wirtschaftliche-indikatoren-related-card:hover {
      transform: translateY(-8px);
      border-color: var(--color-primary);
      box-shadow: var(--shadow-lg);
    }

    .wirtschaftliche-indikatoren-related-card-image {
      width: 100%;
      height: 200px;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
      display: flex;
      align-items: center;
      justify-content: center;
      overflow: hidden;
    }

    .wirtschaftliche-indikatoren-related-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .wirtschaftliche-indikatoren-related-card-content {
      padding: 1.5rem;
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .wirtschaftliche-indikatoren-related-card h3 {
      color: var(--color-text-dark);
      font-size: 1.25rem;
      margin: 0;
    }

    .wirtschaftliche-indikatoren-related-card p {
      color: var(--color-text-dark-secondary);
      font-size: 0.9rem;
      margin: 0;
      flex: 1;
    }

    .wirtschaftliche-indikatoren-related-card a {
      color: var(--color-primary);
      font-weight: 600;
      font-size: 0.95rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.3s ease;
      align-self: flex-start;
    }

    .wirtschaftliche-indikatoren-related-card a:hover {
      gap: 0.75rem;
    }

    @media (min-width: 768px) {
      .post-wirtschaftliche-indikatoren h1 {
        font-size: 2.75rem;
      }

      .post-wirtschaftliche-indikatoren h2 {
        font-size: 2rem;
      }

      .post-wirtschaftliche-indikatoren h3 {
        font-size: 1.5rem;
      }

      .post-wirtschaftliche-indikatoren p {
        font-size: 1rem;
      }

      .wirtschaftliche-indikatoren-hero-section {
        padding: 5rem 0;
      }

      .wirtschaftliche-indikatoren-hero-text h1 {
        font-size: 3rem;
      }

      .wirtschaftliche-indikatoren-hero-text p {
        font-size: 1.2rem;
      }

      .wirtschaftliche-indikatoren-hero-image {
        height: 400px;
      }

      .wirtschaftliche-indikatoren-content-section {
        padding: 5rem 0;
      }

      .wirtschaftliche-indikatoren-content-block {
        grid-template-columns: 1fr 1fr;
      }

      .wirtschaftliche-indikatoren-content-image {
        height: 350px;
      }

      .wirtschaftliche-indikatoren-quote-section {
        padding: 3.5rem;
        margin: 4rem 0;
      }

      .wirtschaftliche-indikatoren-quote-text {
        font-size: 1.5rem;
      }

      .wirtschaftliche-indikatoren-related-section {
        padding: 5rem 0;
      }

      .wirtschaftliche-indikatoren-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
      }
    }

    @media (min-width: 1024px) {
      .post-wirtschaftliche-indikatoren h1 {
        font-size: 3.5rem;
      }

      .wirtschaftliche-indikatoren-hero-section {
        padding: 6rem 0;
      }

      .wirtschaftliche-indikatoren-hero-text h1 {
        font-size: 3.5rem;
      }

      .wirtschaftliche-indikatoren-content-section {
        padding: 6rem 0;
      }
    }

:root {
      --color-bg-dark-primary: #0a0f1e;
      --color-bg-dark-secondary: #0f1729;
      --color-bg-light-primary: #ffffff;
      --color-bg-light-secondary: #f8fafc;
      --color-text-light: #ffffff;
      --color-text-light-secondary: #e2e8f0;
      --color-text-light-muted: #94a3b8;
      --color-text-dark: #0f172a;
      --color-text-dark-secondary: #374151;
      --color-primary: #3b82f6;
      --color-primary-hover: #2563eb;
      --color-secondary: #06b6d4;
      --color-accent-gold: #f59e0b;
      --font-primary: 'Inter', sans-serif;
      --font-heading: 'Playfair Display', serif;
    }

    .post-broker-rollen {
      font-family: var(--font-primary);
      color: var(--color-text-dark);
      background: var(--color-bg-light-primary);
    }

    .post-broker-rollen .broker-rollen-breadcrumbs {
      background: var(--color-bg-light-secondary);
      padding: 1rem 0;
      border-bottom: 1px solid #e2e8f0;
    }

    .post-broker-rollen .broker-rollen-breadcrumbs .container {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .post-broker-rollen .broker-rollen-breadcrumb-list {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      list-style: none;
      font-size: 0.9rem;
    }

    .post-broker-rollen .broker-rollen-breadcrumb-item {
      color: var(--color-text-dark-secondary);
    }

    .post-broker-rollen .broker-rollen-breadcrumb-item a {
      color: var(--color-primary);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .post-broker-rollen .broker-rollen-breadcrumb-item a:hover {
      color: var(--color-primary-hover);
    }

    .post-broker-rollen .broker-rollen-breadcrumb-separator {
      color: var(--color-text-dark-muted);
    }

    .post-broker-rollen .broker-rollen-hero {
      background: var(--color-bg-light-primary);
      padding: 4rem 0;
      position: relative;
      overflow: hidden;
    }

    .post-broker-rollen .broker-rollen-hero .container {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .post-broker-rollen .broker-rollen-hero-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .post-broker-rollen .broker-rollen-hero h1 {
      font-family: var(--font-heading);
      font-size: 3rem;
      font-weight: 700;
      color: var(--color-text-dark);
      line-height: 1.2;
      margin: 0 0 1rem 0;
    }

    .post-broker-rollen .broker-rollen-hero-meta {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
      color: var(--color-text-dark-secondary);
      font-size: 0.95rem;
      margin-bottom: 2rem;
    }

    .post-broker-rollen .broker-rollen-hero-meta-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .post-broker-rollen .broker-rollen-hero-image {
      width: 100%;
      max-height: 400px;
      border-radius: 12px;
      object-fit: cover;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    }

    .post-broker-rollen .broker-rollen-content {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .post-broker-rollen .broker-rollen-article {
      padding: 4rem 0;
      line-height: 1.8;
    }

    .post-broker-rollen .broker-rollen-article-section {
      margin-bottom: 4rem;
    }

    .post-broker-rollen .broker-rollen-article h2 {
      font-family: var(--font-heading);
      font-size: 2.25rem;
      color: var(--color-text-dark);
      line-height: 1.2;
      margin: 0 0 1.5rem 0;
      font-weight: 700;
    }

    .post-broker-rollen .broker-rollen-article h3 {
      font-family: var(--font-heading);
      font-size: 1.5rem;
      color: var(--color-text-dark);
      line-height: 1.2;
      margin: 2rem 0 1rem 0;
      font-weight: 700;
    }

    .post-broker-rollen .broker-rollen-article p {
      color: var(--color-text-dark-secondary);
      font-size: 1rem;
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }

    .post-broker-rollen .broker-rollen-article-image {
      width: 100%;
      max-height: 350px;
      border-radius: 12px;
      object-fit: cover;
      margin: 2rem 0;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    .post-broker-rollen .broker-rollen-highlight-box {
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
      border-left: 4px solid var(--color-primary);
      padding: 1.5rem;
      border-radius: 8px;
      margin: 2rem 0;
    }

    .post-broker-rollen .broker-rollen-highlight-box h3 {
      margin-top: 0;
      color: var(--color-text-dark);
    }

    .post-broker-rollen .broker-rollen-highlight-box p {
      margin-bottom: 0;
      color: var(--color-text-dark-secondary);
    }

    .post-broker-rollen .broker-rollen-list {
      list-style: none;
      padding: 0;
      margin: 2rem 0;
    }

    .post-broker-rollen .broker-rollen-list li {
      padding: 0.75rem 0 0.75rem 2rem;
      color: var(--color-text-dark-secondary);
      position: relative;
    }

    .post-broker-rollen .broker-rollen-list li::before {
      content: '';
      position: absolute;
      left: 0;
      color: var(--color-secondary);
      font-weight: bold;
      font-size: 1.1rem;
    }

    .post-broker-rollen .broker-rollen-quote {
      background: var(--color-bg-light-secondary);
      border-left: 4px solid var(--color-accent-gold);
      padding: 2rem;
      margin: 2.5rem 0;
      border-radius: 8px;
      font-style: italic;
      color: var(--color-text-dark);
      font-size: 1.1rem;
      line-height: 1.8;
    }

    .post-broker-rollen .broker-rollen-disclaimer {
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
      border: 1px solid rgba(59, 130, 246, 0.2);
      border-radius: 12px;
      padding: 2rem;
      margin: 3rem 0;
    }

    .post-broker-rollen .broker-rollen-disclaimer-title {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-weight: 700;
      color: var(--color-text-dark);
      margin-bottom: 1rem;
      font-size: 1.1rem;
    }

    .post-broker-rollen .broker-rollen-disclaimer-icon {
      color: var(--color-primary);
      font-size: 1.5rem;
    }

    .post-broker-rollen .broker-rollen-disclaimer p {
      color: var(--color-text-dark-secondary);
      margin: 0;
      font-size: 0.95rem;
    }

    .post-broker-rollen .broker-rollen-related {
      background: var(--color-bg-light-secondary);
      padding: 4rem 0;
      margin-top: 4rem;
      border-top: 1px solid #e2e8f0;
    }

    .post-broker-rollen .broker-rollen-related .container {
      max-width: 900px;
      margin: 0 auto;
      padding: 0 20px;
    }

    .post-broker-rollen .broker-rollen-related h2 {
      font-family: var(--font-heading);
      font-size: 2rem;
      color: var(--color-text-dark);
      text-align: center;
      margin-bottom: 3rem;
      font-weight: 700;
    }

    .post-broker-rollen .broker-rollen-related-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }

    .post-broker-rollen .broker-rollen-related-card {
      background: var(--color-bg-light-primary);
      border: 1px solid #e2e8f0;
      border-radius: 12px;
      padding: 1.5rem;
      transition: all 0.3s ease;
    }

    .post-broker-rollen .broker-rollen-related-card:hover {
      border-color: var(--color-primary);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
      transform: translateY(-4px);
    }

    .post-broker-rollen .broker-rollen-related-card h3 {
      font-family: var(--font-heading);
      font-size: 1.25rem;
      color: var(--color-text-dark);
      margin: 0 0 0.75rem 0;
      font-weight: 700;
    }

    .post-broker-rollen .broker-rollen-related-card p {
      color: var(--color-text-dark-secondary);
      font-size: 0.95rem;
      margin: 0 0 1.5rem 0;
      line-height: 1.6;
    }

    .post-broker-rollen .broker-rollen-related-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--color-primary);
      text-decoration: none;
      font-weight: 600;
      transition: all 0.3s ease;
    }

    .post-broker-rollen .broker-rollen-related-link:hover {
      color: var(--color-primary-hover);
      gap: 0.75rem;
    }

    @media (min-width: 768px) {
      .post-broker-rollen .broker-rollen-hero {
        padding: 5rem 0;
      }

      .post-broker-rollen .broker-rollen-hero h1 {
        font-size: 3.5rem;
      }

      .post-broker-rollen .broker-rollen-article {
        padding: 5rem 0;
      }

      .post-broker-rollen .broker-rollen-article h2 {
        font-size: 2.5rem;
      }

      .post-broker-rollen .broker-rollen-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
      }
    }

    @media (max-width: 767px) {
      .post-broker-rollen .broker-rollen-hero {
        padding: 2.5rem 0;
      }

      .post-broker-rollen .broker-rollen-hero h1 {
        font-size: 2rem;
      }

      .post-broker-rollen .broker-rollen-hero-meta {
        gap: 1rem;
        font-size: 0.85rem;
      }

      .post-broker-rollen .broker-rollen-article {
        padding: 2.5rem 0;
      }

      .post-broker-rollen .broker-rollen-article h2 {
        font-size: 1.75rem;
      }

      .post-broker-rollen .broker-rollen-article h3 {
        font-size: 1.25rem;
      }

      .post-broker-rollen .broker-rollen-article p {
        font-size: 0.95rem;
      }

      .post-broker-rollen .broker-rollen-related {
        padding: 2.5rem 0;
      }

      .post-broker-rollen .broker-rollen-related h2 {
        font-size: 1.5rem;
      }

      .post-broker-rollen .broker-rollen-related-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .post-broker-rollen .broker-rollen-breadcrumb-list {
        font-size: 0.8rem;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }

:root {
      --color-bg-dark-primary: #0a0f1e;
      --color-bg-dark-secondary: #0f1729;
      --color-bg-light-primary: #ffffff;
      --color-bg-light-secondary: #f8fafc;
      --color-text-light: #ffffff;
      --color-text-light-secondary: #e2e8f0;
      --color-text-light-muted: #94a3b8;
      --color-text-dark: #0f172a;
      --color-text-dark-secondary: #374151;
      --color-text-dark-muted: #6b7280;
      --color-primary: #3b82f6;
      --color-primary-hover: #2563eb;
      --color-secondary: #06b6d4;
      --color-accent-gold: #f59e0b;
      --font-primary: 'Inter', sans-serif;
      --font-heading: 'Playfair Display', serif;
      --radius-lg: 12px;
      --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
      --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .post-performance-tracking {
      font-family: var(--font-primary);
      line-height: 1.6;
    }

    .container {
      max-width: 1440px;
      width: 100%;
      margin: 0 auto;
      padding: 0 20px;
    }

    .performance-tracking-breadcrumbs {
      background: var(--color-bg-dark-primary);
      padding: 1.5rem 0;
      border-bottom: 1px solid rgba(59, 130, 246, 0.1);
    }

    .performance-tracking-breadcrumbs-content {
      display: flex;
      gap: 0.5rem;
      align-items: center;
    }

    .performance-tracking-breadcrumbs a {
      color: var(--color-primary);
      text-decoration: none;
      font-size: 0.875rem;
      transition: color 0.3s ease;
    }

    .performance-tracking-breadcrumbs a:hover {
      color: var(--color-secondary);
    }

    .performance-tracking-breadcrumbs-separator {
      color: var(--color-text-light-muted);
      font-size: 0.75rem;
    }

    .performance-tracking-hero {
      background: var(--color-bg-dark-primary);
      padding: 6rem 0 4rem;
      position: relative;
      overflow: hidden;
    }

    .performance-tracking-hero::before {
      content: '';
      position: absolute;
      top: -300px;
      right: -200px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .performance-tracking-hero::after {
      content: '';
      position: absolute;
      bottom: -250px;
      left: -150px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .performance-tracking-hero-content {
      position: relative;
      z-index: 2;
    }

    .performance-tracking-hero h1 {
      font-family: var(--font-heading);
      font-size: 3.5rem;
      color: var(--color-text-light);
      margin-bottom: 1rem;
      font-weight: 700;
      line-height: 1.2;
    }

    .performance-tracking-hero-meta {
      display: flex;
      gap: 2rem;
      margin-bottom: 2rem;
      flex-wrap: wrap;
    }

    .performance-tracking-hero-meta-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--color-text-light-muted);
      font-size: 0.9rem;
    }

    .performance-tracking-hero-meta-item .fas {
      color: var(--color-secondary);
      font-size: 1rem;
    }

    .performance-tracking-hero-image {
      margin-top: 3rem;
      border-radius: var(--radius-lg);
      overflow: hidden;
      height: 400px;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(6, 182, 212, 0.2) 100%);
      border: 2px solid rgba(59, 130, 246, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .performance-tracking-hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .performance-tracking-content-wrapper {
      background: var(--color-bg-light-primary);
      padding: 5rem 0;
    }

    .performance-tracking-content-section {
      margin-bottom: 4rem;
    }

    .performance-tracking-content-section h2 {
      font-family: var(--font-heading);
      font-size: 2.5rem;
      color: var(--color-text-dark);
      margin-bottom: 1.5rem;
      font-weight: 700;
      line-height: 1.2;
    }

    .performance-tracking-content-section h3 {
      font-family: var(--font-heading);
      font-size: 1.75rem;
      color: var(--color-text-dark);
      margin: 2rem 0 1rem;
      font-weight: 700;
    }

    .performance-tracking-content-section p {
      color: var(--color-text-dark-secondary);
      font-size: 1.05rem;
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }

    .performance-tracking-content-image {
      width: 100%;
      max-height: 350px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      margin: 2rem 0;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
      border: 1px solid #e2e8f0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .performance-tracking-content-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .performance-tracking-highlight-box {
      background: rgba(59, 130, 246, 0.08);
      border-left: 4px solid var(--color-primary);
      padding: 1.5rem;
      border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
      margin: 2rem 0;
    }

    .performance-tracking-highlight-box p {
      margin: 0;
      color: var(--color-text-dark);
      font-weight: 500;
    }

    .performance-tracking-list {
      list-style: none;
      margin: 1.5rem 0;
      color: var(--color-text-dark-secondary);
    }

    .performance-tracking-list li {
      padding: 0.75rem 0 0.75rem 2rem;
      position: relative;
      color: var(--color-text-dark-secondary);
      line-height: 1.7;
    }

    .performance-tracking-list li::before {
      content: '';
      position: absolute;
      left: 0;
      color: var(--color-secondary);
      font-weight: 700;
      font-size: 1.25rem;
    }

    .performance-tracking-pull-quote {
      background: var(--color-bg-light-secondary);
      border-left: 5px solid var(--color-accent-gold);
      padding: 2rem;
      margin: 3rem 0;
      border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
      font-style: italic;
    }

    .performance-tracking-pull-quote p {
      font-size: 1.25rem;
      color: var(--color-text-dark);
      margin: 0;
      line-height: 1.7;
    }

    .performance-tracking-disclaimer {
      background: var(--color-bg-light-secondary);
      border: 2px solid #e2e8f0;
      padding: 2rem;
      border-radius: var(--radius-lg);
      margin: 4rem 0;
    }

    .performance-tracking-disclaimer-title {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1rem;
    }

    .performance-tracking-disclaimer-title .fas {
      color: var(--color-primary);
      font-size: 1.25rem;
    }

    .performance-tracking-disclaimer-title h3 {
      margin: 0;
      color: var(--color-text-dark);
      font-size: 1.1rem;
    }

    .performance-tracking-disclaimer p {
      color: var(--color-text-dark-secondary);
      font-size: 0.95rem;
      margin: 0;
      line-height: 1.7;
    }

    .performance-tracking-related {
      background: var(--color-bg-dark-secondary);
      padding: 5rem 0;
    }

    .performance-tracking-related h2 {
      font-family: var(--font-heading);
      font-size: 2.5rem;
      color: var(--color-text-light);
      margin-bottom: 3rem;
      text-align: center;
      font-weight: 700;
    }

    .performance-tracking-related-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }

    .performance-tracking-related-card {
      background: rgba(59, 130, 246, 0.08);
      border: 1px solid rgba(59, 130, 246, 0.2);
      border-radius: var(--radius-lg);
      padding: 2rem;
      transition: all 0.3s ease;
      text-decoration: none;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .performance-tracking-related-card:hover {
      background: rgba(59, 130, 246, 0.12);
      border-color: rgba(59, 130, 246, 0.4);
      transform: translateY(-4px);
    }

    .performance-tracking-related-card h3 {
      font-family: var(--font-heading);
      font-size: 1.25rem;
      color: var(--color-text-light);
      margin: 0;
      font-weight: 700;
    }

    .performance-tracking-related-card p {
      color: var(--color-text-light-muted);
      font-size: 0.95rem;
      margin: 0;
      line-height: 1.6;
    }

    .performance-tracking-related-card .fas {
      color: var(--color-secondary);
      font-size: 1.5rem;
      margin-bottom: 0.5rem;
    }

    @media (min-width: 768px) {
      .performance-tracking-hero {
        padding: 8rem 0 5rem;
      }

      .performance-tracking-hero h1 {
        font-size: 3.75rem;
      }

      .performance-tracking-hero-image {
        height: 450px;
      }

      .performance-tracking-content-wrapper {
        padding: 6rem 0;
      }

      .performance-tracking-content-section h2 {
        font-size: 2.75rem;
      }

      .performance-tracking-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
      }
    }

    @media (min-width: 1024px) {
      .performance-tracking-hero {
        padding: 10rem 0 6rem;
      }

      .performance-tracking-hero h1 {
        font-size: 3.75rem;
      }

      .performance-tracking-hero-image {
        height: 500px;
      }

      .performance-tracking-content-wrapper {
        padding: 7rem 0;
      }

      .performance-tracking-related {
        padding: 7rem 0;
      }
    }

    @media (max-width: 767px) {
      .performance-tracking-hero {
        padding: 4rem 0 2.5rem;
      }

      .performance-tracking-hero h1 {
        font-size: 2.25rem;
      }

      .performance-tracking-hero-meta {
        gap: 1rem;
        flex-direction: column;
      }

      .performance-tracking-hero-image {
        height: 280px;
        margin-top: 2rem;
      }

      .performance-tracking-content-wrapper {
        padding: 3rem 0;
      }

      .performance-tracking-content-section {
        margin-bottom: 2.5rem;
      }

      .performance-tracking-content-section h2 {
        font-size: 1.875rem;
      }

      .performance-tracking-content-section h3 {
        font-size: 1.25rem;
      }

      .performance-tracking-content-section p {
        font-size: 0.95rem;
      }

      .performance-tracking-content-image {
        max-height: 250px;
        margin: 1.5rem 0;
      }

      .performance-tracking-pull-quote {
        padding: 1.5rem;
        margin: 2rem 0;
      }

      .performance-tracking-pull-quote p {
        font-size: 1.1rem;
      }

      .performance-tracking-disclaimer {
        padding: 1.5rem;
        margin: 3rem 0;
      }

      .performance-tracking-related {
        padding: 3rem 0;
      }

      .performance-tracking-related h2 {
        font-size: 1.875rem;
        margin-bottom: 2rem;
      }

      .performance-tracking-related-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }

:root {
      --color-bg-dark-primary: #0a0f1e;
      --color-bg-dark-secondary: #0f1729;
      --color-bg-light-primary: #ffffff;
      --color-bg-light-secondary: #f8fafc;
      --color-text-light: #ffffff;
      --color-text-light-secondary: #e2e8f0;
      --color-text-light-muted: #94a3b8;
      --color-text-dark: #0f172a;
      --color-text-dark-secondary: #374151;
      --color-text-dark-muted: #6b7280;
      --color-primary: #3b82f6;
      --color-primary-hover: #2563eb;
      --color-secondary: #06b6d4;
      --color-accent-green: #10b981;
      --color-accent-gold: #f59e0b;
      --font-primary: 'Inter', sans-serif;
      --font-heading: 'Playfair Display', serif;
      --radius-md: 8px;
      --radius-lg: 12px;
      --radius-xl: 16px;
      --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
      --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
    }

    .post-anfaenger-leitfaden-handel {
      font-family: var(--font-primary);
      line-height: 1.6;
      color: var(--color-text-dark);
    }

    .container {
      max-width: 1440px;
      width: 100%;
      margin: 0 auto;
      padding: 0 20px;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-breadcrumbs {
      background: var(--color-bg-light-secondary);
      padding: 1rem 0;
      font-size: 0.875rem;
      border-bottom: 1px solid #e2e8f0;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-breadcrumbs a {
      color: var(--color-primary);
      transition: color 0.3s ease;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-breadcrumbs a:hover {
      color: var(--color-primary-hover);
      text-decoration: underline;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-breadcrumbs span {
      color: var(--color-text-dark-muted);
      margin: 0 0.5rem;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-hero {
      background: var(--color-bg-light-primary);
      padding: 4rem 0;
      border-bottom: 2px solid #e2e8f0;
      overflow: hidden;
      position: relative;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-hero-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2.5rem;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-hero h1 {
      font-family: var(--font-heading);
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--color-text-dark);
      line-height: 1.2;
      margin: 0 0 1rem 0;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      align-items: center;
      margin-bottom: 1.5rem;
      font-size: 0.875rem;
      color: var(--color-text-dark-secondary);
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-hero-meta span {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-hero-meta .fas {
      color: var(--color-primary);
      font-size: 1rem;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-hero-image {
      width: 100%;
      height: 350px;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
      border-radius: var(--radius-xl);
      border: 2px solid #e2e8f0;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-text-dark-muted);
      font-size: 0.95rem;
      text-align: center;
      padding: 2rem;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-lead-section {
      background: var(--color-bg-light-secondary);
      padding: 3rem 0;
      border-bottom: 1px solid #e2e8f0;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-lead {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      align-items: center;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-lead-text p {
      font-size: 1.125rem;
      color: var(--color-text-dark-secondary);
      line-height: 1.8;
      margin: 0 0 1.5rem 0;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-lead-text p:last-child {
      margin-bottom: 0;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-lead-image {
      width: 100%;
      height: 300px;
      background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(59, 130, 246, 0.12) 100%);
      border-radius: var(--radius-xl);
      border: 1px solid rgba(59, 130, 246, 0.2);
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-text-dark-muted);
      font-size: 0.9rem;
      text-align: center;
      padding: 2rem;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-lead-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-content-section {
      background: var(--color-bg-light-primary);
      padding: 4rem 0;
      border-bottom: 1px solid #e2e8f0;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-content-1 {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      align-items: flex-start;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-content-1 h2 {
      font-family: var(--font-heading);
      font-size: 2rem;
      font-weight: 700;
      color: var(--color-text-dark);
      line-height: 1.2;
      margin: 0 0 1rem 0;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-content-1-text p {
      color: var(--color-text-dark-secondary);
      font-size: 1rem;
      line-height: 1.7;
      margin: 0 0 1.5rem 0;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-content-1-text p:last-child {
      margin-bottom: 0;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-highlights {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1rem;
      margin: 2rem 0;
      list-style: none;
      padding: 0;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-highlights li {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      padding: 1rem;
      background: rgba(59, 130, 246, 0.05);
      border-left: 3px solid var(--color-primary);
      border-radius: var(--radius-md);
      color: var(--color-text-dark-secondary);
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-highlights .fas {
      color: var(--color-primary);
      font-size: 1.25rem;
      flex-shrink: 0;
      margin-top: 0.25rem;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-content-1-image {
      width: 100%;
      height: 320px;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(245, 158, 11, 0.1) 100%);
      border-radius: var(--radius-xl);
      border: 1px solid #e2e8f0;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-text-dark-muted);
      font-size: 0.9rem;
      text-align: center;
      padding: 2rem;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-content-1-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-content-2 {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      align-items: flex-start;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-content-2 h2 {
      font-family: var(--font-heading);
      font-size: 2rem;
      font-weight: 700;
      color: var(--color-text-dark);
      line-height: 1.2;
      margin: 0 0 1rem 0;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-content-2-text p {
      color: var(--color-text-dark-secondary);
      font-size: 1rem;
      line-height: 1.7;
      margin: 0 0 1.5rem 0;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-content-2-text p:last-child {
      margin-bottom: 0;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-steps {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin: 2rem 0;
      list-style: none;
      padding: 0;
      counter-reset: step-counter;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-steps li {
      display: grid;
      grid-template-columns: 50px 1fr;
      gap: 1.5rem;
      padding: 1.5rem;
      background: var(--color-bg-light-secondary);
      border-radius: var(--radius-lg);
      border: 1px solid #e2e8f0;
      color: var(--color-text-dark-secondary);
      font-size: 0.95rem;
      line-height: 1.6;
      counter-increment: step-counter;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-steps li::before {
      content: counter(step-counter);
      width: 50px;
      height: 50px;
      background: var(--color-primary);
      color: #ffffff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.25rem;
      flex-shrink: 0;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-content-2-image {
      width: 100%;
      height: 320px;
      background: linear-gradient(135deg, rgba(6, 182, 212, 0.1) 0%, rgba(16, 185, 129, 0.1) 100%);
      border-radius: var(--radius-xl);
      border: 1px solid #e2e8f0;
      overflow: hidden;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-text-dark-muted);
      font-size: 0.9rem;
      text-align: center;
      padding: 2rem;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-content-2-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-content-3 {
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
      padding: 3rem;
      border-radius: var(--radius-xl);
      border: 1px solid rgba(59, 130, 246, 0.2);
      margin: 3rem 0;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-content-3 h3 {
      font-family: var(--font-heading);
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--color-text-dark);
      line-height: 1.2;
      margin: 0 0 1rem 0;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-content-3 .fas {
      color: var(--color-secondary);
      font-size: 1.5rem;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-content-3 p {
      color: var(--color-text-dark-secondary);
      font-size: 0.95rem;
      line-height: 1.7;
      margin: 0;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-quote-section {
      background: var(--color-bg-dark-primary);
      padding: 4rem;
      border-radius: var(--radius-xl);
      margin: 3rem 0;
      border-left: 4px solid var(--color-primary);
      position: relative;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-quote-section blockquote {
      font-family: var(--font-heading);
      font-size: 1.5rem;
      font-weight: 700;
      color: var(--color-text-light);
      line-height: 1.4;
      margin: 0;
      font-style: italic;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-quote-attribution {
      color: var(--color-text-light-muted);
      font-size: 0.9rem;
      margin-top: 1rem;
      font-style: normal;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-disclaimer-section {
      background: var(--color-bg-light-secondary);
      padding: 3rem;
      border-radius: var(--radius-xl);
      border: 1px solid #e2e8f0;
      margin: 4rem 0;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-disclaimer-section h3 {
      font-family: var(--font-heading);
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--color-text-dark);
      line-height: 1.2;
      margin: 0 0 1rem 0;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-disclaimer-section .fas {
      color: var(--color-accent-gold);
      font-size: 1.25rem;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-disclaimer-section p {
      color: var(--color-text-dark-secondary);
      font-size: 0.9rem;
      line-height: 1.6;
      margin: 0 0 1rem 0;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-disclaimer-section p:last-child {
      margin-bottom: 0;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-related-section {
      background: var(--color-bg-light-primary);
      padding: 4rem 0;
      border-top: 2px solid #e2e8f0;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-related-section h2 {
      font-family: var(--font-heading);
      font-size: 2rem;
      font-weight: 700;
      color: var(--color-text-dark);
      line-height: 1.2;
      margin: 0 0 2rem 0;
      text-align: center;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-related-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-related-card {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding: 1.5rem;
      background: var(--color-bg-light-secondary);
      border-radius: var(--radius-lg);
      border: 1px solid #e2e8f0;
      transition: all 0.3s ease;
      text-decoration: none;
      color: inherit;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-related-card:hover {
      transform: translateY(-6px);
      border-color: var(--color-primary);
      box-shadow: var(--shadow-lg);
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-related-card h3 {
      font-family: var(--font-heading);
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--color-text-dark);
      line-height: 1.3;
      margin: 0;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-related-card p {
      color: var(--color-text-dark-secondary);
      font-size: 0.9rem;
      line-height: 1.6;
      margin: 0;
      flex-grow: 1;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-related-arrow {
      color: var(--color-primary);
      font-size: 1rem;
      transition: transform 0.3s ease;
    }

    .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-related-card:hover .anfaenger-leitfaden-handel-related-arrow {
      transform: translateX(4px);
    }

    @media (min-width: 768px) {
      .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-hero {
        padding: 5rem 0;
      }

      .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-hero h1 {
        font-size: 3rem;
      }

      .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-hero-image {
        height: 400px;
      }

      .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-lead-section {
        padding: 4rem 0;
      }

      .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-lead {
        grid-template-columns: 1fr 1fr;
      }

      .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-lead-image {
        height: 350px;
      }

      .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-content-section {
        padding: 5rem 0;
      }

      .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-content-1 {
        grid-template-columns: 1fr 1fr;
      }

      .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-content-1 h2 {
        font-size: 2.25rem;
      }

      .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-content-1-image {
        height: 350px;
      }

      .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-content-2 {
        grid-template-columns: 1fr 1fr;
      }

      .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-content-2 h2 {
        font-size: 2.25rem;
      }

      .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-content-2-image {
        height: 350px;
      }

      .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-related-section {
        padding: 5rem 0;
      }

      .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-related-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-hero {
        padding: 6rem 0;
      }

      .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-hero h1 {
        font-size: 3.5rem;
      }

      .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-hero-image {
        height: 450px;
      }
    }

    @media (max-width: 767px) {
      .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-hero {
        padding: 2.5rem 0;
      }

      .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-hero h1 {
        font-size: 1.75rem;
      }

      .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-hero-image {
        height: 250px;
      }

      .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-lead-section {
        padding: 2rem 0;
      }

      .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-lead-image {
        height: 250px;
      }

      .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-content-section {
        padding: 2.5rem 0;
      }

      .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-content-1 h2,
      .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-content-2 h2 {
        font-size: 1.5rem;
      }

      .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-content-1-image,
      .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-content-2-image {
        height: 250px;
      }

      .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-quote-section {
        padding: 2rem;
      }

      .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-quote-section blockquote {
        font-size: 1.25rem;
      }

      .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-disclaimer-section {
        padding: 1.5rem;
      }

      .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-related-section {
        padding: 2.5rem 0;
      }

      .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-related-section h2 {
        font-size: 1.5rem;
      }

      .post-anfaenger-leitfaden-handel .anfaenger-leitfaden-handel-related-grid {
        grid-template-columns: 1fr;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
    }

.post-aktienhandel-grundlagen {
  background: var(--color-bg-light-primary);
  color: var(--color-text-dark);
}

.aktienhandel-grundlagen-breadcrumbs {
  background: var(--color-bg-light-secondary);
  padding: 1.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.aktienhandel-grundlagen-breadcrumb-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.9rem;
}

.aktienhandel-grundlagen-breadcrumb-nav a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.aktienhandel-grundlagen-breadcrumb-nav a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.aktienhandel-grundlagen-separator {
  color: #cbd5e1;
}

.aktienhandel-grundlagen-current {
  color: var(--color-text-dark-secondary);
  font-weight: 500;
}

.aktienhandel-grundlagen-hero {
  background: var(--color-bg-light-primary);
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .aktienhandel-grundlagen-hero {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .aktienhandel-grundlagen-hero {
    padding: 6rem 0;
  }
}

.aktienhandel-grundlagen-hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .aktienhandel-grundlagen-hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.aktienhandel-grundlagen-title {
  color: var(--color-text-dark);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .aktienhandel-grundlagen-title {
    font-size: 3rem;
  }
}

@media (min-width: 1024px) {
  .aktienhandel-grundlagen-title {
    font-size: 3.5rem;
  }
}

.aktienhandel-grundlagen-lead {
  color: var(--color-text-dark-secondary);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.aktienhandel-grundlagen-hero-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--color-text-dark-muted);
  font-size: 0.95rem;
}

.aktienhandel-grundlagen-hero-meta .fas {
  color: var(--color-primary);
}

.aktienhandel-grundlagen-featured-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .aktienhandel-grundlagen-featured-image {
    max-height: 450px;
  }
}

.aktienhandel-grundlagen-introduction {
  background: var(--color-bg-light-primary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .aktienhandel-grundlagen-introduction {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .aktienhandel-grundlagen-introduction {
    padding: 5rem 0;
  }
}

.aktienhandel-grundlagen-intro-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.aktienhandel-grundlagen-intro-text {
  color: var(--color-text-dark-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

@media (min-width: 768px) {
  .aktienhandel-grundlagen-intro-text {
    font-size: 1.0625rem;
  }
}

.aktienhandel-grundlagen-intro-highlight {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.08);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
}

.aktienhandel-grundlagen-intro-highlight .fas {
  color: var(--color-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.aktienhandel-grundlagen-intro-highlight span {
  color: var(--color-text-dark);
  font-size: 0.95rem;
  line-height: 1.6;
}

.aktienhandel-grundlagen-content-image-1,
.aktienhandel-grundlagen-content-image-2,
.aktienhandel-grundlagen-content-image-3,
.aktienhandel-grundlagen-content-image-4,
.aktienhandel-grundlagen-content-image-5 {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.aktienhandel-grundlagen-section-one,
.aktienhandel-grundlagen-section-two,
.aktienhandel-grundlagen-section-three,
.aktienhandel-grundlagen-section-four {
  background: var(--color-bg-light-primary);
  padding: 3rem 0;
  border-bottom: 1px solid #e2e8f0;
}

@media (min-width: 768px) {
  .aktienhandel-grundlagen-section-one,
  .aktienhandel-grundlagen-section-two,
  .aktienhandel-grundlagen-section-three,
  .aktienhandel-grundlagen-section-four {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .aktienhandel-grundlagen-section-one,
  .aktienhandel-grundlagen-section-two,
  .aktienhandel-grundlagen-section-three,
  .aktienhandel-grundlagen-section-four {
    padding: 5rem 0;
  }
}

.aktienhandel-grundlagen-section-one-content,
.aktienhandel-grundlagen-section-two-content,
.aktienhandel-grundlagen-section-three-content,
.aktienhandel-grundlagen-section-four-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.aktienhandel-grundlagen-section-title {
  color: var(--color-text-dark);
  font-size: 1.75rem;
  margin: 0;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .aktienhandel-grundlagen-section-title {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .aktienhandel-grundlagen-section-title {
    font-size: 2.25rem;
  }
}

.aktienhandel-grundlagen-section-text {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
}

@media (min-width: 768px) {
  .aktienhandel-grundlagen-section-text {
    font-size: 1rem;
  }
}

.aktienhandel-grundlagen-highlight-box {
  padding: 2rem;
  background: var(--color-bg-light-secondary);
  border: 2px solid #e2e8f0;
  border-left: 4px solid var(--color-secondary);
  border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
  .aktienhandel-grundlagen-highlight-box {
    padding: 2.5rem;
  }
}

.aktienhandel-grundlagen-highlight-title {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.aktienhandel-grundlagen-highlight-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.aktienhandel-grundlagen-highlight-list li {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.aktienhandel-grundlagen-highlight-list li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: 700;
}

.aktienhandel-grundlagen-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 1rem 0;
}

@media (min-width: 768px) {
  .aktienhandel-grundlagen-steps {
    gap: 2.5rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .aktienhandel-grundlagen-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.aktienhandel-grundlagen-step-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--color-primary);
  transition: all 0.3s ease;
}

.aktienhandel-grundlagen-step-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.aktienhandel-grundlagen-step-number {
  width: 40px;
  height: 40px;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.25rem;
  font-family: var(--font-heading);
}

.aktienhandel-grundlagen-step-title {
  color: var(--color-text-dark);
  font-size: 1.1rem;
  margin: 0;
  font-weight: 600;
}

.aktienhandel-grundlagen-step-text {
  color: var(--color-text-dark-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.aktienhandel-grundlagen-conclusion {
  background: var(--color-bg-light-secondary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .aktienhandel-grundlagen-conclusion {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .aktienhandel-grundlagen-conclusion {
    padding: 5rem 0;
  }
}

.aktienhandel-grundlagen-conclusion-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
}

.aktienhandel-grundlagen-conclusion-title {
  color: var(--color-text-dark);
  font-size: 1.75rem;
  margin: 0;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .aktienhandel-grundlagen-conclusion-title {
    font-size: 2rem;
  }
}

.aktienhandel-grundlagen-conclusion-text {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin: 0;
}

@media (min-width: 768px) {
  .aktienhandel-grundlagen-conclusion-text {
    font-size: 1rem;
  }
}

.aktienhandel-grundlagen-disclaimer {
  background: #fef3c7;
  padding: 2rem 0;
  border-top: 2px solid #fcd34d;
  border-bottom: 2px solid #fcd34d;
}

@media (min-width: 768px) {
  .aktienhandel-grundlagen-disclaimer {
    padding: 2.5rem 0;
  }
}

.aktienhandel-grundlagen-disclaimer-content {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.aktienhandel-grundlagen-disclaimer-content .fas {
  color: #b45309;
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.aktienhandel-grundlagen-disclaimer-text {
  flex: 1;
}

.aktienhandel-grundlagen-disclaimer-title {
  color: #78350f;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.aktienhandel-grundlagen-disclaimer-body {
  color: #92400e;
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.aktienhandel-grundlagen-related {
  background: var(--color-bg-light-primary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .aktienhandel-grundlagen-related {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .aktienhandel-grundlagen-related {
    padding: 5rem 0;
  }
}

.aktienhandel-grundlagen-related-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.aktienhandel-grundlagen-related-title {
  color: var(--color-text-dark);
  font-size: 1.75rem;
  text-align: center;
  margin: 0;
}

@media (min-width: 768px) {
  .aktienhandel-grundlagen-related-title {
    font-size: 2rem;
  }
}

.aktienhandel-grundlagen-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .aktienhandel-grundlagen-related-grid {
    gap: 2rem;
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .aktienhandel-grundlagen-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.aktienhandel-grundlagen-related-card {
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  border: 2px solid #e2e8f0;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.aktienhandel-grundlagen-related-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.aktienhandel-grundlagen-related-card-inner {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

@media (min-width: 768px) {
  .aktienhandel-grundlagen-related-card-inner {
    padding: 2rem;
  }
}

.aktienhandel-grundlagen-related-card-title {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin: 0;
  font-weight: 600;
  line-height: 1.3;
}

.aktienhandel-grundlagen-related-card-description {
  color: var(--color-text-dark-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
  flex: 1;
}

.aktienhandel-grundlagen-related-link {
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  margin-top: auto;
}

.aktienhandel-grundlagen-related-link:hover {
  color: var(--color-primary-hover);
  gap: 0.75rem;
}

.aktienhandel-grundlagen-related-link .fas {
  font-size: 0.8rem;
}

@media (max-width: 767px) {
  .aktienhandel-grundlagen-breadcrumbs {
    padding: 1rem 0;
  }

  .aktienhandel-grundlagen-title {
    font-size: 2rem;
  }

  .aktienhandel-grundlagen-lead {
    font-size: 1rem;
  }

  .aktienhandel-grundlagen-section-title {
    font-size: 1.5rem;
  }

  .aktienhandel-grundlagen-intro-highlight {
    padding: 1rem;
  }

  .aktienhandel-grundlagen-intro-highlight span {
    font-size: 0.875rem;
  }

  .aktienhandel-grundlagen-steps {
    grid-template-columns: 1fr;
  }

  .aktienhandel-grundlagen-conclusion-title {
    font-size: 1.5rem;
  }

  .aktienhandel-grundlagen-related-title {
    font-size: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.post-forex-handel-verstehen {
  width: 100%;
}

.forex-handel-verstehen-breadcrumbs-section {
  background: var(--color-bg-light-primary);
  padding: 1.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.forex-handel-verstehen-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.forex-handel-verstehen-breadcrumb-link {
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.forex-handel-verstehen-breadcrumb-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.forex-handel-verstehen-breadcrumb-separator {
  color: #cbd5e1;
  margin: 0 0.25rem;
}

.forex-handel-verstehen-breadcrumb-current {
  color: #64748b;
}

.forex-handel-verstehen-hero-section {
  background: var(--color-bg-light-primary);
  padding: 4rem 0;
  overflow: hidden;
}

.forex-handel-verstehen-hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.forex-handel-verstehen-hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.forex-handel-verstehen-title {
  color: var(--color-text-dark);
  font-size: 2.5rem;
  line-height: 1.2;
  margin: 0;
}

.forex-handel-verstehen-subtitle {
  color: var(--color-text-dark-secondary);
  font-size: 1.125rem;
  line-height: 1.7;
  margin: 0;
}

.forex-handel-verstehen-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.forex-handel-verstehen-reading-time {
  color: var(--color-text-dark-muted);
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.forex-handel-verstehen-reading-time .fas {
  color: var(--color-primary);
}

.forex-handel-verstehen-hero-image {
  width: 100%;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.forex-handel-verstehen-hero-img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.forex-handel-verstehen-introduction-section {
  background: var(--color-bg-light-secondary);
  padding: 5rem 0;
  overflow: hidden;
}

.forex-handel-verstehen-introduction-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.forex-handel-verstehen-section-title {
  color: var(--color-text-dark);
  font-size: 2rem;
  margin: 0;
}

.forex-handel-verstehen-text {
  color: var(--color-text-dark-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

.forex-handel-verstehen-highlight-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  align-items: flex-start;
}

.forex-handel-verstehen-highlight-icon {
  font-size: 2rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.forex-handel-verstehen-highlight-title {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin: 0 0 0.5rem 0;
}

.forex-handel-verstehen-highlight-content {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.forex-handel-verstehen-content-image {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: 1.5rem 0 0 0;
}

.forex-handel-verstehen-content-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.forex-handel-verstehen-mechanics-section {
  background: var(--color-bg-light-primary);
  padding: 5rem 0;
  overflow: hidden;
}

.forex-handel-verstehen-mechanics-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.forex-handel-verstehen-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.forex-handel-verstehen-step-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
}

.forex-handel-verstehen-step-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.forex-handel-verstehen-step-number {
  color: var(--color-primary);
  font-size: 2.5rem;
  font-weight: 700;
  font-family: var(--font-heading);
  line-height: 1;
}

.forex-handel-verstehen-step-title {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin: 0;
}

.forex-handel-verstehen-step-text {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.forex-handel-verstehen-analysis-section {
  background: var(--color-bg-light-secondary);
  padding: 5rem 0;
  overflow: hidden;
}

.forex-handel-verstehen-analysis-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.forex-handel-verstehen-analysis-blocks {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.forex-handel-verstehen-analysis-block {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  text-align: center;
}

.forex-handel-verstehen-analysis-icon {
  font-size: 3rem;
  color: var(--color-primary);
  margin: 0 auto;
}

.forex-handel-verstehen-analysis-title {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin: 0;
}

.forex-handel-verstehen-analysis-text {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.forex-handel-verstehen-quote-section {
  margin: 2rem 0;
}

.forex-handel-verstehen-quote {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.8;
  text-align: center;
  margin: 0;
  padding: 2rem;
  border-left: 4px solid var(--color-secondary);
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
}

.forex-handel-verstehen-strategy-section {
  background: var(--color-bg-light-primary);
  padding: 5rem 0;
  overflow: hidden;
}

.forex-handel-verstehen-strategy-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.forex-handel-verstehen-benefits-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.forex-handel-verstehen-benefit-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  align-items: flex-start;
}

.forex-handel-verstehen-benefit-icon {
  color: var(--color-secondary);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.forex-handel-verstehen-benefit-text {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

.forex-handel-verstehen-benefit-text strong {
  color: var(--color-text-dark);
  font-weight: 600;
}

.forex-handel-verstehen-learning-section {
  background: var(--color-bg-light-secondary);
  padding: 5rem 0;
  overflow: hidden;
}

.forex-handel-verstehen-learning-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.forex-handel-verstehen-disclaimer-section {
  background: var(--color-bg-light-primary);
  padding: 4rem 0;
  overflow: hidden;
  border-top: 2px solid #e2e8f0;
}

.forex-handel-verstehen-disclaimer-content {
  display: flex;
  justify-content: center;
}

.forex-handel-verstehen-disclaimer-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  padding: 2rem;
  background: #f0f9ff;
  border-radius: var(--radius-lg);
  border: 1px solid #bfdbfe;
  border-left: 4px solid var(--color-primary);
  max-width: 800px;
  width: 100%;
}

.forex-handel-verstehen-disclaimer-icon {
  font-size: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.forex-handel-verstehen-disclaimer-title {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  margin: 0 0 0.5rem 0;
}

.forex-handel-verstehen-disclaimer-body {
  color: var(--color-text-dark-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.forex-handel-verstehen-related-section {
  background: var(--color-bg-light-secondary);
  padding: 5rem 0;
  overflow: hidden;
}

.forex-handel-verstehen-related-content {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.forex-handel-verstehen-related-title {
  color: var(--color-text-dark);
  font-size: 2rem;
  text-align: center;
  margin: 0;
}

.forex-handel-verstehen-related-description {
  color: var(--color-text-dark-secondary);
  text-align: center;
  font-size: 1rem;
  margin: 0;
}

.forex-handel-verstehen-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.forex-handel-verstehen-related-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  border: 2px solid #e2e8f0;
  text-decoration: none;
  transition: all 0.3s ease;
  height: 100%;
}

.forex-handel-verstehen-related-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.forex-handel-verstehen-related-card-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.forex-handel-verstehen-related-card-title {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin: 0;
  transition: color 0.3s ease;
}

.forex-handel-verstehen-related-card:hover .forex-handel-verstehen-related-card-title {
  color: var(--color-primary);
}

.forex-handel-verstehen-related-card-description {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.forex-handel-verstehen-related-card-footer {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
}

.forex-handel-verstehen-related-read-more {
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.forex-handel-verstehen-related-card:hover .forex-handel-verstehen-related-read-more {
  gap: 0.75rem;
}

.forex-handel-verstehen-related-read-more .fas {
  font-size: 0.8rem;
}

@media (min-width: 768px) {
  .forex-handel-verstehen-hero-section {
    padding: 6rem 0;
  }

  .forex-handel-verstehen-hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .forex-handel-verstehen-title {
    font-size: 3rem;
  }

  .forex-handel-verstehen-hero-img {
    height: 450px;
  }

  .forex-handel-verstehen-introduction-section,
  .forex-handel-verstehen-mechanics-section,
  .forex-handel-verstehen-analysis-section,
  .forex-handel-verstehen-strategy-section,
  .forex-handel-verstehen-learning-section {
    padding: 6rem 0;
  }

  .forex-handel-verstehen-section-title {
    font-size: 2.25rem;
  }

  .forex-handel-verstehen-steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .forex-handel-verstehen-analysis-blocks {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .forex-handel-verstehen-content-img {
    height: 400px;
  }

  .forex-handel-verstehen-highlight-box {
    padding: 2.5rem;
  }

  .forex-handel-verstehen-step-card,
  .forex-handel-verstehen-analysis-block {
    padding: 2.5rem;
  }

  .forex-handel-verstehen-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .forex-handel-verstehen-hero-section {
    padding: 8rem 0;
  }

  .forex-handel-verstehen-hero-content {
    gap: 5rem;
  }

  .forex-handel-verstehen-title {
    font-size: 3.5rem;
  }

  .forex-handel-verstehen-hero-img {
    height: 500px;
  }

  .forex-handel-verstehen-introduction-section,
  .forex-handel-verstehen-mechanics-section,
  .forex-handel-verstehen-analysis-section,
  .forex-handel-verstehen-strategy-section,
  .forex-handel-verstehen-learning-section {
    padding: 8rem 0;
  }

  .forex-handel-verstehen-section-title {
    font-size: 2.5rem;
  }

  .forex-handel-verstehen-steps-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .forex-handel-verstehen-content-img {
    height: 450px;
  }
}

@media (max-width: 767px) {
  .forex-handel-verstehen-hero-section {
    padding: 2.5rem 0;
  }

  .forex-handel-verstehen-title {
    font-size: 1.75rem;
  }

  .forex-handel-verstehen-subtitle {
    font-size: 1rem;
  }

  .forex-handel-verstehen-hero-img {
    height: 280px;
  }

  .forex-handel-verstehen-introduction-section,
  .forex-handel-verstehen-mechanics-section,
  .forex-handel-verstehen-analysis-section,
  .forex-handel-verstehen-strategy-section,
  .forex-handel-verstehen-learning-section {
    padding: 3rem 0;
  }

  .forex-handel-verstehen-section-title {
    font-size: 1.5rem;
  }

  .forex-handel-verstehen-steps-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .forex-handel-verstehen-step-card,
  .forex-handel-verstehen-analysis-block {
    padding: 1.5rem;
  }

  .forex-handel-verstehen-highlight-box {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }

  .forex-handel-verstehen-highlight-icon {
    font-size: 1.5rem;
  }

  .forex-handel-verstehen-analysis-blocks {
    grid-template-columns: 1fr;
  }

  .forex-handel-verstehen-quote {
    font-size: 1.1rem;
    padding: 1.5rem;
  }

  .forex-handel-verstehen-content-img {
    height: 250px;
  }

  .forex-handel-verstehen-disclaimer-box {
    grid-template-columns: 1fr;
    gap: 1rem;
    padding: 1.5rem;
  }

  .forex-handel-verstehen-disclaimer-icon {
    font-size: 1.25rem;
  }

  .forex-handel-verstehen-related-grid {
    grid-template-columns: 1fr;
  }

  .forex-handel-verstehen-breadcrumbs {
    font-size: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .forex-handel-verstehen-step-card,
  .forex-handel-verstehen-related-card,
  .forex-handel-verstehen-breadcrumb-link,
  .forex-handel-verstehen-analysis-block,
  .forex-handel-verstehen-benefit-item {
    transition: none;
  }
}

.post-chart-muster-erkennen {
  background: var(--color-bg-light-primary);
}

.chart-muster-erkennen-breadcrumbs {
  background: var(--color-bg-light-secondary);
  padding: 1.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.chart-muster-erkennen-breadcrumbs nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.chart-muster-erkennen-breadcrumbs a {
  color: var(--color-primary);
  transition: all 0.3s ease;
}

.chart-muster-erkennen-breadcrumbs a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.chart-muster-erkennen-breadcrumbs span {
  color: var(--color-text-dark-muted);
}

@media (max-width: 767px) {
  .chart-muster-erkennen-breadcrumbs {
    padding: 1rem 0;
  }

  .chart-muster-erkennen-breadcrumbs nav {
    font-size: 0.8rem;
  }
}

.chart-muster-erkennen-hero {
  background: var(--color-bg-light-primary);
  padding: 4rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.chart-muster-erkennen-hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.chart-muster-erkennen-hero h1 {
  color: var(--color-text-dark);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.chart-muster-erkennen-lead {
  color: var(--color-text-dark-secondary);
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.chart-muster-erkennen-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.chart-muster-erkennen-reading-time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-dark-muted);
  font-size: 0.95rem;
}

.chart-muster-erkennen-reading-time .fas {
  color: var(--color-primary);
  font-size: 1rem;
}

.chart-muster-erkennen-featured-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .chart-muster-erkennen-hero {
    padding: 5rem 0;
  }

  .chart-muster-erkennen-hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .chart-muster-erkennen-hero h1 {
    font-size: 3.5rem;
  }

  .chart-muster-erkennen-featured-image {
    max-height: 450px;
  }
}

@media (min-width: 1024px) {
  .chart-muster-erkennen-hero {
    padding: 6rem 0;
  }

  .chart-muster-erkennen-hero h1 {
    font-size: 3.75rem;
  }

  .chart-muster-erkennen-featured-image {
    max-height: 500px;
  }
}

@media (max-width: 767px) {
  .chart-muster-erkennen-hero {
    padding: 3rem 0;
  }

  .chart-muster-erkennen-hero h1 {
    font-size: 2rem;
  }

  .chart-muster-erkennen-lead {
    font-size: 1rem;
  }

  .chart-muster-erkennen-featured-image {
    max-height: 300px;
  }
}

.chart-muster-erkennen-content-main {
  background: var(--color-bg-light-primary);
  padding: 4rem 0;
}

.chart-muster-erkennen-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.chart-muster-erkennen-section-intro {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.chart-muster-erkennen-intro-text h2,
.chart-muster-erkennen-section-patterns h2,
.chart-muster-erkennen-section-analysis h2,
.chart-muster-erkennen-learning-text h2,
.chart-muster-erkennen-section-context h2 {
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
}

.chart-muster-erkennen-intro-text p,
.chart-muster-erkennen-section-patterns p,
.chart-muster-erkennen-section-analysis p,
.chart-muster-erkennen-learning-text p,
.chart-muster-erkennen-section-context p {
  color: var(--color-text-dark-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.chart-muster-erkennen-intro-image img,
.chart-muster-erkennen-pattern-image img,
.chart-muster-erkennen-learning-image img,
.chart-muster-erkennen-context-image img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .chart-muster-erkennen-section-intro {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .chart-muster-erkennen-content-wrapper {
    gap: 5rem;
  }
}

@media (max-width: 767px) {
  .chart-muster-erkennen-content-main {
    padding: 2.5rem 0;
  }

  .chart-muster-erkennen-content-wrapper {
    gap: 2.5rem;
  }

  .chart-muster-erkennen-intro-text h2,
  .chart-muster-erkennen-section-patterns h2,
  .chart-muster-erkennen-section-analysis h2,
  .chart-muster-erkennen-learning-text h2,
  .chart-muster-erkennen-section-context h2 {
    font-size: 1.75rem;
  }

  .chart-muster-erkennen-intro-text p,
  .chart-muster-erkennen-section-patterns p,
  .chart-muster-erkennen-section-analysis p,
  .chart-muster-erkennen-learning-text p,
  .chart-muster-erkennen-section-context p {
    font-size: 0.95rem;
  }
}

.chart-muster-erkennen-pattern-group {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.chart-muster-erkennen-pattern-card {
  background: var(--color-bg-light-secondary);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.chart-muster-erkennen-pattern-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.chart-muster-erkennen-pattern-card h3 {
  color: var(--color-text-dark);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.chart-muster-erkennen-pattern-card p {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

.chart-muster-erkennen-pattern-card p:last-child {
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .chart-muster-erkennen-pattern-group {
    grid-template-columns: repeat(2, 1fr);
  }

  .chart-muster-erkennen-pattern-card {
    padding: 2.5rem;
  }
}

@media (max-width: 767px) {
  .chart-muster-erkennen-pattern-group {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .chart-muster-erkennen-pattern-card {
    padding: 1.5rem;
  }

  .chart-muster-erkennen-pattern-card h3 {
    font-size: 1.25rem;
  }
}

.chart-muster-erkennen-analysis-flow {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.chart-muster-erkennen-step {
  background: var(--color-bg-light-secondary);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  position: relative;
}

.chart-muster-erkennen-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  font-family: var(--font-heading);
}

.chart-muster-erkennen-step h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.chart-muster-erkennen-step p {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .chart-muster-erkennen-analysis-flow {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .chart-muster-erkennen-step {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .chart-muster-erkennen-analysis-flow {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 767px) {
  .chart-muster-erkennen-analysis-flow {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .chart-muster-erkennen-step {
    padding: 1.5rem;
  }

  .chart-muster-erkennen-step h3 {
    font-size: 1.1rem;
  }
}

.chart-muster-erkennen-section-learning {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: start;
}

.chart-muster-erkennen-learning-image {
  order: -1;
}

@media (min-width: 768px) {
  .chart-muster-erkennen-section-learning {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .chart-muster-erkennen-learning-image {
    order: 1;
  }
}

.chart-muster-erkennen-highlight-box {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
  border: 2px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin: 2rem 0;
}

.chart-muster-erkennen-highlight-box h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.chart-muster-erkennen-highlight-box p {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 767px) {
  .chart-muster-erkennen-highlight-box {
    padding: 1.5rem;
  }

  .chart-muster-erkennen-highlight-box h3 {
    font-size: 1.1rem;
  }
}

.chart-muster-erkennen-disclaimer-section {
  background: var(--color-bg-light-secondary);
  padding: 3rem 0;
  border-top: 2px solid #e2e8f0;
  border-bottom: 2px solid #e2e8f0;
}

.chart-muster-erkennen-disclaimer-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem;
  align-items: start;
  background: var(--color-bg-light-primary);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-secondary);
}

.chart-muster-erkennen-disclaimer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: rgba(6, 182, 212, 0.1);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.chart-muster-erkennen-disclaimer-icon .fas {
  color: var(--color-secondary);
  font-size: 1.75rem;
}

.chart-muster-erkennen-disclaimer-content h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.chart-muster-erkennen-disclaimer-content p {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 767px) {
  .chart-muster-erkennen-disclaimer-section {
    padding: 2rem 0;
  }

  .chart-muster-erkennen-disclaimer-box {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .chart-muster-erkennen-disclaimer-icon {
    width: 50px;
    height: 50px;
  }

  .chart-muster-erkennen-disclaimer-icon .fas {
    font-size: 1.5rem;
  }

  .chart-muster-erkennen-disclaimer-content h3 {
    font-size: 1.1rem;
  }
}

.chart-muster-erkennen-related-section {
  background: var(--color-bg-light-primary);
  padding: 4rem 0;
  border-top: 1px solid #e2e8f0;
}

.chart-muster-erkennen-related-section h2 {
  color: var(--color-text-dark);
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.5rem;
}

.chart-muster-erkennen-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.chart-muster-erkennen-related-card {
  background: var(--color-bg-light-secondary);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.chart-muster-erkennen-related-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.chart-muster-erkennen-related-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.chart-muster-erkennen-related-card h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin: 0;
}

.chart-muster-erkennen-related-card p {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.chart-muster-erkennen-related-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.95rem;
  margin-top: auto;
  transition: all 0.3s ease;
}

.chart-muster-erkennen-related-link:hover {
  color: var(--color-primary-hover);
  transform: translateX(4px);
}

.chart-muster-erkennen-related-link .fas {
  font-size: 0.8rem;
}

@media (min-width: 768px) {
  .chart-muster-erkennen-related-section {
    padding: 5rem 0;
  }

  .chart-muster-erkennen-related-section h2 {
    margin-bottom: 3.5rem;
  }

  .chart-muster-erkennen-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

  .chart-muster-erkennen-related-card {
    padding: 2.5rem;
  }
}

@media (max-width: 767px) {
  .chart-muster-erkennen-related-section {
    padding: 2.5rem 0;
  }

  .chart-muster-erkennen-related-section h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .chart-muster-erkennen-related-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .chart-muster-erkennen-related-card {
    padding: 1.5rem;
  }

  .chart-muster-erkennen-related-card h3 {
    font-size: 1.1rem;
  }

  .chart-muster-erkennen-related-card p {
    font-size: 0.9rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:root {
      --color-bg-dark-primary: #0a0f1e;
      --color-bg-dark-secondary: #0f1729;
      --color-bg-light-primary: #ffffff;
      --color-bg-light-secondary: #f8fafc;
      --color-text-light: #ffffff;
      --color-text-light-secondary: #e2e8f0;
      --color-text-light-muted: #94a3b8;
      --color-text-dark: #0f172a;
      --color-text-dark-secondary: #374151;
      --color-text-dark-muted: #6b7280;
      --color-primary: #3b82f6;
      --color-primary-hover: #2563eb;
      --color-secondary: #06b6d4;
      --color-accent-gold: #f59e0b;
      --font-primary: 'Inter', sans-serif;
      --font-heading: 'Playfair Display', serif;
    }

    .post-langfristig-vs-kurzfristig {
      font-family: var(--font-primary);
      line-height: 1.6;
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-breadcrumbs {
      background: var(--color-bg-dark-primary);
      padding: 1.5rem 0;
      overflow: hidden;
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-breadcrumbs-content {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 20px;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.9rem;
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-breadcrumbs a {
      color: var(--color-primary);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-breadcrumbs a:hover {
      color: var(--color-secondary);
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-breadcrumbs span {
      color: var(--color-text-light-muted);
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-hero {
      background: var(--color-bg-dark-primary);
      padding: 6rem 0;
      position: relative;
      overflow: hidden;
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-hero::before {
      content: '';
      position: absolute;
      top: -300px;
      right: -200px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-hero::after {
      content: '';
      position: absolute;
      bottom: -250px;
      left: -150px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-hero-content {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      align-items: center;
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-hero h1 {
      font-family: var(--font-heading);
      font-size: 3.5rem;
      font-weight: 700;
      line-height: 1.2;
      color: var(--color-text-light);
      margin: 0 0 1.5rem 0;
      letter-spacing: -0.5px;
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-hero-meta {
      display: flex;
      align-items: center;
      gap: 2rem;
      margin-bottom: 2rem;
      color: var(--color-text-light-muted);
      font-size: 0.95rem;
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-hero-meta span {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-hero p {
      color: var(--color-text-light-secondary);
      font-size: 1.15rem;
      line-height: 1.7;
      margin: 0 0 2rem 0;
      max-width: 600px;
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-hero-image {
      width: 100%;
      height: 400px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
      border: 1px solid rgba(59, 130, 246, 0.2);
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-content-section {
      background: var(--color-bg-light-primary);
      padding: 6rem 0;
      overflow: hidden;
      position: relative;
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-content-section:nth-child(3) {
      background: var(--color-bg-light-secondary);
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-content-section:nth-child(4) {
      background: var(--color-bg-light-primary);
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-content-section:nth-child(5) {
      background: var(--color-bg-light-secondary);
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-section-content {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
      z-index: 2;
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-content-section h2 {
      font-family: var(--font-heading);
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--color-text-dark);
      margin: 0 0 1.5rem 0;
      line-height: 1.2;
      letter-spacing: -0.5px;
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-content-section p {
      color: var(--color-text-dark-secondary);
      font-size: 1rem;
      line-height: 1.8;
      margin: 0 0 1.5rem 0;
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-content-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      align-items: center;
      margin-bottom: 3rem;
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-content-image {
      width: 100%;
      height: 350px;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      border: 1px solid #e2e8f0;
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-content-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-comparison-block {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      margin: 2.5rem 0;
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-comparison-item {
      padding: 2rem;
      border-radius: 12px;
      border-left: 4px solid var(--color-primary);
      background: var(--color-bg-light-secondary);
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-comparison-item h3 {
      font-family: var(--font-heading);
      font-size: 1.5rem;
      color: var(--color-text-dark);
      margin: 0 0 1rem 0;
      font-weight: 700;
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-comparison-item ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-comparison-item li {
      color: var(--color-text-dark-secondary);
      margin-bottom: 0.75rem;
      padding-left: 1.75rem;
      position: relative;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-comparison-item li::before {
      content: '';
      position: absolute;
      left: 0;
      color: var(--color-secondary);
      font-weight: bold;
      font-size: 1.1rem;
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-quote {
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
      padding: 2.5rem;
      border-left: 5px solid var(--color-primary);
      border-radius: 8px;
      margin: 3rem 0;
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-quote p {
      font-family: var(--font-heading);
      font-size: 1.25rem;
      font-style: italic;
      color: var(--color-text-dark);
      margin: 0;
      line-height: 1.6;
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-highlight-box {
      background: var(--color-bg-dark-primary);
      padding: 2rem;
      border-radius: 12px;
      margin: 2.5rem 0;
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-highlight-box h3 {
      font-family: var(--font-heading);
      color: var(--color-text-light);
      font-size: 1.35rem;
      margin: 0 0 1rem 0;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-highlight-box p {
      color: var(--color-text-light-secondary);
      margin: 0;
      font-size: 0.95rem;
      line-height: 1.7;
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-highlight-box .fas {
      color: var(--color-accent-gold);
      font-size: 1.25rem;
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-disclaimer {
      background: var(--color-bg-light-secondary);
      padding: 2.5rem;
      border-radius: 12px;
      border-left: 4px solid var(--color-accent-gold);
      margin: 4rem 0;
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-disclaimer h3 {
      font-family: var(--font-heading);
      color: var(--color-text-dark);
      font-size: 1.25rem;
      margin: 0 0 1rem 0;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-weight: 700;
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-disclaimer p {
      color: var(--color-text-dark-secondary);
      margin: 0;
      font-size: 0.95rem;
      line-height: 1.7;
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-disclaimer .fas {
      color: var(--color-accent-gold);
      font-size: 1.1rem;
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-related {
      background: var(--color-bg-dark-primary);
      padding: 6rem 0;
      overflow: hidden;
      position: relative;
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-related::before {
      content: '';
      position: absolute;
      top: -250px;
      right: -250px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-related-content {
      max-width: 1440px;
      margin: 0 auto;
      padding: 0 20px;
      position: relative;
      z-index: 2;
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-related h2 {
      font-family: var(--font-heading);
      font-size: 2.5rem;
      color: var(--color-text-light);
      text-align: center;
      margin: 0 0 3rem 0;
      font-weight: 700;
      line-height: 1.2;
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-related-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-related-card {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding: 2rem;
      background: rgba(59, 130, 246, 0.08);
      border: 1px solid rgba(59, 130, 246, 0.2);
      border-radius: 12px;
      transition: all 0.3s ease;
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-related-card:hover {
      transform: translateY(-8px);
      background: rgba(59, 130, 246, 0.12);
      border-color: rgba(59, 130, 246, 0.4);
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-related-card h3 {
      font-family: var(--font-heading);
      font-size: 1.25rem;
      color: var(--color-text-light);
      margin: 0;
      font-weight: 700;
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-related-card p {
      color: var(--color-text-light-secondary);
      margin: 0;
      font-size: 0.95rem;
      line-height: 1.6;
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-related-card a {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--color-secondary);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.95rem;
      margin-top: auto;
      transition: all 0.3s ease;
    }

    .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-related-card a:hover {
      gap: 0.75rem;
      color: var(--color-primary);
    }

    @media (min-width: 768px) {
      .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-hero {
        padding: 8rem 0;
      }

      .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-hero h1 {
        font-size: 3.5rem;
      }

      .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-content-section {
        padding: 8rem 0;
      }

      .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-content-section h2 {
        font-size: 2.5rem;
      }

      .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-content-grid {
        grid-template-columns: 1fr 1fr;
      }

      .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-comparison-block {
        grid-template-columns: 1fr 1fr;
      }

      .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-related {
        padding: 8rem 0;
      }

      .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-related h2 {
        font-size: 2.5rem;
      }
    }

    @media (min-width: 1024px) {
      .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-hero {
        padding: 10rem 0;
      }

      .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-hero h1 {
        font-size: 3.75rem;
      }

      .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-content-section {
        padding: 10rem 0;
      }

      .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-related {
        padding: 10rem 0;
      }
    }

    @media (max-width: 767px) {
      .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-hero {
        padding: 4rem 0;
      }

      .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-hero h1 {
        font-size: 2.25rem;
      }

      .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-hero p {
        font-size: 1rem;
      }

      .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-hero-image {
        height: 280px;
      }

      .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-content-section {
        padding: 4rem 0;
      }

      .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-content-section h2 {
        font-size: 1.875rem;
      }

      .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-content-section p {
        font-size: 0.95rem;
      }

      .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-content-image {
        height: 280px;
      }

      .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-comparison-item {
        padding: 1.5rem;
      }

      .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-comparison-item h3 {
        font-size: 1.25rem;
      }

      .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-quote {
        padding: 1.5rem;
      }

      .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-quote p {
        font-size: 1.1rem;
      }

      .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-disclaimer {
        padding: 1.5rem;
      }

      .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-related {
        padding: 4rem 0;
      }

      .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-related h2 {
        font-size: 1.875rem;
      }

      .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-related-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .post-langfristig-vs-kurzfristig .langfristig-vs-kurzfristig-related-card {
        padding: 1.5rem;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
    }

.post-dividenden-einkommen {
  background: #ffffff;
  color: #1a1a1a;
}

.post-dividenden-einkommen * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.post-dividenden-einkommen a {
  color: #3b82f6;
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-dividenden-einkommen a:hover {
  color: #2563eb;
}

.dividenden-einkommen-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  color: #666666;
}

.dividenden-einkommen-breadcrumbs a {
  color: #3b82f6;
  transition: color 0.3s ease;
}

.dividenden-einkommen-breadcrumbs a:hover {
  color: #2563eb;
  text-decoration: underline;
}

.dividenden-einkommen-hero {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: 4rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.dividenden-einkommen-hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.dividenden-einkommen-hero h1 {
  font-size: 2.25rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.dividenden-einkommen-hero-subtitle {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.dividenden-einkommen-meta {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #666666;
}

.dividenden-einkommen-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dividenden-einkommen-meta i {
  color: #3b82f6;
  font-size: 1rem;
}

.dividenden-einkommen-hero-image {
  width: 100%;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dividenden-einkommen-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dividenden-einkommen-introduction {
  padding: 4rem 0;
  background: #ffffff;
}

.dividenden-einkommen-lead {
  font-size: 1.125rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 2rem;
  max-width: 800px;
}

.dividenden-einkommen-key-points {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.dividenden-einkommen-point-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 4px solid #3b82f6;
}

.dividenden-einkommen-point-icon {
  width: 50px;
  height: 50px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #3b82f6;
}

.dividenden-einkommen-point-card h3 {
  font-size: 1.125rem;
  color: #0f172a;
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.dividenden-einkommen-point-card p {
  font-size: 0.95rem;
  color: #374151;
  margin: 0;
  line-height: 1.6;
}

.dividenden-einkommen-fundamentals {
  padding: 4rem 0;
  background: #ffffff;
}

.dividenden-einkommen-fundamentals-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.dividenden-einkommen-fundamentals h2 {
  font-size: 1.875rem;
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
}

.dividenden-einkommen-fundamentals-text p {
  font-size: 1rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.dividenden-einkommen-highlight-box {
  background: #ecf5ff;
  border-left: 4px solid #06b6d4;
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 1.5rem;
}

.dividenden-einkommen-highlight-box h4 {
  font-size: 1rem;
  color: #0f172a;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.dividenden-einkommen-highlight-box h4 i {
  color: #06b6d4;
}

.dividenden-einkommen-highlight-box p {
  color: #374151;
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.7;
}

.dividenden-einkommen-fundamentals-image {
  width: 100%;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dividenden-einkommen-fundamentals-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dividenden-einkommen-types {
  padding: 4rem 0;
  background: #f8fafc;
}

.dividenden-einkommen-types-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.dividenden-einkommen-types h2 {
  font-size: 1.875rem;
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.dividenden-einkommen-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.dividenden-einkommen-type-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: #ffffff;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.dividenden-einkommen-type-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
  border-color: #3b82f6;
}

.dividenden-einkommen-type-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 0.5rem;
}

.dividenden-einkommen-type-header i {
  font-size: 1.75rem;
  color: #3b82f6;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 8px;
}

.dividenden-einkommen-type-card h3 {
  font-size: 1.25rem;
  color: #0f172a;
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.dividenden-einkommen-type-card p {
  font-size: 0.95rem;
  color: #374151;
  margin: 0;
  line-height: 1.7;
}

.dividenden-einkommen-types-image {
  width: 100%;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 1rem;
}

.dividenden-einkommen-types-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dividenden-einkommen-strategy {
  padding: 4rem 0;
  background: #ffffff;
}

.dividenden-einkommen-strategy-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.dividenden-einkommen-strategy h2 {
  font-size: 1.875rem;
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.dividenden-einkommen-strategy-text p {
  font-size: 1rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.dividenden-einkommen-strategy h3 {
  font-size: 1.25rem;
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 1.5rem;
  margin-top: 1rem;
}

.dividenden-einkommen-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.dividenden-einkommen-step {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 8px;
  border-left: 4px solid #06b6d4;
}

.dividenden-einkommen-step-number {
  width: 50px;
  height: 50px;
  background: #3b82f6;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  flex-shrink: 0;
}

.dividenden-einkommen-step-content h4 {
  font-size: 1.125rem;
  color: #0f172a;
  margin: 0 0 0.75rem 0;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.dividenden-einkommen-step-content p {
  font-size: 0.95rem;
  color: #374151;
  margin: 0;
  line-height: 1.7;
}

.dividenden-einkommen-metrics {
  padding: 4rem 0;
  background: #f8fafc;
}

.dividenden-einkommen-metrics-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.dividenden-einkommen-metrics h2 {
  font-size: 1.875rem;
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.dividenden-einkommen-metrics-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.dividenden-einkommen-metric-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
}

.dividenden-einkommen-metric-item h3 {
  font-size: 1.125rem;
  color: #0f172a;
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.dividenden-einkommen-metric-item p {
  font-size: 0.9rem;
  color: #374151;
  margin: 0;
  line-height: 1.6;
}

.dividenden-einkommen-metric-formula {
  background: #ecf5ff;
  padding: 0.75rem;
  border-radius: 6px;
  font-size: 0.85rem;
  color: #1e40af;
  font-family: 'Courier New', monospace;
  margin-top: 0.5rem;
}

.dividenden-einkommen-metrics-image {
  width: 100%;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 1rem;
}

.dividenden-einkommen-metrics-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dividenden-einkommen-quote {
  padding: 4rem 0;
  background: linear-gradient(135deg, #ecf5ff 0%, #ffffff 100%);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.dividenden-einkommen-blockquote {
  font-size: 1.5rem;
  color: #0f172a;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  font-weight: 600;
}

.dividenden-einkommen-blockquote p {
  margin: 0;
}

.dividenden-einkommen-blockquote::before,
.dividenden-einkommen-blockquote::after {
  content: '"';
  color: #3b82f6;
  opacity: 0.3;
  font-size: 3rem;
  line-height: 0;
  vertical-align: -0.45em;
}

.dividenden-einkommen-considerations {
  padding: 4rem 0;
  background: #ffffff;
}

.dividenden-einkommen-considerations-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.dividenden-einkommen-considerations h2 {
  font-size: 1.875rem;
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.dividenden-einkommen-considerations-content p {
  font-size: 1rem;
  color: #374151;
  line-height: 1.8;
  margin: 0 0 1.5rem 0;
}

.dividenden-einkommen-risk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.dividenden-einkommen-risk-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: #fff5f5;
  border-left: 4px solid #ef4444;
  border-radius: 8px;
}

.dividenden-einkommen-risk-card h3 {
  font-size: 1.125rem;
  color: #991b1b;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.dividenden-einkommen-risk-card h3 i {
  font-size: 1.25rem;
}

.dividenden-einkommen-risk-card p {
  font-size: 0.95rem;
  color: #7c2d12;
  margin: 0;
  line-height: 1.6;
}

.dividenden-einkommen-considerations-image {
  width: 100%;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 1rem;
}

.dividenden-einkommen-considerations-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dividenden-einkommen-conclusion {
  padding: 4rem 0;
  background: #f8fafc;
}

.dividenden-einkommen-conclusion-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.dividenden-einkommen-conclusion h2 {
  font-size: 1.875rem;
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.dividenden-einkommen-conclusion p {
  font-size: 1rem;
  color: #374151;
  line-height: 1.8;
  margin: 0;
}

.dividenden-einkommen-action-items {
  background: #ffffff;
  padding: 2rem;
  border-radius: 8px;
  border-left: 4px solid #10b981;
  margin-top: 1rem;
}

.dividenden-einkommen-action-items h3 {
  font-size: 1.125rem;
  color: #0f172a;
  margin: 0 0 1rem 0;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.dividenden-einkommen-action-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.dividenden-einkommen-action-list li {
  font-size: 0.95rem;
  color: #374151;
  padding-left: 1.5rem;
  position: relative;
  line-height: 1.6;
}

.dividenden-einkommen-action-list li::before {
  content: '';
  position: absolute;
  left: 0;
  color: #10b981;
  font-weight: 700;
}

.dividenden-einkommen-disclaimer {
  padding: 4rem 0;
  background: #fef3c7;
  border-top: 2px solid #f59e0b;
  border-bottom: 2px solid #f59e0b;
}

.dividenden-einkommen-disclaimer-content {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 2rem;
  background: #ffffff;
  border-left: 4px solid #f59e0b;
  border-radius: 8px;
}

.dividenden-einkommen-disclaimer-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  background: #fef3c7;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #b45309;
}

.dividenden-einkommen-disclaimer-content h3 {
  font-size: 1.125rem;
  color: #b45309;
  margin: 0 0 0.75rem 0;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.dividenden-einkommen-disclaimer-content p {
  font-size: 0.9rem;
  color: #7c2d12;
  margin: 0;
  line-height: 1.7;
}

.dividenden-einkommen-related {
  padding: 4rem 0;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
}

.dividenden-einkommen-related-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.dividenden-einkommen-related h2 {
  font-size: 1.875rem;
  color: #0f172a;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.dividenden-einkommen-related-intro {
  font-size: 1rem;
  color: #374151;
  margin: 0;
}

.dividenden-einkommen-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.dividenden-einkommen-related-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.dividenden-einkommen-related-card:hover {
  transform: translateY(-6px);
  border-color: #3b82f6;
  box-shadow: 0 12px 24px rgba(59, 130, 246, 0.15);
  background: #ffffff;
}

.dividenden-einkommen-related-card-header {
  width: 50px;
  height: 50px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #3b82f6;
}

.dividenden-einkommen-related-card h3 {
  font-size: 1.125rem;
  color: #0f172a;
  margin: 0;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
}

.dividenden-einkommen-related-card p {
  font-size: 0.9rem;
  color: #374151;
  margin: 0;
  line-height: 1.6;
}

.dividenden-einkommen-related-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  color: #3b82f6;
  font-size: 1.25rem;
  margin-top: 0.5rem;
  transition: transform 0.3s ease;
}

.dividenden-einkommen-related-card:hover .dividenden-einkommen-related-arrow {
  transform: translateX(4px);
}

@media (min-width: 768px) {
  .dividenden-einkommen-hero {
    padding: 6rem 0;
  }

  .dividenden-einkommen-hero-content {
    grid-template-columns: 1fr 1fr;
  }

  .dividenden-einkommen-hero h1 {
    font-size: 2.75rem;
  }

  .dividenden-einkommen-hero-image {
    height: 400px;
  }

  .dividenden-einkommen-introduction {
    padding: 6rem 0;
  }

  .dividenden-einkommen-fundamentals {
    padding: 6rem 0;
  }

  .dividenden-einkommen-fundamentals-content {
    grid-template-columns: 1fr 1fr;
  }

  .dividenden-einkommen-fundamentals-image {
    height: 400px;
  }

  .dividenden-einkommen-types {
    padding: 6rem 0;
  }

  .dividenden-einkommen-strategy {
    padding: 6rem 0;
  }

  .dividenden-einkommen-metrics {
    padding: 6rem 0;
  }

  .dividenden-einkommen-quote {
    padding: 6rem 0;
  }

  .dividenden-einkommen-blockquote {
    font-size: 1.75rem;
  }

  .dividenden-einkommen-considerations {
    padding: 6rem 0;
  }

  .dividenden-einkommen-considerations-image {
    height: 400px;
  }

  .dividenden-einkommen-conclusion {
    padding: 6rem 0;
  }

  .dividenden-einkommen-disclaimer {
    padding: 6rem 0;
  }

  .dividenden-einkommen-related {
    padding: 6rem 0;
  }
}

@media (min-width: 1024px) {
  .dividenden-einkommen-hero {
    padding: 8rem 0;
  }

  .dividenden-einkommen-hero h1 {
    font-size: 3.25rem;
  }

  .dividenden-einkommen-hero-image {
    height: 450px;
  }

  .dividenden-einkommen-introduction {
    padding: 8rem 0;
  }

  .dividenden-einkommen-fundamentals {
    padding: 8rem 0;
  }

  .dividenden-einkommen-fundamentals-image {
    height: 450px;
  }

  .dividenden-einkommen-types {
    padding: 8rem 0;
  }

  .dividenden-einkommen-types-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .dividenden-einkommen-types-image {
    height: 450px;
  }

  .dividenden-einkommen-strategy {
    padding: 8rem 0;
  }

  .dividenden-einkommen-metrics {
    padding: 8rem 0;
  }

  .dividenden-einkommen-metrics-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .dividenden-einkommen-metrics-image {
    height: 450px;
  }

  .dividenden-einkommen-quote {
    padding: 8rem 0;
  }

  .dividenden-einkommen-blockquote {
    font-size: 2rem;
  }

  .dividenden-einkommen-considerations {
    padding: 8rem 0;
  }

  .dividenden-einkommen-considerations-image {
    height: 450px;
  }

  .dividenden-einkommen-conclusion {
    padding: 8rem 0;
  }

  .dividenden-einkommen-disclaimer {
    padding: 8rem 0;
  }

  .dividenden-einkommen-related {
    padding: 8rem 0;
  }

  .dividenden-einkommen-related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .dividenden-einkommen-hero {
    padding: 2rem 0;
  }

  .dividenden-einkommen-hero h1 {
    font-size: 1.75rem;
  }

  .dividenden-einkommen-hero-subtitle {
    font-size: 1rem;
  }

  .dividenden-einkommen-hero-image {
    height: 250px;
  }

  .dividenden-einkommen-introduction {
    padding: 2rem 0;
  }

  .dividenden-einkommen-lead {
    font-size: 1rem;
  }

  .dividenden-einkommen-key-points {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .dividenden-einkommen-fundamentals {
    padding: 2rem 0;
  }

  .dividenden-einkommen-fundamentals h2 {
    font-size: 1.5rem;
  }

  .dividenden-einkommen-fundamentals-text p {
    font-size: 0.9rem;
  }

  .dividenden-einkommen-fundamentals-image {
    height: 250px;
  }

  .dividenden-einkommen-types {
    padding: 2rem 0;
  }

  .dividenden-einkommen-types h2 {
    font-size: 1.5rem;
  }

  .dividenden-einkommen-types-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .dividenden-einkommen-type-card {
    padding: 1rem;
  }

  .dividenden-einkommen-types-image {
    height: 250px;
  }

  .dividenden-einkommen-strategy {
    padding: 2rem 0;
  }

  .dividenden-einkommen-strategy h2 {
    font-size: 1.5rem;
  }

  .dividenden-einkommen-step {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .dividenden-einkommen-step-number {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .dividenden-einkommen-metrics {
    padding: 2rem 0;
  }

  .dividenden-einkommen-metrics h2 {
    font-size: 1.5rem;
  }

  .dividenden-einkommen-metrics-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .dividenden-einkommen-metrics-image {
    height: 250px;
  }

  .dividenden-einkommen-quote {
    padding: 2rem 0;
  }

  .dividenden-einkommen-blockquote {
    font-size: 1.25rem;
  }

  .dividenden-einkommen-considerations {
    padding: 2rem 0;
  }

  .dividenden-einkommen-considerations h2 {
    font-size: 1.5rem;
  }

  .dividenden-einkommen-risk-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .dividenden-einkommen-considerations-image {
    height: 250px;
  }

  .dividenden-einkommen-conclusion {
    padding: 2rem 0;
  }

  .dividenden-einkommen-conclusion h2 {
    font-size: 1.5rem;
  }

  .dividenden-einkommen-disclaimer {
    padding: 2rem 0;
  }

  .dividenden-einkommen-disclaimer-content {
    flex-direction: column;
    gap: 1rem;
  }

  .dividenden-einkommen-related {
    padding: 2rem 0;
  }

  .dividenden-einkommen-related h2 {
    font-size: 1.5rem;
  }

  .dividenden-einkommen-related-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .dividenden-einkommen-related-card {
    padding: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .post-dividenden-einkommen *,
  .post-dividenden-einkommen *::before,
  .post-dividenden-einkommen *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.post-optionen-derivate {
  width: 100%;
  background: var(--color-bg-light-primary);
}

.optionen-derivate-breadcrumbs-section {
  background: var(--color-bg-light-secondary);
  padding: 1rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.optionen-derivate-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.optionen-derivate-breadcrumbs a {
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.optionen-derivate-breadcrumbs a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.optionen-derivate-breadcrumbs span {
  color: var(--color-text-dark-muted);
}

@media (max-width: 767px) {
  .optionen-derivate-breadcrumbs-section {
    padding: 0.75rem 0;
  }

  .optionen-derivate-breadcrumbs {
    font-size: 0.75rem;
    gap: 0.5rem;
  }
}

.optionen-derivate-hero {
  background: var(--color-bg-dark-primary);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.optionen-derivate-hero-background {
  position: absolute;
  top: 0;
  right: -300px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.optionen-derivate-hero-accent-1 {
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.optionen-derivate-hero-accent-2 {
  position: absolute;
  top: 100px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.optionen-derivate-hero-glow {
  position: absolute;
  bottom: 50px;
  right: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  filter: blur(40px);
}

.optionen-derivate-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.optionen-derivate-hero-text h1 {
  color: var(--color-text-light);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
}

.optionen-derivate-hero-lead {
  color: var(--color-text-light-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.optionen-derivate-hero-meta {
  display: flex;
  gap: 2rem;
  margin-top: 1.5rem;
}

.optionen-derivate-read-time,
.optionen-derivate-difficulty {
  color: var(--color-text-light-muted);
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.optionen-derivate-read-time .fas,
.optionen-derivate-difficulty .fas {
  color: var(--color-secondary);
  font-size: 1rem;
}

.optionen-derivate-hero-image {
  position: relative;
  height: 400px;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.optionen-derivate-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .optionen-derivate-hero {
    padding: 6rem 0;
  }

  .optionen-derivate-hero-text h1 {
    font-size: 3.5rem;
  }
}

@media (max-width: 767px) {
  .optionen-derivate-hero {
    padding: 3rem 0;
  }

  .optionen-derivate-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .optionen-derivate-hero-text h1 {
    font-size: 2rem;
  }

  .optionen-derivate-hero-lead {
    font-size: 0.95rem;
  }

  .optionen-derivate-hero-meta {
    flex-direction: column;
    gap: 0.75rem;
  }

  .optionen-derivate-hero-image {
    height: 280px;
  }
}

.optionen-derivate-introduction {
  background: var(--color-bg-light-primary);
  padding: 5rem 0;
}

.optionen-derivate-intro-content {
  max-width: 800px;
  margin: 0 auto;
}

.optionen-derivate-intro-content h2 {
  color: var(--color-text-dark);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.optionen-derivate-intro-content > p {
  color: var(--color-text-dark-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.optionen-derivate-highlight-box {
  background: var(--color-bg-light-secondary);
  border-left: 4px solid var(--color-primary);
  padding: 2rem;
  border-radius: 8px;
  margin: 2rem 0;
  display: flex;
  gap: 1.5rem;
}

.optionen-derivate-highlight-icon {
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.optionen-derivate-highlight-text h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin: 0 0 0.75rem 0;
}

.optionen-derivate-highlight-text p {
  color: var(--color-text-dark-secondary);
  margin: 0;
  font-size: 0.95rem;
}

@media (max-width: 767px) {
  .optionen-derivate-introduction {
    padding: 3rem 0;
  }

  .optionen-derivate-intro-content h2 {
    font-size: 1.75rem;
  }

  .optionen-derivate-highlight-box {
    padding: 1.5rem;
    flex-direction: column;
  }
}

.optionen-derivate-types-section {
  background: var(--color-bg-dark-secondary);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.optionen-derivate-section-accent-1 {
  position: absolute;
  top: -300px;
  right: -250px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.optionen-derivate-section-accent-2 {
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.optionen-derivate-section-glow {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  filter: blur(60px);
}

.optionen-derivate-types-content {
  position: relative;
  z-index: 10;
}

.optionen-derivate-types-content h2 {
  color: var(--color-text-light);
  font-size: 2.5rem;
  margin-bottom: 2rem;
  text-align: center;
}

.optionen-derivate-types-image {
  margin: 2rem 0 3rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.optionen-derivate-types-image img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 400px;
  object-fit: cover;
}

.optionen-derivate-types-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.optionen-derivate-type-card {
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  padding: 2rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.optionen-derivate-type-card:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.optionen-derivate-type-icon {
  font-size: 2rem;
  color: var(--color-secondary);
}

.optionen-derivate-type-card h3 {
  color: var(--color-text-light);
  font-size: 1.25rem;
  margin: 0;
}

.optionen-derivate-type-card p {
  color: var(--color-text-light-secondary);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .optionen-derivate-types-section {
    padding: 6rem 0;
  }

  .optionen-derivate-types-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .optionen-derivate-types-section {
    padding: 3rem 0;
  }

  .optionen-derivate-types-content h2 {
    font-size: 1.75rem;
  }

  .optionen-derivate-types-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .optionen-derivate-type-card {
    padding: 1.5rem;
  }
}

.optionen-derivate-strategies {
  background: var(--color-bg-light-primary);
  padding: 5rem 0;
}

.optionen-derivate-strategies-content h2 {
  color: var(--color-text-dark);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.optionen-derivate-strategies-content > p {
  color: var(--color-text-dark-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.optionen-derivate-strategy-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin: 3rem 0;
  background: var(--color-bg-light-secondary);
  padding: 2.5rem;
  border-radius: 12px;
}

.optionen-derivate-strategy-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.optionen-derivate-strategy-image img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 350px;
  object-fit: cover;
}

.optionen-derivate-strategy-text h3 {
  color: var(--color-text-dark);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.optionen-derivate-strategy-text p {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.optionen-derivate-strategy-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.optionen-derivate-strategy-card {
  background: var(--color-bg-light-secondary);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
}

.optionen-derivate-strategy-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.1);
  transform: translateY(-4px);
}

.optionen-derivate-strategy-card h3 {
  color: var(--color-text-dark);
  font-size: 1.1rem;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.optionen-derivate-strategy-card h3 i {
  color: var(--color-secondary);
  font-size: 1.25rem;
}

.optionen-derivate-strategy-card p {
  color: var(--color-text-dark-secondary);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .optionen-derivate-strategies {
    padding: 6rem 0;
  }

  .optionen-derivate-strategy-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .optionen-derivate-strategies {
    padding: 3rem 0;
  }

  .optionen-derivate-strategies-content h2 {
    font-size: 1.75rem;
  }

  .optionen-derivate-strategy-intro {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .optionen-derivate-strategy-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .optionen-derivate-strategy-card {
    padding: 1.5rem;
  }
}

.optionen-derivate-analysis {
  background: var(--color-bg-dark-tertiary);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.optionen-derivate-analysis-accent-1 {
  position: absolute;
  top: -250px;
  left: -300px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.optionen-derivate-analysis-accent-2 {
  position: absolute;
  bottom: 50px;
  right: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.optionen-derivate-analysis-glow {
  position: absolute;
  top: 40%;
  right: 10%;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  filter: blur(50px);
}

.optionen-derivate-analysis-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.optionen-derivate-analysis-text h2 {
  color: var(--color-text-light);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.optionen-derivate-analysis-text > p {
  color: var(--color-text-light-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.optionen-derivate-analysis-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.optionen-derivate-list-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.optionen-derivate-list-item .fas {
  color: var(--color-secondary);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.optionen-derivate-list-item span {
  color: var(--color-text-light-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
}

.optionen-derivate-analysis-image {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.optionen-derivate-analysis-image img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 400px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .optionen-derivate-analysis {
    padding: 6rem 0;
  }
}

@media (max-width: 767px) {
  .optionen-derivate-analysis {
    padding: 3rem 0;
  }

  .optionen-derivate-analysis-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .optionen-derivate-analysis-text h2 {
    font-size: 1.75rem;
  }
}

.optionen-derivate-risk-management {
  background: var(--color-bg-light-primary);
  padding: 5rem 0;
}

.optionen-derivate-risk-content h2 {
  color: var(--color-text-dark);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.optionen-derivate-risk-intro {
  background: var(--color-bg-light-secondary);
  padding: 2rem;
  border-radius: 12px;
  margin-bottom: 2rem;
  border-left: 4px solid var(--color-secondary);
}

.optionen-derivate-risk-intro p {
  color: var(--color-text-dark-secondary);
  margin: 0;
  font-size: 1rem;
}

.optionen-derivate-risk-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.optionen-derivate-risk-item {
  background: var(--color-bg-light-secondary);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.optionen-derivate-risk-number {
  position: absolute;
  top: -15px;
  left: 20px;
  background: var(--color-primary);
  color: #ffffff;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.5rem;
  font-family: var(--font-heading);
}

.optionen-derivate-risk-item h3 {
  color: var(--color-text-dark);
  font-size: 1.1rem;
  margin: 1.5rem 0 0 0;
}

.optionen-derivate-risk-item p {
  color: var(--color-text-dark-secondary);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

.optionen-derivate-risk-image {
  margin-top: 2rem;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.optionen-derivate-risk-image img {
  width: 100%;
  height: auto;
  display: block;
  max-height: 400px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .optionen-derivate-risk-management {
    padding: 6rem 0;
  }

  .optionen-derivate-risk-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .optionen-derivate-risk-management {
    padding: 3rem 0;
  }

  .optionen-derivate-risk-content h2 {
    font-size: 1.75rem;
  }

  .optionen-derivate-risk-grid {
    grid-template-columns: 1fr;
  }

  .optionen-derivate-risk-item {
    padding: 1.5rem;
    padding-top: 2.5rem;
  }
}

.optionen-derivate-quote-section {
  background: var(--color-bg-dark-primary);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.optionen-derivate-quote-background {
  position: absolute;
  top: -300px;
  right: -300px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.optionen-derivate-quote {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
}

.optionen-derivate-quote .fas {
  color: var(--color-secondary);
  font-size: 3rem;
  opacity: 0.6;
}

.optionen-derivate-quote p {
  color: var(--color-text-light);
  font-size: 1.5rem;
  line-height: 1.8;
  margin: 0;
  font-style: italic;
  font-family: var(--font-heading);
  font-weight: 600;
}

.optionen-derivate-quote-author {
  color: var(--color-text-light-muted);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@media (min-width: 768px) {
  .optionen-derivate-quote-section {
    padding: 6rem 0;
  }
}

@media (max-width: 767px) {
  .optionen-derivate-quote-section {
    padding: 3rem 0;
  }

  .optionen-derivate-quote p {
    font-size: 1.2rem;
  }

  .optionen-derivate-quote .fas {
    font-size: 2.5rem;
  }
}

.optionen-derivate-learning {
  background: var(--color-bg-light-primary);
  padding: 5rem 0;
}

.optionen-derivate-learning-content h2 {
  color: var(--color-text-dark);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.optionen-derivate-learning-content > p {
  color: var(--color-text-dark-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.optionen-derivate-learning-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.optionen-derivate-learning-card {
  background: var(--color-bg-light-secondary);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.3s ease;
  text-align: center;
}

.optionen-derivate-learning-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
  transform: translateY(-4px);
}

.optionen-derivate-learning-icon {
  width: 60px;
  height: 60px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 1.75rem;
  color: var(--color-primary);
}

.optionen-derivate-learning-card h3 {
  color: var(--color-text-dark);
  font-size: 1.15rem;
  margin: 0;
}

.optionen-derivate-learning-card p {
  color: var(--color-text-dark-secondary);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .optionen-derivate-learning {
    padding: 6rem 0;
  }

  .optionen-derivate-learning-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .optionen-derivate-learning {
    padding: 3rem 0;
  }

  .optionen-derivate-learning-content h2 {
    font-size: 1.75rem;
  }

  .optionen-derivate-learning-cards {
    grid-template-columns: 1fr;
  }
}

.optionen-derivate-disclaimer {
  background: var(--color-bg-dark-secondary);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

.optionen-derivate-disclaimer-icon-bg {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.optionen-derivate-disclaimer-content {
  position: relative;
  z-index: 10;
  max-width: 700px;
  margin: 0 auto;
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-left: 4px solid var(--color-accent-gold);
  padding: 2rem;
  border-radius: 8px;
  display: flex;
  gap: 1.5rem;
}

.optionen-derivate-disclaimer-icon {
  font-size: 2rem;
  color: var(--color-accent-gold);
  flex-shrink: 0;
}

.optionen-derivate-disclaimer-content h3 {
  color: var(--color-text-light);
  font-size: 1.25rem;
  margin: 0 0 0.75rem 0;
}

.optionen-derivate-disclaimer-content p {
  color: var(--color-text-light-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

@media (max-width: 767px) {
  .optionen-derivate-disclaimer {
    padding: 2rem 0;
  }

  .optionen-derivate-disclaimer-content {
    padding: 1.5rem;
    flex-direction: column;
    align-items: flex-start;
  }
}

.optionen-derivate-related {
  background: var(--color-bg-light-primary);
  padding: 5rem 0;
  border-top: 2px solid #e2e8f0;
}

.optionen-derivate-related-content h2 {
  color: var(--color-text-dark);
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
  text-align: center;
}

.optionen-derivate-related-content > p {
  color: var(--color-text-dark-secondary);
  font-size: 1rem;
  text-align: center;
  margin-bottom: 2rem;
}

.optionen-derivate-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.optionen-derivate-related-card {
  background: var(--color-bg-light-secondary);
  border: 2px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.optionen-derivate-related-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 15px 35px rgba(59, 130, 246, 0.15);
  transform: translateY(-8px);
}

.optionen-derivate-card-header {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 120px;
}

.optionen-derivate-card-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
}

.optionen-derivate-card-body {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.optionen-derivate-card-body h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin: 0;
}

.optionen-derivate-card-body p {
  color: var(--color-text-dark-secondary);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
  flex-grow: 1;
}

.optionen-derivate-card-link {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

.optionen-derivate-card-link:hover {
  color: var(--color-primary-hover);
  gap: 1rem;
}

.optionen-derivate-card-link .fas {
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .optionen-derivate-related {
    padding: 6rem 0;
  }

  .optionen-derivate-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 767px) {
  .optionen-derivate-related {
    padding: 3rem 0;
  }

  .optionen-derivate-related-content h2 {
    font-size: 1.75rem;
  }

  .optionen-derivate-related-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .optionen-derivate-card-body {
    padding: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:root {
      --color-bg-dark-primary: #0a0f1e;
      --color-bg-dark-secondary: #0f1729;
      --color-bg-dark-tertiary: #1a2847;
      --color-bg-light-primary: #ffffff;
      --color-bg-light-secondary: #f8fafc;
      --color-text-light: #ffffff;
      --color-text-light-secondary: #e2e8f0;
      --color-text-light-muted: #94a3b8;
      --color-text-dark: #0f172a;
      --color-text-dark-secondary: #374151;
      --color-text-dark-muted: #6b7280;
      --color-primary: #3b82f6;
      --color-primary-hover: #2563eb;
      --color-secondary: #06b6d4;
      --color-accent-gold: #f59e0b;
      --color-accent-green: #10b981;
      --font-primary: 'Inter', sans-serif;
      --font-heading: 'Playfair Display', serif;
      --radius-lg: 12px;
      --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
    }

    .post-makrooekonomische-trends {
      font-family: var(--font-primary);
      line-height: 1.6;
    }

    .container {
      max-width: 1440px;
      width: 100%;
      margin: 0 auto;
      padding: 0 20px;
    }

    .makrooekonomische-trends-breadcrumbs {
      background: var(--color-bg-dark-primary);
      padding: 1.5rem 0;
      border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    }

    .makrooekonomische-trends-breadcrumbs nav {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.875rem;
    }

    .makrooekonomische-trends-breadcrumbs a,
    .makrooekonomische-trends-breadcrumbs span {
      color: var(--color-text-light-muted);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .makrooekonomische-trends-breadcrumbs a:hover {
      color: var(--color-primary);
    }

    .makrooekonomische-trends-breadcrumbs span:last-child {
      color: var(--color-primary);
      font-weight: 600;
    }

    .makrooekonomische-trends-hero {
      background: var(--color-bg-dark-primary);
      padding: 5rem 0 4rem;
      position: relative;
      overflow: hidden;
    }

    .makrooekonomische-trends-hero::before {
      content: '';
      position: absolute;
      top: -300px;
      right: -200px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .makrooekonomische-trends-hero::after {
      content: '';
      position: absolute;
      bottom: -250px;
      left: -300px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .makrooekonomische-trends-hero-content {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      align-items: center;
    }

    .makrooekonomische-trends-hero h1 {
      font-family: var(--font-heading);
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--color-text-light);
      margin-bottom: 1rem;
      line-height: 1.2;
    }

    .makrooekonomische-trends-hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      margin-bottom: 2rem;
      padding-bottom: 1.5rem;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .makrooekonomische-trends-meta-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.875rem;
      color: var(--color-text-light-muted);
    }

    .makrooekonomische-trends-meta-item i {
      color: var(--color-primary);
      font-size: 1rem;
    }

    .makrooekonomische-trends-hero-image {
      width: 100%;
      height: 350px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid rgba(59, 130, 246, 0.3);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    }

    .makrooekonomische-trends-hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .makrooekonomische-trends-lead {
      background: var(--color-bg-dark-secondary);
      padding: 3rem 0;
      position: relative;
    }

    .makrooekonomische-trends-lead-content {
      position: relative;
      z-index: 2;
    }

    .makrooekonomische-trends-lead p {
      font-size: 1.125rem;
      color: var(--color-text-light-secondary);
      line-height: 1.8;
      max-width: 900px;
      margin: 0;
    }

    .makrooekonomische-trends-content-1,
    .makrooekonomische-trends-content-2,
    .makrooekonomische-trends-content-3 {
      background: var(--color-bg-dark-primary);
      padding: 4rem 0;
      position: relative;
      overflow: hidden;
    }

    .makrooekonomische-trends-content-2 {
      background: var(--color-bg-dark-tertiary);
    }

    .makrooekonomische-trends-content-1::before {
      content: '';
      position: absolute;
      top: -250px;
      right: -150px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .makrooekonomische-trends-content-2::before {
      content: '';
      position: absolute;
      top: 50%;
      left: -200px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
      transform: translateY(-50%);
    }

    .makrooekonomische-trends-section-content {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      align-items: start;
    }

    .makrooekonomische-trends-section-text {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .makrooekonomische-trends-section-text h2 {
      font-family: var(--font-heading);
      font-size: 2rem;
      font-weight: 700;
      color: var(--color-text-light);
      margin: 0;
      line-height: 1.2;
    }

    .makrooekonomische-trends-section-text p {
      color: var(--color-text-light-secondary);
      font-size: 1rem;
      line-height: 1.8;
      margin: 0;
    }

    .makrooekonomische-trends-section-image {
      width: 100%;
      height: 300px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid rgba(59, 130, 246, 0.2);
    }

    .makrooekonomische-trends-section-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .makrooekonomische-trends-highlight-box {
      background: rgba(59, 130, 246, 0.1);
      border-left: 4px solid var(--color-primary);
      padding: 1.5rem;
      border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
      margin: 1rem 0;
    }

    .makrooekonomische-trends-highlight-box p {
      color: var(--color-text-light-secondary);
      margin: 0;
      font-size: 0.95rem;
      line-height: 1.7;
    }

    .makrooekonomische-trends-highlight-box strong {
      color: var(--color-primary);
      font-weight: 600;
    }

    .makrooekonomische-trends-quote {
      background: rgba(6, 182, 212, 0.08);
      border-left: 4px solid var(--color-secondary);
      padding: 2rem;
      border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
      margin: 2rem 0;
      font-style: italic;
      color: var(--color-text-light-secondary);
      font-size: 1.05rem;
      line-height: 1.8;
    }

    .makrooekonomische-trends-quote::before {
      content: '"';
      font-size: 2.5rem;
      color: var(--color-secondary);
      opacity: 0.3;
      display: block;
      margin-bottom: 0.5rem;
    }

    .makrooekonomische-trends-list {
      list-style: none;
      padding: 0;
      margin: 1.5rem 0;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .makrooekonomische-trends-list li {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      color: var(--color-text-light-secondary);
      font-size: 0.95rem;
      line-height: 1.7;
    }

    .makrooekonomische-trends-list i {
      color: var(--color-accent-green);
      font-size: 1.25rem;
      margin-top: 0.25rem;
      flex-shrink: 0;
    }

    .makrooekonomische-trends-disclaimer {
      background: var(--color-bg-dark-tertiary);
      padding: 3rem 0;
      position: relative;
      overflow: hidden;
    }

    .makrooekonomische-trends-disclaimer::before {
      content: '';
      position: absolute;
      top: 50%;
      right: -200px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
      transform: translateY(-50%);
    }

    .makrooekonomische-trends-disclaimer-content {
      position: relative;
      z-index: 2;
      background: rgba(59, 130, 246, 0.08);
      border: 1px solid rgba(59, 130, 246, 0.2);
      border-radius: var(--radius-lg);
      padding: 2rem;
      display: flex;
      gap: 1rem;
      align-items: flex-start;
    }

    .makrooekonomische-trends-disclaimer-icon {
      color: var(--color-primary);
      font-size: 1.5rem;
      flex-shrink: 0;
      margin-top: 0.25rem;
    }

    .makrooekonomische-trends-disclaimer-text {
      display: flex;
      flex-direction: column;
      gap: 0.5rem;
    }

    .makrooekonomische-trends-disclaimer-text h3 {
      font-family: var(--font-heading);
      font-size: 1.125rem;
      font-weight: 700;
      color: var(--color-text-light);
      margin: 0;
    }

    .makrooekonomische-trends-disclaimer-text p {
      color: var(--color-text-light-secondary);
      font-size: 0.9rem;
      line-height: 1.7;
      margin: 0;
    }

    .makrooekonomische-trends-related {
      background: var(--color-bg-dark-primary);
      padding: 4rem 0;
      position: relative;
      overflow: hidden;
    }

    .makrooekonomische-trends-related::before {
      content: '';
      position: absolute;
      top: -200px;
      left: -200px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
    }

    .makrooekonomische-trends-related-content {
      position: relative;
      z-index: 2;
    }

    .makrooekonomische-trends-related h2 {
      font-family: var(--font-heading);
      font-size: 2rem;
      font-weight: 700;
      color: var(--color-text-light);
      text-align: center;
      margin-bottom: 3rem;
      line-height: 1.2;
    }

    .makrooekonomische-trends-related-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }

    .makrooekonomische-trends-related-card {
      background: rgba(59, 130, 246, 0.08);
      border: 1px solid rgba(59, 130, 246, 0.2);
      border-radius: var(--radius-lg);
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      transition: all 0.3s ease;
    }

    .makrooekonomische-trends-related-card:hover {
      transform: translateY(-6px);
      border-color: rgba(59, 130, 246, 0.4);
      background: rgba(59, 130, 246, 0.12);
    }

    .makrooekonomische-trends-related-card h3 {
      font-family: var(--font-heading);
      font-size: 1.25rem;
      font-weight: 700;
      color: var(--color-text-light);
      margin: 0;
      line-height: 1.3;
    }

    .makrooekonomische-trends-related-card p {
      color: var(--color-text-light-secondary);
      font-size: 0.9rem;
      line-height: 1.6;
      margin: 0;
    }

    .makrooekonomische-trends-related-card a {
      color: var(--color-primary);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.9rem;
      transition: color 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      margin-top: 0.5rem;
    }

    .makrooekonomische-trends-related-card a:hover {
      color: var(--color-primary-hover);
    }

    @media (min-width: 768px) {
      .makrooekonomische-trends-hero {
        padding: 6rem 0 5rem;
      }

      .makrooekonomische-trends-hero h1 {
        font-size: 3rem;
      }

      .makrooekonomische-trends-hero-image {
        height: 400px;
      }

      .makrooekonomische-trends-lead {
        padding: 4rem 0;
      }

      .makrooekonomische-trends-content-1,
      .makrooekonomische-trends-content-2,
      .makrooekonomische-trends-content-3 {
        padding: 5rem 0;
      }

      .makrooekonomische-trends-section-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
      }

      .makrooekonomische-trends-section-image {
        height: 350px;
      }

      .makrooekonomische-trends-section-text h2 {
        font-size: 2.25rem;
      }

      .makrooekonomische-trends-disclaimer {
        padding: 4rem 0;
      }

      .makrooekonomische-trends-related {
        padding: 5rem 0;
      }

      .makrooekonomische-trends-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
      }
    }

    @media (min-width: 1024px) {
      .makrooekonomische-trends-hero {
        padding: 7rem 0 6rem;
      }

      .makrooekonomische-trends-hero h1 {
        font-size: 3.5rem;
      }

      .makrooekonomische-trends-hero-image {
        height: 450px;
      }

      .makrooekonomische-trends-section-text h2 {
        font-size: 2.5rem;
      }

      .makrooekonomische-trends-section-image {
        height: 400px;
      }

      .makrooekonomische-trends-related h2 {
        font-size: 2.5rem;
      }
    }

    @media (max-width: 767px) {
      .makrooekonomische-trends-hero {
        padding: 3rem 0 2rem;
      }

      .makrooekonomische-trends-hero h1 {
        font-size: 1.75rem;
      }

      .makrooekonomische-trends-hero-image {
        height: 250px;
      }

      .makrooekonomische-trends-lead {
        padding: 2rem 0;
      }

      .makrooekonomische-trends-lead p {
        font-size: 1rem;
      }

      .makrooekonomische-trends-content-1,
      .makrooekonomische-trends-content-2,
      .makrooekonomische-trends-content-3 {
        padding: 3rem 0;
      }

      .makrooekonomische-trends-section-text h2 {
        font-size: 1.5rem;
      }

      .makrooekonomische-trends-section-image {
        height: 250px;
      }

      .makrooekonomische-trends-disclaimer {
        padding: 2.5rem 0;
      }

      .makrooekonomische-trends-disclaimer-content {
        padding: 1.5rem;
      }

      .makrooekonomische-trends-related {
        padding: 3rem 0;
      }

      .makrooekonomische-trends-related h2 {
        font-size: 1.5rem;
        margin-bottom: 2rem;
      }

      .makrooekonomische-trends-related-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }

:root {
    --color-bg-dark-primary: #0a0f1e;
    --color-bg-dark-secondary: #0f1729;
    --color-bg-light-primary: #ffffff;
    --color-bg-light-secondary: #f8fafc;
    --color-text-light: #ffffff;
    --color-text-light-secondary: #e2e8f0;
    --color-text-light-muted: #94a3b8;
    --color-text-dark: #0f172a;
    --color-text-dark-secondary: #374151;
    --color-text-dark-muted: #6b7280;
    --color-primary: #3b82f6;
    --color-primary-hover: #2563eb;
    --color-secondary: #06b6d4;
    --color-accent-gold: #f59e0b;
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --radius-lg: 12px;
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  }

  .post-backtesting-strategien {
    font-family: var(--font-primary);
    line-height: 1.6;
  }

  .container {
    max-width: 1440px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
  }

  .backtesting-strategien-breadcrumbs-section {
    background: var(--color-bg-light-primary);
    padding: 1.5rem 0;
    border-bottom: 1px solid #e2e8f0;
  }

  .backtesting-strategien-breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
  }

  .backtesting-strategien-breadcrumb-link {
    color: var(--color-primary);
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.3s ease;
  }

  .backtesting-strategien-breadcrumb-link:hover {
    color: var(--color-primary-hover);
  }

  .backtesting-strategien-breadcrumb-separator {
    color: var(--color-text-dark-muted);
    font-size: 0.875rem;
  }

  .backtesting-strategien-breadcrumb-current {
    color: var(--color-text-dark-secondary);
    font-size: 0.875rem;
    font-weight: 500;
  }

  .backtesting-strategien-hero {
    background: var(--color-bg-light-primary);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
  }

  .backtesting-strategien-hero-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
  }

  .backtesting-strategien-hero-text h1 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  .backtesting-strategien-lead {
    font-size: 1.125rem;
    color: var(--color-text-dark-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
  }

  .backtesting-strategien-meta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
  }

  .backtesting-strategien-read-time {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-dark-muted);
    font-size: 0.9rem;
  }

  .backtesting-strategien-read-time .fas {
    color: var(--color-primary);
  }

  .backtesting-strategien-featured-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
  }

  .backtesting-strategien-content-intro {
    background: var(--color-bg-light-secondary);
    padding: 4rem 0;
  }

  .backtesting-strategien-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  .backtesting-strategien-intro-text h2,
  .backtesting-strategien-content-section-1 h2,
  .backtesting-strategien-content-section-2 h2,
  .backtesting-strategien-content-section-3 h2,
  .backtesting-strategien-content-section-4 h2 {
    font-family: var(--font-heading);
    font-size: 1.875rem;
    color: var(--color-text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
  }

  .backtesting-strategien-intro-text p,
  .backtesting-strategien-content-section-1 p,
  .backtesting-strategien-content-section-2 p,
  .backtesting-strategien-content-section-3 p,
  .backtesting-strategien-content-section-4 p {
    color: var(--color-text-dark-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }

  .backtesting-strategien-intro-text {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .backtesting-strategien-intro-image {
    width: 100%;
  }

  .backtesting-strategien-content-image {
    width: 100%;
    height: auto;
    max-height: 350px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
  }

  .backtesting-strategien-content-section-1,
  .backtesting-strategien-content-section-3 {
    background: var(--color-bg-light-primary);
    padding: 4rem 0;
  }

  .backtesting-strategien-content-section-2,
  .backtesting-strategien-content-section-4 {
    background: var(--color-bg-light-secondary);
    padding: 4rem 0;
  }

  .backtesting-strategien-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
  }

  .backtesting-strategien-step {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 2rem;
    background: var(--color-bg-light-secondary);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
  }

  .backtesting-strategien-step-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-primary);
    font-weight: 700;
  }

  .backtesting-strategien-step h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-text-dark);
    margin: 0;
  }

  .backtesting-strategien-step p {
    margin: 0;
    color: var(--color-text-dark-secondary);
    font-size: 0.95rem;
  }

  .backtesting-strategien-content-image-wide {
    width: 100%;
    margin: 2rem 0;
  }

  .backtesting-strategien-metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
  }

  .backtesting-strategien-metric-card {
    padding: 2rem;
    background: var(--color-bg-light-primary);
    border-radius: var(--radius-lg);
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
  }

  .backtesting-strategien-metric-card:hover {
    border-color: var(--color-primary);
    box-shadow: var(--shadow-lg);
  }

  .backtesting-strategien-metric-card h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-text-dark);
    margin-bottom: 0.75rem;
  }

  .backtesting-strategien-metric-card p {
    color: var(--color-text-dark-secondary);
    font-size: 0.95rem;
    margin: 0;
  }

  .backtesting-strategien-quote-section {
    margin: 3rem 0;
  }

  .backtesting-strategien-quote {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
    border-left: 4px solid var(--color-primary);
    border-radius: var(--radius-lg);
    margin: 0;
  }

  .backtesting-strategien-quote p {
    font-size: 1.125rem;
    color: var(--color-text-dark);
    font-style: italic;
    margin: 0;
    line-height: 1.8;
  }

  .backtesting-strategien-warning-box {
    padding: 2rem;
    background: var(--color-bg-light-secondary);
    border-radius: var(--radius-lg);
    border: 2px solid #fef3c7;
    margin-bottom: 1.5rem;
  }

  .backtesting-strategien-warning-box h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-accent-gold);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .backtesting-strategien-warning-box h3 .fas {
    font-size: 1.25rem;
  }

  .backtesting-strategien-warning-box p {
    color: var(--color-text-dark-secondary);
    margin: 0;
  }

  .backtesting-strategien-transition-box {
    padding: 2rem;
    background: var(--color-bg-light-secondary);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-secondary);
    margin-bottom: 1.5rem;
  }

  .backtesting-strategien-transition-box h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-text-dark);
    margin-bottom: 0.75rem;
  }

  .backtesting-strategien-transition-box p {
    color: var(--color-text-dark-secondary);
    margin: 0;
  }

  .backtesting-strategien-disclaimer {
    background: var(--color-bg-light-secondary);
    padding: 4rem 0;
  }

  .backtesting-strategien-disclaimer-content {
    display: flex;
    gap: 2rem;
    padding: 2.5rem;
    background: var(--color-bg-light-primary);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-accent-gold);
  }

  .backtesting-strategien-disclaimer-icon {
    font-size: 2rem;
    color: var(--color-accent-gold);
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    padding-top: 0.25rem;
  }

  .backtesting-strategien-disclaimer-text h3 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    color: var(--color-text-dark);
    margin-bottom: 0.75rem;
  }

  .backtesting-strategien-disclaimer-text p {
    color: var(--color-text-dark-secondary);
    font-size: 0.95rem;
    margin: 0;
    line-height: 1.7;
  }

  .backtesting-strategien-related {
    background: var(--color-bg-light-primary);
    padding: 4rem 0;
  }

  .backtesting-strategien-related-content h2 {
    font-family: var(--font-heading);
    font-size: 1.875rem;
    color: var(--color-text-dark);
    margin-bottom: 3rem;
    text-align: center;
  }

  .backtesting-strategien-related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
  }

  .backtesting-strategien-related-card {
    background: var(--color-bg-light-secondary);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
  }

  .backtesting-strategien-related-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
  }

  .backtesting-strategien-related-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
  }

  .backtesting-strategien-related-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .backtesting-strategien-related-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 1;
  }

  .backtesting-strategien-related-card h3 {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    color: var(--color-text-dark);
    margin: 0;
    line-height: 1.3;
  }

  .backtesting-strategien-related-card p {
    color: var(--color-text-dark-secondary);
    font-size: 0.9rem;
    margin: 0;
    flex: 1;
  }

  .backtesting-strategien-related-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
  }

  .backtesting-strategien-related-link:hover {
    color: var(--color-primary-hover);
    gap: 0.75rem;
  }

  @media (min-width: 768px) {
    .backtesting-strategien-hero-content {
      grid-template-columns: 1fr 1fr;
    }

    .backtesting-strategien-hero-text h1 {
      font-size: 2.5rem;
    }

    .backtesting-strategien-intro-text {
      max-width: 70%;
    }

    .backtesting-strategien-content-intro {
      padding: 5rem 0;
    }

    .backtesting-strategien-content-section-1,
    .backtesting-strategien-content-section-2,
    .backtesting-strategien-content-section-3,
    .backtesting-strategien-content-section-4 {
      padding: 5rem 0;
    }

    .backtesting-strategien-breadcrumbs-section {
      padding: 2rem 0;
    }

    .backtesting-strategien-hero {
      padding: 5rem 0;
    }

    .backtesting-strategien-disclaimer {
      padding: 5rem 0;
    }

    .backtesting-strategien-related {
      padding: 5rem 0;
    }

    .backtesting-strategien-intro-text h2,
    .backtesting-strategien-content-section-1 h2,
    .backtesting-strategien-content-section-2 h2,
    .backtesting-strategien-content-section-3 h2,
    .backtesting-strategien-content-section-4 h2 {
      font-size: 2.25rem;
    }

    .backtesting-strategien-disclaimer-content {
      gap: 2.5rem;
      padding: 3rem;
    }
  }

  @media (min-width: 1024px) {
    .backtesting-strategien-hero-text h1 {
      font-size: 3rem;
    }

    .backtesting-strategien-intro-text h2,
    .backtesting-strategien-content-section-1 h2,
    .backtesting-strategien-content-section-2 h2,
    .backtesting-strategien-content-section-3 h2,
    .backtesting-strategien-content-section-4 h2 {
      font-size: 2.5rem;
    }

    .backtesting-strategien-intro-text p,
    .backtesting-strategien-content-section-1 p,
    .backtesting-strategien-content-section-2 p,
    .backtesting-strategien-content-section-3 p,
    .backtesting-strategien-content-section-4 p {
      font-size: 1.05rem;
    }
  }

  @media (max-width: 767px) {
    .backtesting-strategien-hero {
      padding: 3rem 0;
    }

    .backtesting-strategien-hero-text h1 {
      font-size: 1.75rem;
    }

    .backtesting-strategien-lead {
      font-size: 1rem;
    }

    .backtesting-strategien-content-intro,
    .backtesting-strategien-content-section-1,
    .backtesting-strategien-content-section-2,
    .backtesting-strategien-content-section-3,
    .backtesting-strategien-content-section-4 {
      padding: 2rem 0;
    }

    .backtesting-strategien-intro-text h2,
    .backtesting-strategien-content-section-1 h2,
    .backtesting-strategien-content-section-2 h2,
    .backtesting-strategien-content-section-3 h2,
    .backtesting-strategien-content-section-4 h2 {
      font-size: 1.5rem;
    }

    .backtesting-strategien-intro-text p,
    .backtesting-strategien-content-section-1 p,
    .backtesting-strategien-content-section-2 p,
    .backtesting-strategien-content-section-3 p,
    .backtesting-strategien-content-section-4 p {
      font-size: 0.95rem;
    }

    .backtesting-strategien-steps {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .backtesting-strategien-step {
      padding: 1.5rem;
    }

    .backtesting-strategien-metrics-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .backtesting-strategien-metric-card {
      padding: 1.5rem;
    }

    .backtesting-strategien-disclaimer-content {
      flex-direction: column;
      gap: 1rem;
      padding: 1.5rem;
    }

    .backtesting-strategien-disclaimer-text h3 {
      font-size: 1.1rem;
    }

    .backtesting-strategien-disclaimer-text p {
      font-size: 0.9rem;
    }

    .backtesting-strategien-related-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    .backtesting-strategien-breadcrumbs {
      font-size: 0.8rem;
    }

    .backtesting-strategien-quote {
      padding: 1.5rem;
    }

    .backtesting-strategien-quote p {
      font-size: 1rem;
    }

    .backtesting-strategien-warning-box,
    .backtesting-strategien-transition-box {
      padding: 1.5rem;
      margin-bottom: 1rem;
    }

    .backtesting-strategien-warning-box h3,
    .backtesting-strategien-transition-box h3 {
      font-size: 1.1rem;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    * {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
    }
  }

:root {
      --color-bg-dark-primary: #0a0f1e;
      --color-bg-dark-secondary: #0f1729;
      --color-bg-dark-tertiary: #1a2847;
      --color-bg-light-primary: #ffffff;
      --color-bg-light-secondary: #f8fafc;
      --color-text-light: #ffffff;
      --color-text-light-secondary: #e2e8f0;
      --color-text-light-muted: #94a3b8;
      --color-text-dark: #0f172a;
      --color-text-dark-secondary: #374151;
      --color-text-dark-muted: #6b7280;
      --color-primary: #3b82f6;
      --color-primary-hover: #2563eb;
      --color-secondary: #06b6d4;
      --color-accent-gold: #f59e0b;
      --font-primary: 'Inter', sans-serif;
      --font-heading: 'Playfair Display', serif;
      --radius-lg: 12px;
      --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
      --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .post-rohstoffhandel-erklaert {
      font-family: var(--font-primary);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    .container {
      max-width: 1440px;
      width: 100%;
      margin: 0 auto;
      padding: 0 20px;
    }

    .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-breadcrumbs {
      background: var(--color-bg-dark-primary);
      padding: 1.5rem 0;
      position: relative;
      overflow: hidden;
    }

    .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-breadcrumbs-content {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--color-text-light-muted);
      font-size: 0.875rem;
      position: relative;
      z-index: 2;
    }

    .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-breadcrumbs-content a {
      color: var(--color-primary);
      transition: color 0.3s ease;
    }

    .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-breadcrumbs-content a:hover {
      color: var(--color-secondary);
    }

    .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-hero {
      background: var(--color-bg-dark-primary);
      padding: 6rem 0;
      position: relative;
      overflow: hidden;
    }

    .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-hero::before {
      content: '';
      position: absolute;
      top: -300px;
      right: -200px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
      border-radius: 50%;
      z-index: 1;
      pointer-events: none;
    }

    .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-hero::after {
      content: '';
      position: absolute;
      bottom: -250px;
      left: -150px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
      border-radius: 50%;
      z-index: 1;
      pointer-events: none;
    }

    .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-hero-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-hero h1 {
      font-family: var(--font-heading);
      color: var(--color-text-light);
      font-size: 3.75rem;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1.5rem;
      letter-spacing: -0.5px;
    }

    .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-hero-lead {
      color: var(--color-text-light-secondary);
      font-size: 1.25rem;
      line-height: 1.8;
      margin-bottom: 2rem;
      max-width: 700px;
    }

    .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-hero-meta {
      display: flex;
      gap: 2rem;
      align-items: center;
      color: var(--color-text-light-muted);
      font-size: 0.9rem;
      margin-bottom: 3rem;
      flex-wrap: wrap;
    }

    .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-hero-meta-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-hero-image {
      width: 100%;
      height: 400px;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(6, 182, 212, 0.15) 100%);
      border-radius: var(--radius-lg);
      border: 2px solid rgba(59, 130, 246, 0.3);
      overflow: hidden;
      position: relative;
    }

    .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-content-section {
      background: var(--color-bg-light-primary);
      padding: 6rem 0;
      overflow: hidden;
      position: relative;
    }

    .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-content-section:nth-child(even) {
      background: var(--color-bg-light-secondary);
    }

    .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-content-wrapper {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-section-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-content-section h2 {
      font-family: var(--font-heading);
      color: var(--color-text-dark);
      font-size: 2.5rem;
      font-weight: 700;
      line-height: 1.2;
      margin-bottom: 1rem;
      letter-spacing: -0.5px;
    }

    .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-content-section p {
      color: var(--color-text-dark-secondary);
      font-size: 1rem;
      line-height: 1.8;
      margin-bottom: 1rem;
    }

    .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-content-section ul {
      list-style: none;
      color: var(--color-text-dark-secondary);
      font-size: 1rem;
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }

    .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-content-section li {
      margin-bottom: 1rem;
      padding-left: 2rem;
      position: relative;
    }

    .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-content-section li::before {
      content: '';
      position: absolute;
      left: 0;
      color: var(--color-primary);
      font-weight: 700;
      font-size: 1.2rem;
    }

    .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-section-image {
      width: 100%;
      height: 350px;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
      border-radius: var(--radius-lg);
      border: 1px solid #e2e8f0;
      overflow: hidden;
    }

    .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-section-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-highlight-box {
      background: rgba(59, 130, 246, 0.08);
      border-left: 4px solid var(--color-primary);
      padding: 2rem;
      border-radius: var(--radius-lg);
      margin: 2rem 0;
    }

    .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-highlight-box h3 {
      font-family: var(--font-heading);
      color: var(--color-text-dark);
      font-size: 1.5rem;
      margin-bottom: 1rem;
      font-weight: 700;
    }

    .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-highlight-box p {
      color: var(--color-text-dark-secondary);
      margin: 0;
    }

    .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-quote {
      background: var(--color-bg-dark-secondary);
      color: var(--color-text-light);
      padding: 3rem 2rem;
      border-radius: var(--radius-lg);
      text-align: center;
      margin: 3rem 0;
      position: relative;
      z-index: 2;
      border-left: 4px solid var(--color-accent-gold);
    }

    .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-quote p {
      font-size: 1.5rem;
      font-style: italic;
      line-height: 1.8;
      color: var(--color-text-light);
      margin: 0;
      font-family: var(--font-heading);
    }

    .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-disclaimer {
      background: rgba(59, 130, 246, 0.08);
      border: 2px solid var(--color-primary);
      border-radius: var(--radius-lg);
      padding: 2rem;
      margin: 3rem 0;
      position: relative;
      z-index: 2;
    }

    .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-disclaimer-title {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      color: var(--color-text-dark);
      font-weight: 700;
      font-size: 1.1rem;
      margin-bottom: 1rem;
    }

    .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-disclaimer-title .fas {
      color: var(--color-primary);
      font-size: 1.25rem;
    }

    .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-disclaimer p {
      color: var(--color-text-dark-secondary);
      font-size: 0.95rem;
      margin: 0;
      line-height: 1.7;
    }

    .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-related-section {
      background: var(--color-bg-light-secondary);
      padding: 6rem 0;
      overflow: hidden;
      position: relative;
    }

    .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-related-content {
      display: flex;
      flex-direction: column;
      gap: 3rem;
    }

    .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-related-header {
      text-align: center;
    }

    .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-related-header h2 {
      font-family: var(--font-heading);
      color: var(--color-text-dark);
      font-size: 2.5rem;
      font-weight: 700;
      margin-bottom: 1rem;
      letter-spacing: -0.5px;
    }

    .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-related-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
    }

    .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-related-card {
      background: var(--color-bg-light-primary);
      border-radius: var(--radius-lg);
      overflow: hidden;
      border: 1px solid #e2e8f0;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      padding: 2rem;
    }

    .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-related-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
      border-color: var(--color-primary);
    }

    .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-related-card h3 {
      font-family: var(--font-heading);
      color: var(--color-text-dark);
      font-size: 1.5rem;
      font-weight: 700;
      margin: 0;
      line-height: 1.3;
    }

    .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-related-card p {
      color: var(--color-text-dark-secondary);
      font-size: 0.95rem;
      margin: 0;
      line-height: 1.7;
      flex: 1;
    }

    .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-related-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--color-primary);
      font-weight: 600;
      font-size: 0.95rem;
      transition: all 0.3s ease;
      margin-top: auto;
    }

    .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-related-link:hover {
      color: var(--color-primary-hover);
      gap: 1rem;
    }

    @media (min-width: 768px) {
      .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-hero {
        padding: 8rem 0;
      }

      .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-hero h1 {
        font-size: 3.5rem;
      }

      .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-hero-content {
        grid-template-columns: 1fr 1fr;
      }

      .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-content-section {
        padding: 8rem 0;
      }

      .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-content-wrapper {
        grid-template-columns: 1fr 1fr;
      }

      .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-content-section h2 {
        font-size: 2.75rem;
      }

      .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-related-section {
        padding: 8rem 0;
      }

      .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
      }
    }

    @media (min-width: 1024px) {
      .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-hero {
        padding: 10rem 0;
      }

      .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-hero h1 {
        font-size: 3.75rem;
      }

      .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-content-section {
        padding: 10rem 0;
      }

      .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-content-section h2 {
        font-size: 3rem;
      }

      .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-related-section {
        padding: 10rem 0;
      }
    }

    @media (max-width: 767px) {
      .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-hero {
        padding: 4rem 0;
      }

      .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-hero h1 {
        font-size: 2.25rem;
      }

      .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-hero-lead {
        font-size: 1rem;
      }

      .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-hero-image {
        height: 300px;
      }

      .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-content-section {
        padding: 4rem 0;
      }

      .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-content-section h2 {
        font-size: 1.875rem;
      }

      .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-content-section p {
        font-size: 0.9rem;
      }

      .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-section-image {
        height: 250px;
      }

      .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-quote {
        padding: 2rem;
      }

      .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-quote p {
        font-size: 1.25rem;
      }

      .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-related-section {
        padding: 4rem 0;
      }

      .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-related-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }

      .post-rohstoffhandel-erklaert .rohstoffhandel-erklaert-related-card {
        padding: 1.5rem;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }

.post-automatisierter-handel {
  background: var(--color-bg-light-primary);
}

.automatisierter-handel-breadcrumbs-section {
  background: var(--color-bg-light-secondary);
  padding: 1rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.automatisierter-handel-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.automatisierter-handel-breadcrumbs a {
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.automatisierter-handel-breadcrumbs a:hover {
  color: var(--color-primary-hover);
}

.automatisierter-handel-breadcrumbs span {
  color: var(--color-text-dark-muted);
}

.automatisierter-handel-hero {
  padding: 5rem 0;
  background: var(--color-bg-light-primary);
}

.automatisierter-handel-hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.automatisierter-handel-hero h1 {
  color: var(--color-text-dark);
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.automatisierter-handel-lead {
  color: var(--color-text-dark-secondary);
  font-size: 1.25rem;
  line-height: 1.8;
  max-width: 700px;
  margin: 0 0 1.5rem 0;
}

.automatisierter-handel-hero-meta {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: 0.95rem;
  color: var(--color-text-dark-muted);
  margin-bottom: 2rem;
}

.automatisierter-handel-hero-meta i {
  margin-right: 0.5rem;
  color: var(--color-primary);
}

.automatisierter-handel-hero-image {
  width: 100%;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.automatisierter-handel-intro-section {
  padding: 4rem 0;
  background: var(--color-bg-light-primary);
}

.automatisierter-handel-intro-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.automatisierter-handel-intro-section h2 {
  color: var(--color-text-dark);
  font-size: 2.5rem;
}

.automatisierter-handel-intro-section p {
  color: var(--color-text-dark-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

.automatisierter-handel-key-benefits {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  padding: 2rem;
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-xl);
  border: 1px solid #e2e8f0;
}

.automatisierter-handel-benefit-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.automatisierter-handel-benefit-item i {
  font-size: 2rem;
  color: var(--color-primary);
}

.automatisierter-handel-benefit-item h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin: 0;
}

.automatisierter-handel-benefit-item p {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  margin: 0;
}

.automatisierter-handel-intro-image {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  margin-top: 1rem;
}

.automatisierter-handel-systems-section {
  padding: 4rem 0;
  background: var(--color-bg-light-secondary);
}

.automatisierter-handel-systems-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.automatisierter-handel-systems-section h2 {
  color: var(--color-text-dark);
  font-size: 2.5rem;
}

.automatisierter-handel-system-card {
  padding: 2rem;
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-xl);
  border-left: 4px solid var(--color-primary);
  transition: all 0.3s ease;
}

.automatisierter-handel-system-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.automatisierter-handel-system-card h3 {
  color: var(--color-text-dark);
  font-size: 1.375rem;
  margin-bottom: 1rem;
}

.automatisierter-handel-system-card p {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
  line-height: 1.7;
}

.automatisierter-handel-system-card p:last-child {
  margin-bottom: 0;
}

.automatisierter-handel-systems-image {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  margin-top: 2rem;
}

.automatisierter-handel-implementation-section {
  padding: 4rem 0;
  background: var(--color-bg-light-primary);
}

.automatisierter-handel-implementation-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.automatisierter-handel-implementation-section h2 {
  color: var(--color-text-dark);
  font-size: 2.5rem;
}

.automatisierter-handel-implementation-section > div > p {
  color: var(--color-text-dark-secondary);
  font-size: 1.05rem;
}

.automatisierter-handel-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.automatisierter-handel-step {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  position: relative;
}

.automatisierter-handel-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 700;
  flex-shrink: 0;
  font-family: var(--font-heading);
}

.automatisierter-handel-step h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin: 0 0 0.5rem 0;
}

.automatisierter-handel-step p {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.6;
}

.automatisierter-handel-implementation-image {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  margin-top: 1rem;
}

.automatisierter-handel-challenges-section {
  padding: 4rem 0;
  background: var(--color-bg-light-secondary);
}

.automatisierter-handel-challenges-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.automatisierter-handel-challenges-section h2 {
  color: var(--color-text-dark);
  font-size: 2.5rem;
}

.automatisierter-handel-challenges-section > div > p {
  color: var(--color-text-dark-secondary);
  font-size: 1.05rem;
}

.automatisierter-handel-challenge-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.automatisierter-handel-challenge-card {
  padding: 1.5rem;
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.automatisierter-handel-challenge-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.automatisierter-handel-challenge-card h3 {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.automatisierter-handel-challenge-card p {
  color: var(--color-text-dark-secondary);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

.automatisierter-handel-challenges-image {
  width: 100%;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  margin-top: 2rem;
}

.automatisierter-handel-best-practices-section {
  padding: 4rem 0;
  background: var(--color-bg-light-primary);
}

.automatisierter-handel-best-practices-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.automatisierter-handel-best-practices-section h2 {
  color: var(--color-text-dark);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.automatisierter-handel-practices-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.automatisierter-handel-practices-list li {
  padding: 1rem;
  padding-left: 1.5rem;
  background: var(--color-bg-light-secondary);
  border-left: 3px solid var(--color-secondary);
  border-radius: var(--radius-sm);
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  position: relative;
}

.automatisierter-handel-practices-list li strong {
  color: var(--color-text-dark);
}

.automatisierter-handel-disclaimer-section {
  padding: 3rem 0;
  background: var(--color-bg-light-secondary);
}

.automatisierter-handel-disclaimer {
  padding: 2rem;
  background: var(--color-bg-light-primary);
  border-left: 4px solid #ef4444;
  border-radius: var(--radius-lg);
}

.automatisierter-handel-disclaimer h3 {
  color: #ef4444;
  font-size: 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.automatisierter-handel-disclaimer h3 i {
  font-size: 1.5rem;
}

.automatisierter-handel-disclaimer p {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  margin: 0 0 1rem 0;
  line-height: 1.7;
}

.automatisierter-handel-disclaimer p:last-child {
  margin-bottom: 0;
}

.automatisierter-handel-related-section {
  padding: 4rem 0;
  background: var(--color-bg-light-primary);
}

.automatisierter-handel-related-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.automatisierter-handel-related-section h2 {
  color: var(--color-text-dark);
  font-size: 2.5rem;
}

.automatisierter-handel-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.automatisierter-handel-related-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  overflow: hidden;
  border-radius: var(--radius-xl);
  background: var(--color-bg-light-secondary);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.automatisierter-handel-related-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.automatisierter-handel-related-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.automatisierter-handel-related-card h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin: 0;
  padding: 0 1.5rem;
  padding-top: 1rem;
}

.automatisierter-handel-related-card p {
  color: var(--color-text-dark-secondary);
  font-size: 0.9rem;
  margin: 0;
  padding: 0 1.5rem;
  line-height: 1.6;
}

.automatisierter-handel-related-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0 1.5rem 1.5rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.automatisierter-handel-related-link:hover {
  color: var(--color-primary-hover);
  transform: translateX(4px);
}

@media (min-width: 768px) {
  .automatisierter-handel-hero {
    padding: 6rem 0;
  }

  .automatisierter-handel-hero h1 {
    font-size: 3.75rem;
  }

  .automatisierter-handel-hero-meta {
    gap: 3rem;
  }

  .automatisierter-handel-intro-section,
  .automatisierter-handel-systems-section,
  .automatisierter-handel-implementation-section,
  .automatisierter-handel-challenges-section,
  .automatisierter-handel-best-practices-section {
    padding: 5rem 0;
  }

  .automatisierter-handel-intro-section h2,
  .automatisierter-handel-systems-section h2,
  .automatisierter-handel-implementation-section h2,
  .automatisierter-handel-challenges-section h2,
  .automatisierter-handel-best-practices-section h2,
  .automatisierter-handel-related-section h2 {
    font-size: 3rem;
  }

  .automatisierter-handel-key-benefits {
    grid-template-columns: repeat(3, 1fr);
  }

  .automatisierter-handel-steps {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  }

  .automatisierter-handel-challenge-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .automatisierter-handel-related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 767px) {
  .automatisierter-handel-hero {
    padding: 3rem 0;
  }

  .automatisierter-handel-hero h1 {
    font-size: 2rem;
  }

  .automatisierter-handel-lead {
    font-size: 1rem;
  }

  .automatisierter-handel-hero-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  .automatisierter-handel-intro-section,
  .automatisierter-handel-systems-section,
  .automatisierter-handel-implementation-section,
  .automatisierter-handel-challenges-section,
  .automatisierter-handel-best-practices-section,
  .automatisierter-handel-related-section {
    padding: 2.5rem 0;
  }

  .automatisierter-handel-intro-section h2,
  .automatisierter-handel-systems-section h2,
  .automatisierter-handel-implementation-section h2,
  .automatisierter-handel-challenges-section h2,
  .automatisierter-handel-best-practices-section h2,
  .automatisierter-handel-related-section h2 {
    font-size: 1.875rem;
  }

  .automatisierter-handel-key-benefits {
    grid-template-columns: 1fr;
  }

  .automatisierter-handel-challenge-grid {
    grid-template-columns: 1fr;
  }

  .automatisierter-handel-step {
    flex-direction: column;
    gap: 1rem;
  }

  .automatisierter-handel-step-number {
    width: 40px;
    height: 40px;
    font-size: 1.25rem;
  }

  .automatisierter-handel-related-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.post-einfuehrung-kryptohandel {
  width: 100%;
}

.einfuehrung-kryptohandel-breadcrumbs {
  background: var(--color-bg-light-secondary);
  padding: 1.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.einfuehrung-kryptohandel-breadcrumbs a,
.einfuehrung-kryptohandel-breadcrumbs span {
  color: var(--color-text-dark-secondary);
  font-size: 0.9rem;
  display: inline;
  margin-right: 0.5rem;
}

.einfuehrung-kryptohandel-breadcrumbs a {
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.einfuehrung-kryptohandel-breadcrumbs a:hover {
  color: var(--color-primary-hover);
}

.einfuehrung-kryptohandel-hero {
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: 4rem 0;
  border-bottom: 2px solid #e2e8f0;
}

.einfuehrung-kryptohandel-hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.einfuehrung-kryptohandel-hero h1 {
  color: var(--color-text-dark);
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.einfuehrung-kryptohandel-lead {
  color: var(--color-text-dark-secondary);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.einfuehrung-kryptohandel-meta {
  display: flex;
  gap: 2rem;
  color: var(--color-text-dark-muted);
  font-size: 0.9rem;
}

.einfuehrung-kryptohandel-featured-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
}

.einfuehrung-kryptohandel-section {
  background: var(--color-bg-light-primary);
  padding: 4rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.einfuehrung-kryptohandel-section:nth-child(even) {
  background: var(--color-bg-light-secondary);
}

.einfuehrung-kryptohandel-section-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.einfuehrung-kryptohandel-text-block h2 {
  color: var(--color-text-dark);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.einfuehrung-kryptohandel-text-block p {
  color: var(--color-text-dark-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.einfuehrung-kryptohandel-section-image {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.einfuehrung-kryptohandel-highlight-box {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(59, 130, 246, 0.08);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  margin: 2rem 0;
}

.einfuehrung-kryptohandel-highlight-box i {
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.einfuehrung-kryptohandel-highlight-text h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin: 0 0 0.75rem 0;
}

.einfuehrung-kryptohandel-highlight-text p {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.7;
}

.einfuehrung-kryptohandel-highlight-secondary {
  background: rgba(245, 158, 11, 0.08);
  border-left-color: var(--color-accent-gold);
}

.einfuehrung-kryptohandel-highlight-secondary i {
  color: var(--color-accent-gold);
}

.einfuehrung-kryptohandel-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.einfuehrung-kryptohandel-list li {
  color: var(--color-text-dark-secondary);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  font-size: 0.95rem;
  line-height: 1.6;
}

.einfuehrung-kryptohandel-list li:last-child {
  border-bottom: none;
}

.einfuehrung-kryptohandel-disclaimer {
  background: var(--color-bg-dark-primary);
  padding: 4rem 0;
}

.einfuehrung-kryptohandel-disclaimer-box {
  display: flex;
  gap: 2rem;
  padding: 2.5rem;
  background: rgba(59, 130, 246, 0.1);
  border: 2px solid rgba(59, 130, 246, 0.3);
  border-radius: var(--radius-lg);
}

.einfuehrung-kryptohandel-disclaimer-box i {
  color: var(--color-primary-light);
  font-size: 1.75rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.einfuehrung-kryptohandel-disclaimer-content h3 {
  color: var(--color-text-light);
  font-size: 1.25rem;
  margin: 0 0 1rem 0;
}

.einfuehrung-kryptohandel-disclaimer-content p {
  color: var(--color-text-light-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0 0 1rem 0;
}

.einfuehrung-kryptohandel-disclaimer-content p:last-child {
  margin-bottom: 0;
}

.einfuehrung-kryptohandel-related {
  background: var(--color-bg-light-secondary);
  padding: 4rem 0;
}

.einfuehrung-kryptohandel-related h2 {
  color: var(--color-text-dark);
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2rem;
}

.einfuehrung-kryptohandel-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.einfuehrung-kryptohandel-related-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.einfuehrung-kryptohandel-related-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}

.einfuehrung-kryptohandel-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.einfuehrung-kryptohandel-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.einfuehrung-kryptohandel-card-content h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin: 0 0 0.75rem 0;
}

.einfuehrung-kryptohandel-card-content p {
  color: var(--color-text-dark-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0 0 1rem 0;
}

.einfuehrung-kryptohandel-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.einfuehrung-kryptohandel-card-link:hover {
  color: var(--color-primary-hover);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .einfuehrung-kryptohandel-hero {
    padding: 5rem 0;
  }

  .einfuehrung-kryptohandel-hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .einfuehrung-kryptohandel-hero h1 {
    font-size: 3rem;
  }

  .einfuehrung-kryptohandel-section {
    padding: 5rem 0;
  }

  .einfuehrung-kryptohandel-section-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .einfuehrung-kryptohandel-section:nth-child(odd) .einfuehrung-kryptohandel-image-block {
    order: 2;
  }

  .einfuehrung-kryptohandel-text-block h2 {
    font-size: 2.25rem;
  }

  .einfuehrung-kryptohandel-disclaimer {
    padding: 5rem 0;
  }

  .einfuehrung-kryptohandel-related {
    padding: 5rem 0;
  }

  .einfuehrung-kryptohandel-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

  .einfuehrung-kryptohandel-related-card {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .einfuehrung-kryptohandel-hero {
    padding: 6rem 0;
  }

  .einfuehrung-kryptohandel-hero h1 {
    font-size: 3.25rem;
  }

  .einfuehrung-kryptohandel-section {
    padding: 6rem 0;
  }

  .einfuehrung-kryptohandel-text-block h2 {
    font-size: 2.5rem;
  }

  .einfuehrung-kryptohandel-disclaimer {
    padding: 6rem 0;
  }

  .einfuehrung-kryptohandel-related {
    padding: 6rem 0;
  }
}

@media (max-width: 767px) {
  .einfuehrung-kryptohandel-hero {
    padding: 2.5rem 0;
  }

  .einfuehrung-kryptohandel-hero h1 {
    font-size: 1.75rem;
  }

  .einfuehrung-kryptohandel-lead {
    font-size: 1rem;
  }

  .einfuehrung-kryptohandel-meta {
    flex-direction: column;
    gap: 0.5rem;
  }

  .einfuehrung-kryptohandel-section {
    padding: 2.5rem 0;
  }

  .einfuehrung-kryptohandel-text-block h2 {
    font-size: 1.5rem;
  }

  .einfuehrung-kryptohandel-text-block p {
    font-size: 0.9rem;
  }

  .einfuehrung-kryptohandel-highlight-box {
    padding: 1.5rem;
    gap: 1rem;
    flex-direction: column;
  }

  .einfuehrung-kryptohandel-highlight-box i {
    font-size: 1.25rem;
  }

  .einfuehrung-kryptohandel-disclaimer {
    padding: 2.5rem 0;
  }

  .einfuehrung-kryptohandel-disclaimer-box {
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
  }

  .einfuehrung-kryptohandel-disclaimer-content h3 {
    font-size: 1.1rem;
  }

  .einfuehrung-kryptohandel-disclaimer-content p {
    font-size: 0.85rem;
  }

  .einfuehrung-kryptohandel-related {
    padding: 2.5rem 0;
  }

  .einfuehrung-kryptohandel-related h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .einfuehrung-kryptohandel-related-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .einfuehrung-kryptohandel-related-card {
    padding: 1rem;
  }

  .einfuehrung-kryptohandel-card-content h3 {
    font-size: 1.1rem;
  }

  .einfuehrung-kryptohandel-card-content p {
    font-size: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.post-steuern-handelsgebuehren {
  background: var(--color-bg-light-primary);
  overflow: hidden;
}

.post-steuern-handelsgebuehren h1,
.post-steuern-handelsgebuehren h2,
.post-steuern-handelsgebuehren h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
}

.post-steuern-handelsgebuehren a {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.steuern-handelsgebuehren-breadcrumb {
  background: var(--color-bg-light-secondary);
  padding: 1rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.steuern-handelsgebuehren-breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.steuern-handelsgebuehren-breadcrumb-nav a {
  color: var(--color-primary);
}

.steuern-handelsgebuehren-breadcrumb-nav a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.steuern-handelsgebuehren-separator {
  color: #cbd5e1;
}

.steuern-handelsgebuehren-current {
  color: var(--color-text-dark-secondary);
}

@media (max-width: 767px) {
  .steuern-handelsgebuehren-breadcrumb {
    padding: 0.75rem 0;
  }

  .steuern-handelsgebuehren-breadcrumb-nav {
    font-size: 0.75rem;
    gap: 0.5rem;
  }
}

.steuern-handelsgebuehren-hero {
  background: var(--color-bg-light-primary);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.steuern-handelsgebuehren-hero-glow-1 {
  position: absolute;
  top: -300px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.steuern-handelsgebuehren-hero-glow-2 {
  position: absolute;
  bottom: -250px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.steuern-handelsgebuehren-hero-accent {
  position: absolute;
  top: 50%;
  right: 5%;
  width: 3px;
  height: 200px;
  background: linear-gradient(180deg, var(--color-primary) 0%, transparent 100%);
  z-index: 1;
  pointer-events: none;
}

.steuern-handelsgebuehren-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.steuern-handelsgebuehren-hero-text h1 {
  color: var(--color-text-dark);
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.steuern-handelsgebuehren-lead {
  color: var(--color-text-dark-secondary);
  font-size: 1.1875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.steuern-handelsgebuehren-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--color-text-dark-muted);
}

.steuern-handelsgebuehren-meta-sep {
  color: #cbd5e1;
}

.steuern-handelsgebuehren-featured-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 2px solid #e2e8f0;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .steuern-handelsgebuehren-hero {
    padding: 8rem 0;
  }

  .steuern-handelsgebuehren-hero-text h1 {
    font-size: 3.5rem;
  }

  .steuern-handelsgebuehren-featured-image {
    height: 450px;
  }
}

@media (min-width: 1024px) {
  .steuern-handelsgebuehren-hero {
    padding: 10rem 0;
  }

  .steuern-handelsgebuehren-hero-text h1 {
    font-size: 3.75rem;
  }

  .steuern-handelsgebuehren-featured-image {
    height: 500px;
  }
}

@media (max-width: 767px) {
  .steuern-handelsgebuehren-hero {
    padding: 4rem 0;
  }

  .steuern-handelsgebuehren-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .steuern-handelsgebuehren-hero-text h1 {
    font-size: 2rem;
  }

  .steuern-handelsgebuehren-lead {
    font-size: 1rem;
  }

  .steuern-handelsgebuehren-featured-image {
    height: 280px;
  }

  .steuern-handelsgebuehren-hero-accent {
    display: none;
  }
}

.steuern-handelsgebuehren-content-intro {
  padding: 4rem 0;
}

.steuern-handelsgebuehren-intro-content p {
  color: var(--color-text-dark-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 850px;
}

@media (min-width: 768px) {
  .steuern-handelsgebuehren-content-intro {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .steuern-handelsgebuehren-content-intro {
    padding: 6rem 0;
  }
}

@media (max-width: 767px) {
  .steuern-handelsgebuehren-content-intro {
    padding: 2.5rem 0;
  }

  .steuern-handelsgebuehren-intro-content p {
    font-size: 0.9375rem;
  }
}

.steuern-handelsgebuehren-section-1 {
  background: var(--color-bg-light-secondary);
  padding: 4rem 0;
  overflow: hidden;
}

.steuern-handelsgebuehren-section-1-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.steuern-handelsgebuehren-section-1 h2 {
  color: var(--color-text-dark);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.steuern-handelsgebuehren-section-text p {
  color: var(--color-text-dark-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.steuern-handelsgebuehren-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}

.steuern-handelsgebuehren-list li {
  color: var(--color-text-dark-secondary);
  font-size: 1rem;
  line-height: 1.8;
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.steuern-handelsgebuehren-list li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: 700;
}

.steuern-handelsgebuehren-section-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.steuern-handelsgebuehren-content-img {
  width: 100%;
  height: 350px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .steuern-handelsgebuehren-section-1 {
    padding: 5rem 0;
  }

  .steuern-handelsgebuehren-content-img {
    height: 400px;
  }

  .steuern-handelsgebuehren-section-1 h2 {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .steuern-handelsgebuehren-section-1 {
    padding: 6rem 0;
  }

  .steuern-handelsgebuehren-content-img {
    height: 450px;
  }

  .steuern-handelsgebuehren-section-1 h2 {
    font-size: 3rem;
  }
}

@media (max-width: 767px) {
  .steuern-handelsgebuehren-section-1 {
    padding: 2.5rem 0;
  }

  .steuern-handelsgebuehren-section-1-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .steuern-handelsgebuehren-section-1 h2 {
    font-size: 1.75rem;
  }

  .steuern-handelsgebuehren-section-text p,
  .steuern-handelsgebuehren-list li {
    font-size: 0.9375rem;
  }

  .steuern-handelsgebuehren-content-img {
    height: 280px;
  }
}

.steuern-handelsgebuehren-section-2 {
  background: var(--color-bg-light-primary);
  padding: 4rem 0;
}

.steuern-handelsgebuehren-section-2-content {
  max-width: 850px;
}

.steuern-handelsgebuehren-quote-box {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
  border-left: 4px solid var(--color-primary);
  padding: 2rem;
  margin-bottom: 2.5rem;
  border-radius: 0 var(--radius-lg) var(--radius-lg) 0;
}

.steuern-handelsgebuehren-quote {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.8;
  margin: 0;
}

.steuern-handelsgebuehren-section-2 h2 {
  color: var(--color-text-dark);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

.steuern-handelsgebuehren-section-2 h2:first-child {
  margin-top: 0;
}

.steuern-handelsgebuehren-section-2 p {
  color: var(--color-text-dark-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .steuern-handelsgebuehren-section-2 {
    padding: 5rem 0;
  }

  .steuern-handelsgebuehren-section-2 h2 {
    font-size: 2.75rem;
  }

  .steuern-handelsgebuehren-quote {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .steuern-handelsgebuehren-section-2 {
    padding: 6rem 0;
  }

  .steuern-handelsgebuehren-section-2 h2 {
    font-size: 3rem;
  }
}

@media (max-width: 767px) {
  .steuern-handelsgebuehren-section-2 {
    padding: 2.5rem 0;
  }

  .steuern-handelsgebuehren-quote-box {
    padding: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .steuern-handelsgebuehren-quote {
    font-size: 1rem;
  }

  .steuern-handelsgebuehren-section-2 h2 {
    font-size: 1.75rem;
  }

  .steuern-handelsgebuehren-section-2 p {
    font-size: 0.9375rem;
  }
}

.steuern-handelsgebuehren-section-3 {
  background: var(--color-bg-light-secondary);
  padding: 4rem 0;
  overflow: hidden;
  position: relative;
}

.steuern-handelsgebuehren-section-3::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.steuern-handelsgebuehren-section-3-header {
  position: relative;
  z-index: 2;
  margin-bottom: 3rem;
}

.steuern-handelsgebuehren-section-3-header h2 {
  color: var(--color-text-dark);
  font-size: 2.5rem;
}

.steuern-handelsgebuehren-section-3-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.steuern-handelsgebuehren-section-3 h3 {
  color: var(--color-text-dark);
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.steuern-handelsgebuehren-section-3 h3:first-child {
  margin-top: 0;
}

.steuern-handelsgebuehren-section-3 p {
  color: var(--color-text-dark-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .steuern-handelsgebuehren-section-3 {
    padding: 5rem 0;
  }

  .steuern-handelsgebuehren-section-3-header h2 {
    font-size: 2.75rem;
  }

  .steuern-handelsgebuehren-content-img {
    height: 400px;
  }
}

@media (min-width: 1024px) {
  .steuern-handelsgebuehren-section-3 {
    padding: 6rem 0;
  }

  .steuern-handelsgebuehren-section-3-header h2 {
    font-size: 3rem;
  }

  .steuern-handelsgebuehren-content-img {
    height: 450px;
  }
}

@media (max-width: 767px) {
  .steuern-handelsgebuehren-section-3 {
    padding: 2.5rem 0;
  }

  .steuern-handelsgebuehren-section-3-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .steuern-handelsgebuehren-section-3-header h2 {
    font-size: 1.75rem;
  }

  .steuern-handelsgebuehren-section-3 h3 {
    font-size: 1.25rem;
  }

  .steuern-handelsgebuehren-section-3 p {
    font-size: 0.9375rem;
  }

  .steuern-handelsgebuehren-content-img {
    height: 280px;
  }
}

.steuern-handelsgebuehren-section-4 {
  background: var(--color-bg-light-primary);
  padding: 4rem 0;
}

.steuern-handelsgebuehren-section-4 h2 {
  color: var(--color-text-dark);
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.steuern-handelsgebuehren-strategy-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.steuern-handelsgebuehren-strategy-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem;
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-xl);
  border: 2px solid #e2e8f0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.steuern-handelsgebuehren-strategy-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}

.steuern-handelsgebuehren-strategy-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  color: var(--color-primary);
}

.steuern-handelsgebuehren-strategy-card h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin: 0;
}

.steuern-handelsgebuehren-strategy-card p {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .steuern-handelsgebuehren-section-4 {
    padding: 5rem 0;
  }

  .steuern-handelsgebuehren-section-4 h2 {
    font-size: 2.75rem;
  }

  .steuern-handelsgebuehren-strategy-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .steuern-handelsgebuehren-strategy-card {
    padding: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .steuern-handelsgebuehren-section-4 {
    padding: 6rem 0;
  }

  .steuern-handelsgebuehren-section-4 h2 {
    font-size: 3rem;
  }

  .steuern-handelsgebuehren-strategy-cards {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }

  .steuern-handelsgebuehren-strategy-card {
    padding: 2.5rem;
  }
}

@media (max-width: 767px) {
  .steuern-handelsgebuehren-section-4 {
    padding: 2.5rem 0;
  }

  .steuern-handelsgebuehren-section-4 h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .steuern-handelsgebuehren-strategy-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .steuern-handelsgebuehren-strategy-card {
    padding: 1.5rem;
  }

  .steuern-handelsgebuehren-strategy-card h3 {
    font-size: 1.1rem;
  }

  .steuern-handelsgebuehren-strategy-card p {
    font-size: 0.875rem;
  }
}

.steuern-handelsgebuehren-section-5 {
  background: var(--color-bg-light-secondary);
  padding: 4rem 0;
}

.steuern-handelsgebuehren-section-5-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.steuern-handelsgebuehren-section-5 h2 {
  color: var(--color-text-dark);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.steuern-handelsgebuehren-section-5 p {
  color: var(--color-text-dark-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.steuern-handelsgebuehren-section-5 strong {
  color: var(--color-text-dark);
  font-weight: 600;
}

@media (min-width: 768px) {
  .steuern-handelsgebuehren-section-5 {
    padding: 5rem 0;
  }

  .steuern-handelsgebuehren-section-5 h2 {
    font-size: 2.75rem;
  }

  .steuern-handelsgebuehren-content-img {
    height: 400px;
  }
}

@media (min-width: 1024px) {
  .steuern-handelsgebuehren-section-5 {
    padding: 6rem 0;
  }

  .steuern-handelsgebuehren-section-5 h2 {
    font-size: 3rem;
  }

  .steuern-handelsgebuehren-content-img {
    height: 450px;
  }
}

@media (max-width: 767px) {
  .steuern-handelsgebuehren-section-5 {
    padding: 2.5rem 0;
  }

  .steuern-handelsgebuehren-section-5-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .steuern-handelsgebuehren-section-5 h2 {
    font-size: 1.75rem;
  }

  .steuern-handelsgebuehren-section-5 p {
    font-size: 0.9375rem;
  }

  .steuern-handelsgebuehren-content-img {
    height: 280px;
  }
}

.steuern-handelsgebuehren-disclaimer {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
  padding: 4rem 0;
  border-top: 2px solid #e2e8f0;
  border-bottom: 2px solid #e2e8f0;
}

.steuern-handelsgebuehren-disclaimer-content {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.steuern-handelsgebuehren-disclaimer-icon {
  width: 60px;
  height: 60px;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  flex-shrink: 0;
}

.steuern-handelsgebuehren-disclaimer-text h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.steuern-handelsgebuehren-disclaimer-text p {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .steuern-handelsgebuehren-disclaimer {
    padding: 5rem 0;
  }

  .steuern-handelsgebuehren-disclaimer-text p {
    font-size: 1rem;
  }
}

@media (min-width: 1024px) {
  .steuern-handelsgebuehren-disclaimer {
    padding: 6rem 0;
  }
}

@media (max-width: 767px) {
  .steuern-handelsgebuehren-disclaimer {
    padding: 2.5rem 0;
  }

  .steuern-handelsgebuehren-disclaimer-content {
    flex-direction: column;
    gap: 1.5rem;
  }

  .steuern-handelsgebuehren-disclaimer-icon {
    width: 50px;
    height: 50px;
    font-size: 1.5rem;
  }

  .steuern-handelsgebuehren-disclaimer-text h3 {
    font-size: 1.1rem;
  }

  .steuern-handelsgebuehren-disclaimer-text p {
    font-size: 0.875rem;
  }
}

.steuern-handelsgebuehren-related {
  background: var(--color-bg-light-primary);
  padding: 4rem 0;
}

.steuern-handelsgebuehren-related-content {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.steuern-handelsgebuehren-related h2 {
  color: var(--color-text-dark);
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.steuern-handelsgebuehren-related-intro {
  color: var(--color-text-dark-secondary);
  font-size: 1rem;
}

.steuern-handelsgebuehren-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.steuern-handelsgebuehren-related-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid #e2e8f0;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.steuern-handelsgebuehren-related-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
}

.steuern-handelsgebuehren-related-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.steuern-handelsgebuehren-related-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.steuern-handelsgebuehren-related-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0 1.5rem 1.5rem;
}

.steuern-handelsgebuehren-related-card h3 {
  color: var(--color-text-dark);
  font-size: 1.1875rem;
  margin: 0;
}

.steuern-handelsgebuehren-related-card p {
  color: var(--color-text-dark-secondary);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.steuern-handelsgebuehren-related-link {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.875rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 0.5rem;
}

.steuern-handelsgebuehren-related-link:hover {
  color: var(--color-primary-hover);
  transform: translateX(4px);
}

.steuern-handelsgebuehren-related-link .fas {
  font-size: 0.75rem;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .steuern-handelsgebuehren-related {
    padding: 5rem 0;
  }

  .steuern-handelsgebuehren-related h2 {
    font-size: 2.75rem;
  }

  .steuern-handelsgebuehren-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .steuern-handelsgebuehren-related {
    padding: 6rem 0;
  }

  .steuern-handelsgebuehren-related h2 {
    font-size: 3rem;
  }

  .steuern-handelsgebuehren-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

@media (max-width: 767px) {
  .steuern-handelsgebuehren-related {
    padding: 2.5rem 0;
  }

  .steuern-handelsgebuehren-related h2 {
    font-size: 1.75rem;
  }

  .steuern-handelsgebuehren-related-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .steuern-handelsgebuehren-related-info {
    padding: 0 1rem 1rem;
  }

  .steuern-handelsgebuehren-related-card h3 {
    font-size: 1.05rem;
  }

  .steuern-handelsgebuehren-related-card p {
    font-size: 0.8125rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .post-steuern-handelsgebuehren *,
  .post-steuern-handelsgebuehren *::before,
  .post-steuern-handelsgebuehren *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.post-kontinuierliches-lernen {
  background: var(--color-bg-light-primary);
  color: var(--color-text-dark);
}

.kontinuierliches-lernen-breadcrumbs-section {
  background: var(--color-bg-light-secondary);
  padding: 1rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.kontinuierliches-lernen-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.kontinuierliches-lernen-breadcrumbs a {
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.kontinuierliches-lernen-breadcrumbs a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.kontinuierliches-lernen-breadcrumbs span {
  color: var(--color-text-dark-muted);
}

.kontinuierliches-lernen-hero {
  background: var(--color-bg-dark-primary);
  color: var(--color-text-light);
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

.kontinuierliches-lernen-hero-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(6, 182, 212, 0.03) 100%);
  pointer-events: none;
  z-index: 1;
}

.kontinuierliches-lernen-hero-glow-1 {
  position: absolute;
  top: -200px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.kontinuierliches-lernen-hero-glow-2 {
  position: absolute;
  bottom: -250px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 1;
}

.kontinuierliches-lernen-hero-accent-shape {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: rgba(245, 158, 11, 0.04);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  pointer-events: none;
  z-index: 1;
}

.kontinuierliches-lernen-hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.kontinuierliches-lernen-hero h1 {
  color: var(--color-text-light);
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.kontinuierliches-lernen-hero-subtitle {
  color: var(--color-text-light-secondary);
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  max-width: 550px;
}

.kontinuierliches-lernen-hero-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.kontinuierliches-lernen-read-time,
.kontinuierliches-lernen-category {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--color-text-light-muted);
  font-size: 0.95rem;
}

.kontinuierliches-lernen-read-time .fas,
.kontinuierliches-lernen-category .fas {
  color: var(--color-primary-light);
}

.kontinuierliches-lernen-hero-image {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.kontinuierliches-lernen-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kontinuierliches-lernen-lead {
  background: var(--color-bg-light-primary);
  padding: 4rem 0;
}

.kontinuierliches-lernen-lead-content {
  max-width: 800px;
  margin: 0 auto;
}

.kontinuierliches-lernen-lead-paragraph {
  color: var(--color-text-dark-secondary);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: justify;
}

.kontinuierliches-lernen-highlight-box {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(6, 182, 212, 0.06) 100%);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  margin-top: 2rem;
}

.kontinuierliches-lernen-highlight-box .fas {
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.kontinuierliches-lernen-highlight-box p {
  color: var(--color-text-dark);
  margin: 0;
  line-height: 1.7;
}

.kontinuierliches-lernen-content-1 {
  background: var(--color-bg-light-primary);
  padding: 5rem 0;
}

.kontinuierliches-lernen-content-1-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.kontinuierliches-lernen-content-1 h2 {
  color: var(--color-text-dark);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.kontinuierliches-lernen-content-1 p {
  color: var(--color-text-dark-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.kontinuierliches-lernen-pullquote {
  margin: 3rem 0;
  padding: 2rem;
  border-left: 4px solid var(--color-secondary);
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
}

.kontinuierliches-lernen-pullquote p {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  font-style: italic;
  line-height: 1.7;
  margin: 0;
  text-align: center;
}

.kontinuierliches-lernen-content-1-image {
  width: 100%;
  height: 350px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.kontinuierliches-lernen-content-1-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kontinuierliches-lernen-content-2 {
  background: var(--color-bg-dark-secondary);
  color: var(--color-text-light);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.kontinuierliches-lernen-content-2-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(59, 130, 246, 0.04) 0%, rgba(6, 182, 212, 0.03) 100%);
  pointer-events: none;
  z-index: 1;
}

.kontinuierliches-lernen-content-2-glow {
  position: absolute;
  bottom: -300px;
  right: -300px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 1;
}

.kontinuierliches-lernen-content-2-wrapper {
  position: relative;
  z-index: 10;
}

.kontinuierliches-lernen-content-2 h2 {
  color: var(--color-text-light);
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.kontinuierliches-lernen-methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.kontinuierliches-lernen-method-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: rgba(59, 130, 246, 0.08);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.kontinuierliches-lernen-method-card:hover {
  transform: translateY(-8px);
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
}

.kontinuierliches-lernen-method-icon {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-lg);
  color: var(--color-primary-light);
  font-size: 1.5rem;
}

.kontinuierliches-lernen-method-card h3 {
  color: var(--color-text-light);
  font-size: 1.25rem;
  margin: 0;
}

.kontinuierliches-lernen-method-card p {
  color: var(--color-text-light-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.kontinuierliches-lernen-content-3 {
  background: var(--color-bg-light-primary);
  padding: 5rem 0;
}

.kontinuierliches-lernen-content-3-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.kontinuierliches-lernen-content-3 h2 {
  color: var(--color-text-dark);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.kontinuierliches-lernen-content-3 p {
  color: var(--color-text-dark-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  text-align: justify;
}

.kontinuierliches-lernen-content-3-image {
  width: 100%;
  height: 350px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.kontinuierliches-lernen-content-3-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kontinuierliches-lernen-content-4 {
  background: var(--color-bg-dark-primary);
  color: var(--color-text-light);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.kontinuierliches-lernen-content-4-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(-45deg, rgba(6, 182, 212, 0.05) 0%, rgba(59, 130, 246, 0.03) 100%);
  pointer-events: none;
  z-index: 1;
}

.kontinuierliches-lernen-content-4-glow-left {
  position: absolute;
  top: -250px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  z-index: 1;
}

.kontinuierliches-lernen-content-4-glow-right {
  position: absolute;
  bottom: -300px;
  right: -300px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(100px);
  pointer-events: none;
  z-index: 1;
}

.kontinuierliches-lernen-content-4-inner {
  position: relative;
  z-index: 10;
}

.kontinuierliches-lernen-content-4 h2 {
  color: var(--color-text-light);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.kontinuierliches-lernen-content-4 p {
  color: var(--color-text-light-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  text-align: justify;
}

.kontinuierliches-lernen-content-4-image {
  margin: 2rem 0;
  width: 100%;
  height: 350px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.kontinuierliches-lernen-content-4-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kontinuierliches-lernen-disclaimer {
  background: var(--color-bg-light-secondary);
  padding: 4rem 0;
  border-top: 2px solid #e2e8f0;
  border-bottom: 2px solid #e2e8f0;
}

.kontinuierliches-lernen-disclaimer-content {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--color-bg-light-primary);
  border-left: 4px solid var(--color-secondary);
  border-radius: var(--radius-lg);
  max-width: 800px;
  margin: 0 auto;
}

.kontinuierliches-lernen-disclaimer-icon {
  color: var(--color-secondary);
  font-size: 1.75rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.kontinuierliches-lernen-disclaimer-text h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.kontinuierliches-lernen-disclaimer-text p {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.kontinuierliches-lernen-related {
  background: var(--color-bg-light-primary);
  padding: 5rem 0;
}

.kontinuierliches-lernen-related h2 {
  color: var(--color-text-dark);
  font-size: 2.5rem;
  margin-bottom: 3rem;
  text-align: center;
}

.kontinuierliches-lernen-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2.5rem;
}

.kontinuierliches-lernen-related-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

.kontinuierliches-lernen-related-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-color: var(--color-primary);
}

.kontinuierliches-lernen-related-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.kontinuierliches-lernen-related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.kontinuierliches-lernen-related-card:hover .kontinuierliches-lernen-related-image img {
  transform: scale(1.05);
}

.kontinuierliches-lernen-related-card h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin: 0 1.5rem;
  padding-top: 0;
}

.kontinuierliches-lernen-related-card p {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 1.5rem;
}

.kontinuierliches-lernen-related-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 1.5rem 1.5rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.kontinuierliches-lernen-related-link:hover {
  color: var(--color-primary-hover);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .kontinuierliches-lernen-hero {
    padding: 8rem 0;
  }

  .kontinuierliches-lernen-hero-content {
    grid-template-columns: 1fr 1fr;
  }

  .kontinuierliches-lernen-hero h1 {
    font-size: 3.5rem;
  }

  .kontinuierliches-lernen-hero-image {
    height: 400px;
  }

  .kontinuierliches-lernen-lead {
    padding: 5rem 0;
  }

  .kontinuierliches-lernen-content-1 {
    padding: 6rem 0;
  }

  .kontinuierliches-lernen-content-1-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .kontinuierliches-lernen-content-1-image {
    height: 400px;
  }

  .kontinuierliches-lernen-content-2 {
    padding: 6rem 0;
  }

  .kontinuierliches-lernen-methods-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .kontinuierliches-lernen-content-3 {
    padding: 6rem 0;
  }

  .kontinuierliches-lernen-content-3-wrapper {
    grid-template-columns: 1fr 1fr;
  }

  .kontinuierliches-lernen-content-3-image {
    height: 400px;
    order: 2;
  }

  .kontinuierliches-lernen-content-3-text {
    order: 1;
  }

  .kontinuierliches-lernen-content-4 {
    padding: 6rem 0;
  }

  .kontinuierliches-lernen-content-4-image {
    height: 400px;
  }

  .kontinuierliches-lernen-disclaimer {
    padding: 5rem 0;
  }

  .kontinuierliches-lernen-disclaimer-content {
    padding: 3rem;
  }

  .kontinuierliches-lernen-related {
    padding: 6rem 0;
  }

  .kontinuierliches-lernen-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .kontinuierliches-lernen-hero {
    padding: 10rem 0;
  }

  .kontinuierliches-lernen-hero h1 {
    font-size: 3.75rem;
  }

  .kontinuierliches-lernen-content-1 {
    padding: 8rem 0;
  }

  .kontinuierliches-lernen-content-1 h2 {
    font-size: 3rem;
  }

  .kontinuierliches-lernen-content-2 {
    padding: 8rem 0;
  }

  .kontinuierliches-lernen-content-2 h2 {
    font-size: 3rem;
  }

  .kontinuierliches-lernen-methods-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .kontinuierliches-lernen-content-3 {
    padding: 8rem 0;
  }

  .kontinuierliches-lernen-content-3 h2 {
    font-size: 3rem;
  }

  .kontinuierliches-lernen-content-4 {
    padding: 8rem 0;
  }

  .kontinuierliches-lernen-content-4 h2 {
    font-size: 3rem;
  }

  .kontinuierliches-lernen-related {
    padding: 8rem 0;
  }

  .kontinuierliches-lernen-related h2 {
    font-size: 3rem;
  }
}

@media (max-width: 767px) {
  .kontinuierliches-lernen-hero {
    padding: 4rem 0;
  }

  .kontinuierliches-lernen-hero h1 {
    font-size: 2rem;
  }

  .kontinuierliches-lernen-hero-subtitle {
    font-size: 1rem;
  }

  .kontinuierliches-lernen-hero-image {
    height: 280px;
  }

  .kontinuierliches-lernen-hero-meta {
    gap: 1.5rem;
    font-size: 0.85rem;
  }

  .kontinuierliches-lernen-lead {
    padding: 2.5rem 0;
  }

  .kontinuierliches-lernen-lead-paragraph {
    font-size: 1rem;
  }

  .kontinuierliches-lernen-content-1 {
    padding: 3rem 0;
  }

  .kontinuierliches-lernen-content-1 h2 {
    font-size: 1.75rem;
  }

  .kontinuierliches-lernen-content-1 p {
    font-size: 0.9rem;
  }

  .kontinuierliches-lernen-content-1-image {
    height: 250px;
  }

  .kontinuierliches-lernen-pullquote {
    padding: 1.5rem;
    margin: 2rem 0;
  }

  .kontinuierliches-lernen-pullquote p {
    font-size: 1rem;
  }

  .kontinuierliches-lernen-content-2 {
    padding: 3rem 0;
  }

  .kontinuierliches-lernen-content-2 h2 {
    font-size: 1.75rem;
  }

  .kontinuierliches-lernen-methods-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .kontinuierliches-lernen-method-card {
    padding: 1.5rem;
  }

  .kontinuierliches-lernen-method-card h3 {
    font-size: 1.125rem;
  }

  .kontinuierliches-lernen-method-card p {
    font-size: 0.9rem;
  }

  .kontinuierliches-lernen-content-3 {
    padding: 3rem 0;
  }

  .kontinuierliches-lernen-content-3 h2 {
    font-size: 1.75rem;
  }

  .kontinuierliches-lernen-content-3 p {
    font-size: 0.9rem;
  }

  .kontinuierliches-lernen-content-3-image {
    height: 250px;
  }

  .kontinuierliches-lernen-content-4 {
    padding: 3rem 0;
  }

  .kontinuierliches-lernen-content-4 h2 {
    font-size: 1.75rem;
  }

  .kontinuierliches-lernen-content-4 p {
    font-size: 0.9rem;
  }

  .kontinuierliches-lernen-content-4-image {
    height: 250px;
    margin: 1.5rem 0;
  }

  .kontinuierliches-lernen-disclaimer {
    padding: 2rem 0;
  }

  .kontinuierliches-lernen-disclaimer-content {
    flex-direction: column;
    padding: 1.5rem;
    gap: 1rem;
  }

  .kontinuierliches-lernen-disclaimer-text h3 {
    font-size: 1.125rem;
  }

  .kontinuierliches-lernen-disclaimer-text p {
    font-size: 0.9rem;
  }

  .kontinuierliches-lernen-related {
    padding: 3rem 0;
  }

  .kontinuierliches-lernen-related h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .kontinuierliches-lernen-related-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .kontinuierliches-lernen-related-card h3 {
    font-size: 1.125rem;
  }

  .kontinuierliches-lernen-related-card p {
    font-size: 0.9rem;
  }

  .kontinuierliches-lernen-breadcrumbs {
    font-size: 0.75rem;
    gap: 0.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.post-vermögensaufbau-strategien {
  background: var(--color-bg-light-primary);
  font-family: var(--font-primary);
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-breadcrumbs-section {
  background: var(--color-bg-light-secondary);
  padding: 1.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-breadcrumbs a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-breadcrumbs a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-breadcrumbs span {
  color: #cbd5e1;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-hero {
  background: var(--color-bg-light-primary);
  padding: 4rem 0;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-hero h1 {
  color: var(--color-text-dark);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-lead {
  color: var(--color-text-dark-secondary);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-read-time {
  color: var(--color-text-dark-muted);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-read-time .fas {
  color: var(--color-primary);
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-hero-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-content-intro {
  background: var(--color-bg-light-primary);
  padding: 4rem 0;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-intro-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-intro-content h2 {
  color: var(--color-text-dark);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-intro-text p {
  color: var(--color-text-dark-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-intro-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-foundations {
  background: var(--color-bg-light-secondary);
  padding: 4rem 0;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-foundations h2 {
  color: var(--color-text-dark);
  font-size: 2rem;
  margin-bottom: 3rem;
  text-align: center;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-pillars {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-pillar-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-pillar-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
  transform: translateY(-4px);
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-pillar-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-lg);
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-pillar-item h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin: 0;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-pillar-item p {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-pillars-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-timeline {
  background: var(--color-bg-light-primary);
  padding: 4rem 0;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-timeline h2 {
  color: var(--color-text-dark);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-timeline > .container > p {
  color: var(--color-text-dark-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-phases {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-phase {
  padding: 2rem;
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-phase h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-phase p {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-timeline-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-diversification {
  background: var(--color-bg-light-secondary);
  padding: 4rem 0;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-diversification h2 {
  color: var(--color-text-dark);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-diversification > .container > p {
  color: var(--color-text-dark-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 3rem;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-diversification-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-asset-class {
  padding: 1.75rem;
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-asset-class:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-asset-class h3 {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-asset-class p {
  color: var(--color-text-dark-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-diversification-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-discipline {
  background: var(--color-bg-light-primary);
  padding: 4rem 0;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-discipline h2 {
  color: var(--color-text-dark);
  font-size: 2rem;
  margin-bottom: 1rem;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-discipline > .container > p {
  color: var(--color-text-dark-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-discipline-text p {
  color: var(--color-text-dark-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-highlight-quote {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--color-primary);
  padding: 1.5rem;
  border-left: 4px solid var(--color-primary);
  background: rgba(59, 130, 246, 0.05);
  border-radius: var(--radius-lg);
  margin: 2rem 0;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-discipline-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
  margin-top: 2rem;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-disclaimer {
  background: var(--color-bg-light-secondary);
  padding: 3rem 0;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-disclaimer-box {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  border-left: 4px solid var(--color-accent-gold);
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-disclaimer-icon {
  font-size: 1.75rem;
  color: var(--color-accent-gold);
  flex-shrink: 0;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-disclaimer-text h3 {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-disclaimer-text p {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0 0 1rem 0;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-disclaimer-text p:last-child {
  margin-bottom: 0;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-related {
  background: var(--color-bg-light-primary);
  padding: 4rem 0;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-related h2 {
  color: var(--color-text-dark);
  font-size: 2rem;
  margin-bottom: 3rem;
  text-align: center;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-related-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-related-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
  transform: translateY(-8px);
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-card-image {
  overflow: hidden;
  border-radius: var(--radius-md);
  height: 200px;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-related-card:hover .vermögensaufbau-strategien-card-image img {
  transform: scale(1.05);
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-card-content h3 {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-card-content p {
  color: var(--color-text-dark-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-card-link {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.post-vermögensaufbau-strategien .vermögensaufbau-strategien-card-link:hover {
  color: var(--color-primary-hover);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-hero {
    padding: 5rem 0;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-hero h1 {
    font-size: 3rem;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-hero-image {
    height: 400px;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-content-intro {
    padding: 5rem 0;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-intro-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-intro-content h2 {
    font-size: 2.25rem;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-intro-image {
    height: 350px;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-foundations {
    padding: 5rem 0;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-pillars {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-pillars-image {
    height: 400px;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-timeline {
    padding: 5rem 0;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-phases {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-timeline-image {
    height: 400px;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-diversification {
    padding: 5rem 0;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-diversification-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-diversification-image {
    height: 400px;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-discipline {
    padding: 5rem 0;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-discipline-image {
    height: 400px;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-related {
    padding: 5rem 0;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-card-image {
    height: 220px;
  }
}

@media (max-width: 767px) {
  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-hero {
    padding: 2.5rem 0;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-hero h1 {
    font-size: 1.875rem;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-hero-image {
    height: 250px;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-content-intro {
    padding: 2.5rem 0;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-intro-content h2 {
    font-size: 1.5rem;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-intro-image {
    height: 250px;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-foundations {
    padding: 2.5rem 0;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-foundations h2 {
    font-size: 1.5rem;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-pillar-item {
    padding: 1.5rem;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-pillars-image {
    height: 250px;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-timeline {
    padding: 2.5rem 0;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-timeline h2 {
    font-size: 1.5rem;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-timeline-image {
    height: 250px;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-diversification {
    padding: 2.5rem 0;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-diversification h2 {
    font-size: 1.5rem;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-diversification-image {
    height: 250px;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-discipline {
    padding: 2.5rem 0;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-discipline h2 {
    font-size: 1.5rem;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-highlight-quote {
    font-size: 1rem;
    padding: 1rem;
    margin: 1.5rem 0;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-discipline-image {
    height: 250px;
    margin-top: 1.5rem;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-disclaimer {
    padding: 2rem 0;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-disclaimer-box {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-related {
    padding: 2.5rem 0;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-related h2 {
    font-size: 1.5rem;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-related-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .post-vermögensaufbau-strategien .vermögensaufbau-strategien-card-image {
    height: 180px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .post-vermögensaufbau-strategien * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

:root {
      --color-bg-dark-primary: #0a0f1e;
      --color-bg-dark-secondary: #0f1729;
      --color-bg-dark-tertiary: #1a2847;
      --color-bg-light-primary: #ffffff;
      --color-bg-light-secondary: #f8fafc;
      --color-text-light: #ffffff;
      --color-text-light-secondary: #e2e8f0;
      --color-text-light-muted: #94a3b8;
      --color-text-dark: #0f172a;
      --color-text-dark-secondary: #374151;
      --color-text-dark-muted: #6b7280;
      --color-primary: #3b82f6;
      --color-primary-hover: #2563eb;
      --color-secondary: #06b6d4;
      --color-accent-gold: #f59e0b;
      --font-primary: 'Inter', sans-serif;
      --font-heading: 'Playfair Display', serif;
      --radius-lg: 12px;
      --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    .post-marktsentiment-verstehen {
      font-family: var(--font-primary);
      line-height: 1.6;
    }

    .container {
      max-width: 1440px;
      width: 100%;
      margin: 0 auto;
      padding: 0 20px;
    }

    .marktsentiment-verstehen-breadcrumbs {
      background: var(--color-bg-dark-primary);
      padding: 1.5rem 0;
      overflow: hidden;
    }

    .marktsentiment-verstehen-breadcrumbs-list {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.875rem;
    }

    .marktsentiment-verstehen-breadcrumbs-list a {
      color: var(--color-primary);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .marktsentiment-verstehen-breadcrumbs-list a:hover {
      color: var(--color-secondary);
    }

    .marktsentiment-verstehen-breadcrumbs-list span {
      color: var(--color-text-light-muted);
    }

    .marktsentiment-verstehen-hero {
      background: var(--color-bg-dark-primary);
      padding: 6rem 0;
      overflow: hidden;
      position: relative;
    }

    .marktsentiment-verstehen-hero::before {
      content: '';
      position: absolute;
      top: -300px;
      right: -200px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
      z-index: 1;
    }

    .marktsentiment-verstehen-hero::after {
      content: '';
      position: absolute;
      bottom: -250px;
      left: -150px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(6, 182, 212, 0.12) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
      z-index: 1;
    }

    .marktsentiment-verstehen-hero-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 3rem;
      align-items: center;
      position: relative;
      z-index: 10;
    }

    .marktsentiment-verstehen-hero-text h1 {
      font-family: var(--font-heading);
      font-size: 3.75rem;
      font-weight: 700;
      color: var(--color-text-light);
      line-height: 1.2;
      margin-bottom: 1.5rem;
    }

    .marktsentiment-verstehen-hero-text p {
      font-size: 1.25rem;
      color: var(--color-text-light-secondary);
      line-height: 1.8;
      margin-bottom: 2rem;
      max-width: 600px;
    }

    .marktsentiment-verstehen-hero-meta {
      display: flex;
      gap: 2rem;
      color: var(--color-text-light-muted);
      font-size: 0.9rem;
      margin-top: 1.5rem;
    }

    .marktsentiment-verstehen-hero-meta span {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .marktsentiment-verstehen-featured-image {
      width: 100%;
      max-height: 450px;
      border-radius: var(--radius-lg);
      object-fit: cover;
      border: 2px solid rgba(59, 130, 246, 0.2);
    }

    .marktsentiment-verstehen-lead {
      background: var(--color-bg-dark-secondary);
      padding: 5rem 0;
      overflow: hidden;
      position: relative;
    }

    .marktsentiment-verstehen-lead::before {
      content: '';
      position: absolute;
      top: -200px;
      left: -150px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(16, 185, 129, 0.1) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
      z-index: 1;
    }

    .marktsentiment-verstehen-lead-content {
      position: relative;
      z-index: 10;
      max-width: 850px;
      margin: 0 auto;
    }

    .marktsentiment-verstehen-lead-text {
      font-size: 1.15rem;
      color: var(--color-text-light-secondary);
      line-height: 1.9;
      letter-spacing: 0.3px;
    }

    .marktsentiment-verstehen-lead-text p {
      margin-bottom: 1.5rem;
    }

    .marktsentiment-verstehen-content-1 {
      background: var(--color-bg-light-primary);
      padding: 5rem 0;
      overflow: hidden;
    }

    .marktsentiment-verstehen-content-1-wrapper {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2.5rem;
      align-items: center;
    }

    .marktsentiment-verstehen-section-heading {
      font-family: var(--font-heading);
      font-size: 2.5rem;
      color: var(--color-text-dark);
      margin-bottom: 1.5rem;
      line-height: 1.2;
    }

    .marktsentiment-verstehen-section-text {
      color: var(--color-text-dark-secondary);
      font-size: 1rem;
      line-height: 1.8;
    }

    .marktsentiment-verstehen-section-text p {
      margin-bottom: 1.5rem;
    }

    .marktsentiment-verstehen-section-image {
      width: 100%;
      max-height: 400px;
      border-radius: var(--radius-lg);
      object-fit: cover;
      box-shadow: var(--shadow-lg);
    }

    .marktsentiment-verstehen-highlight-box {
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(6, 182, 212, 0.05) 100%);
      border-left: 4px solid var(--color-primary);
      padding: 2rem;
      border-radius: var(--radius-lg);
      margin: 2rem 0;
    }

    .marktsentiment-verstehen-highlight-box p {
      color: var(--color-text-dark-secondary);
      margin: 0;
      font-size: 0.95rem;
      line-height: 1.7;
    }

    .marktsentiment-verstehen-content-2 {
      background: var(--color-bg-dark-tertiary);
      padding: 5rem 0;
      overflow: hidden;
      position: relative;
    }

    .marktsentiment-verstehen-content-2::before {
      content: '';
      position: absolute;
      top: -250px;
      right: -200px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
      z-index: 1;
    }

    .marktsentiment-verstehen-content-2-wrapper {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2.5rem;
      position: relative;
      z-index: 10;
    }

    .marktsentiment-verstehen-content-2 .marktsentiment-verstehen-section-heading {
      color: var(--color-text-light);
    }

    .marktsentiment-verstehen-content-2 .marktsentiment-verstehen-section-text {
      color: var(--color-text-light-secondary);
    }

    .marktsentiment-verstehen-content-2 .marktsentiment-verstehen-section-text p {
      color: var(--color-text-light-secondary);
    }

    .marktsentiment-verstehen-factors-list {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
      margin: 2rem 0;
    }

    .marktsentiment-verstehen-factor-item {
      display: flex;
      gap: 1.25rem;
      padding: 1.5rem;
      background: rgba(59, 130, 246, 0.1);
      border-radius: var(--radius-lg);
      border: 1px solid rgba(59, 130, 246, 0.2);
    }

    .marktsentiment-verstehen-factor-icon {
      font-size: 1.5rem;
      color: var(--color-secondary);
      flex-shrink: 0;
      width: 40px;
      height: 40px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .marktsentiment-verstehen-factor-text h3 {
      font-family: var(--font-heading);
      font-size: 1.25rem;
      color: var(--color-text-light);
      margin-bottom: 0.5rem;
    }

    .marktsentiment-verstehen-factor-text p {
      color: var(--color-text-light-secondary);
      font-size: 0.95rem;
      margin: 0;
    }

    .marktsentiment-verstehen-content-3 {
      background: var(--color-bg-light-primary);
      padding: 5rem 0;
      overflow: hidden;
    }

    .marktsentiment-verstehen-content-3-wrapper {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2.5rem;
    }

    .marktsentiment-verstehen-content-3 .marktsentiment-verstehen-section-heading {
      color: var(--color-text-dark);
    }

    .marktsentiment-verstehen-content-3 .marktsentiment-verstehen-section-text {
      color: var(--color-text-dark-secondary);
    }

    .marktsentiment-verstehen-quote-section {
      background: linear-gradient(135deg, var(--color-bg-dark-primary) 0%, var(--color-bg-dark-secondary) 100%);
      padding: 4rem 3rem;
      border-radius: var(--radius-lg);
      border-left: 5px solid var(--color-accent-gold);
      margin: 3rem 0;
      position: relative;
      overflow: hidden;
    }

    .marktsentiment-verstehen-quote-section::before {
      content: '"';
      position: absolute;
      top: -20px;
      left: 20px;
      font-size: 4rem;
      color: rgba(245, 158, 11, 0.2);
      font-family: var(--font-heading);
    }

    .marktsentiment-verstehen-quote-text {
      font-size: 1.25rem;
      color: var(--color-text-light);
      font-style: italic;
      line-height: 1.8;
      position: relative;
      z-index: 2;
      margin-bottom: 1rem;
    }

    .marktsentiment-verstehen-quote-attribution {
      color: var(--color-text-light-muted);
      font-size: 0.9rem;
    }

    .marktsentiment-verstehen-disclaimer {
      background: var(--color-bg-light-primary);
      padding: 4rem 0;
      overflow: hidden;
    }

    .marktsentiment-verstehen-disclaimer-box {
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(6, 182, 212, 0.05) 100%);
      border: 2px solid rgba(59, 130, 246, 0.2);
      border-radius: var(--radius-lg);
      padding: 2.5rem;
      display: flex;
      gap: 1.5rem;
    }

    .marktsentiment-verstehen-disclaimer-icon {
      font-size: 1.75rem;
      color: var(--color-primary);
      flex-shrink: 0;
      width: 50px;
      height: 50px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(59, 130, 246, 0.1);
      border-radius: var(--radius-lg);
    }

    .marktsentiment-verstehen-disclaimer-text h3 {
      font-family: var(--font-heading);
      font-size: 1.25rem;
      color: var(--color-text-dark);
      margin-bottom: 0.75rem;
    }

    .marktsentiment-verstehen-disclaimer-text p {
      color: var(--color-text-dark-secondary);
      font-size: 0.95rem;
      line-height: 1.7;
      margin: 0;
    }

    .marktsentiment-verstehen-related {
      background: var(--color-bg-dark-primary);
      padding: 6rem 0;
      overflow: hidden;
      position: relative;
    }

    .marktsentiment-verstehen-related::before {
      content: '';
      position: absolute;
      top: -300px;
      left: -250px;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
      border-radius: 50%;
      pointer-events: none;
      z-index: 1;
    }

    .marktsentiment-verstehen-related-header {
      text-align: center;
      margin-bottom: 3rem;
      position: relative;
      z-index: 10;
    }

    .marktsentiment-verstehen-related-title {
      font-family: var(--font-heading);
      font-size: 2.5rem;
      color: var(--color-text-light);
      margin-bottom: 0.75rem;
    }

    .marktsentiment-verstehen-related-subtitle {
      color: var(--color-text-light-secondary);
      font-size: 1rem;
    }

    .marktsentiment-verstehen-related-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
      gap: 2rem;
      position: relative;
      z-index: 10;
    }

    .marktsentiment-verstehen-related-card {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      padding: 2rem;
      background: rgba(59, 130, 246, 0.08);
      border: 1px solid rgba(59, 130, 246, 0.2);
      border-radius: var(--radius-lg);
      transition: all 0.3s ease;
      text-decoration: none;
      color: inherit;
    }

    .marktsentiment-verstehen-related-card:hover {
      transform: translateY(-8px);
      background: rgba(59, 130, 246, 0.12);
      border-color: rgba(59, 130, 246, 0.4);
      box-shadow: var(--shadow-lg);
    }

    .marktsentiment-verstehen-related-card-title {
      font-family: var(--font-heading);
      font-size: 1.25rem;
      color: var(--color-text-light);
      line-height: 1.4;
    }

    .marktsentiment-verstehen-related-card-desc {
      color: var(--color-text-light-secondary);
      font-size: 0.9rem;
      line-height: 1.7;
      margin: 0;
    }

    .marktsentiment-verstehen-related-card-arrow {
      color: var(--color-secondary);
      font-size: 1.25rem;
      margin-top: auto;
    }

    @media (min-width: 768px) {
      .marktsentiment-verstehen-hero {
        padding: 7rem 0;
      }

      .marktsentiment-verstehen-hero-content {
        grid-template-columns: 1fr 1fr;
      }

      .marktsentiment-verstehen-hero-text h1 {
        font-size: 3.5rem;
      }

      .marktsentiment-verstehen-lead {
        padding: 6rem 0;
      }

      .marktsentiment-verstehen-content-1,
      .marktsentiment-verstehen-content-3 {
        padding: 6rem 0;
      }

      .marktsentiment-verstehen-content-1-wrapper,
      .marktsentiment-verstehen-content-3-wrapper {
        grid-template-columns: 1fr 1fr;
      }

      .marktsentiment-verstehen-content-2 {
        padding: 6rem 0;
      }

      .marktsentiment-verstehen-factors-list {
        grid-template-columns: repeat(2, 1fr);
      }

      .marktsentiment-verstehen-related {
        padding: 7rem 0;
      }

      .marktsentiment-verstehen-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
      }
    }

    @media (min-width: 1024px) {
      .marktsentiment-verstehen-hero {
        padding: 8rem 0;
      }

      .marktsentiment-verstehen-hero-text h1 {
        font-size: 3.75rem;
      }

      .marktsentiment-verstehen-lead {
        padding: 7rem 0;
      }

      .marktsentiment-verstehen-content-1,
      .marktsentiment-verstehen-content-3 {
        padding: 7rem 0;
      }

      .marktsentiment-verstehen-content-2 {
        padding: 7rem 0;
      }

      .marktsentiment-verstehen-related {
        padding: 8rem 0;
      }

      .marktsentiment-verstehen-related-title {
        font-size: 2.75rem;
      }
    }

    @media (max-width: 767px) {
      .marktsentiment-verstehen-hero {
        padding: 3rem 0;
      }

      .marktsentiment-verstehen-hero-text h1 {
        font-size: 2rem;
      }

      .marktsentiment-verstehen-hero-text p {
        font-size: 1rem;
      }

      .marktsentiment-verstehen-hero-meta {
        flex-direction: column;
        gap: 1rem;
      }

      .marktsentiment-verstehen-lead {
        padding: 3rem 0;
      }

      .marktsentiment-verstehen-lead-text {
        font-size: 1rem;
      }

      .marktsentiment-verstehen-content-1,
      .marktsentiment-verstehen-content-2,
      .marktsentiment-verstehen-content-3 {
        padding: 3rem 0;
      }

      .marktsentiment-verstehen-section-heading {
        font-size: 1.75rem;
      }

      .marktsentiment-verstehen-section-text {
        font-size: 0.9rem;
      }

      .marktsentiment-verstehen-factor-item {
        padding: 1rem;
      }

      .marktsentiment-verstehen-factor-text h3 {
        font-size: 1rem;
      }

      .marktsentiment-verstehen-factor-text p {
        font-size: 0.85rem;
      }

      .marktsentiment-verstehen-quote-section {
        padding: 2rem;
        margin: 2rem 0;
      }

      .marktsentiment-verstehen-quote-text {
        font-size: 1rem;
      }

      .marktsentiment-verstehen-disclaimer {
        padding: 3rem 0;
      }

      .marktsentiment-verstehen-disclaimer-box {
        flex-direction: column;
      }

      .marktsentiment-verstehen-related {
        padding: 3rem 0;
      }

      .marktsentiment-verstehen-related-title {
        font-size: 1.75rem;
      }

      .marktsentiment-verstehen-related-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      *,
      *::before,
      *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }

.post-unterstuetzung-widerstand {
  width: 100%;
  background: var(--color-bg-light-primary);
}

.post-unterstuetzung-widerstand * {
  scroll-behavior: smooth;
}

.unterstuetzung-widerstand-container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.unterstuetzung-widerstand-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1.5rem 0;
  font-size: 0.875rem;
}

.unterstuetzung-widerstand-breadcrumb-link {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.unterstuetzung-widerstand-breadcrumb-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.unterstuetzung-widerstand-breadcrumb-separator {
  color: #cbd5e1;
}

.unterstuetzung-widerstand-breadcrumb-current {
  color: var(--color-text-dark-secondary);
}

.unterstuetzung-widerstand-hero {
  position: relative;
  background: var(--color-bg-dark-primary);
  padding: 5rem 0 0 0;
  margin-bottom: 3rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 500px;
}

.unterstuetzung-widerstand-hero::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.unterstuetzung-widerstand-hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -250px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.unterstuetzung-widerstand-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(10, 15, 30, 0.85) 0%, rgba(15, 23, 41, 0.8) 100%);
  z-index: 2;
}

.unterstuetzung-widerstand-hero-content {
  position: relative;
  z-index: 3;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem 0;
}

.unterstuetzung-widerstand-hero-title {
  font-size: 3.5rem;
  color: #ffffff;
  margin-bottom: 1.5rem;
  line-height: 1.1;
  font-family: var(--font-heading);
  font-weight: 700;
}

.unterstuetzung-widerstand-hero-subtitle {
  font-size: 1.25rem;
  color: var(--color-text-light-secondary);
  margin-bottom: 2rem;
  max-width: 600px;
  line-height: 1.6;
}

.unterstuetzung-widerstand-hero-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.9rem;
  color: var(--color-text-light-muted);
}

.unterstuetzung-widerstand-hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.unterstuetzung-widerstand-article {
  padding: 3rem 0;
}

.unterstuetzung-widerstand-lead {
  margin-bottom: 4rem;
  padding: 2rem;
  background: var(--color-bg-light-secondary);
  border-radius: 12px;
  border-left: 4px solid var(--color-primary);
}

.unterstuetzung-widerstand-lead-text {
  font-size: 1.1rem;
  color: var(--color-text-dark);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.unterstuetzung-widerstand-lead-text:last-child {
  margin-bottom: 0;
}

.unterstuetzung-widerstand-content-section-1,
.unterstuetzung-widerstand-content-section-2,
.unterstuetzung-widerstand-content-section-3,
.unterstuetzung-widerstand-content-section-4,
.unterstuetzung-widerstand-content-section-5 {
  margin-bottom: 4rem;
}

.unterstuetzung-widerstand-section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 2rem;
}

.unterstuetzung-widerstand-section-grid-reverse {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 2rem;
}

.unterstuetzung-widerstand-section-title {
  font-size: 2.25rem;
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
  font-family: var(--font-heading);
}

.unterstuetzung-widerstand-section-text p {
  color: var(--color-text-dark-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.unterstuetzung-widerstand-section-text p:last-child {
  margin-bottom: 0;
}

.unterstuetzung-widerstand-section-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--color-bg-light-secondary);
  box-shadow: var(--shadow-lg);
}

.unterstuetzung-widerstand-content-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}

.unterstuetzung-widerstand-content-image-full {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: var(--shadow-lg);
}

.unterstuetzung-widerstand-highlight-box {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.2);
  margin: 2rem 0;
}

.unterstuetzung-widerstand-highlight-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: 50%;
  font-size: 1.5rem;
}

.unterstuetzung-widerstand-highlight-content h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.unterstuetzung-widerstand-highlight-content p {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.unterstuetzung-widerstand-quote-section {
  margin: 4rem 0;
  padding: 3rem 2rem;
  background: var(--color-bg-light-secondary);
  border-radius: 12px;
  text-align: center;
}

.unterstuetzung-widerstand-quote {
  margin: 0;
  font-size: 1.5rem;
  color: var(--color-text-dark);
  line-height: 1.8;
  font-style: italic;
  font-family: var(--font-heading);
  font-weight: 600;
}

.unterstuetzung-widerstand-quote p {
  margin: 0 0 1.5rem 0;
}

.unterstuetzung-widerstand-quote-footer {
  color: var(--color-text-dark-secondary);
  font-size: 0.9rem;
  font-style: normal;
  font-family: var(--font-primary);
  font-weight: 500;
}

.unterstuetzung-widerstand-warning-box {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.05) 0%, rgba(245, 158, 11, 0.05) 100%);
  border-radius: 12px;
  border: 1px solid rgba(239, 68, 68, 0.2);
  border-left: 4px solid #ef4444;
  margin: 2rem 0;
}

.unterstuetzung-widerstand-warning-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
  border-radius: 50%;
  font-size: 1.5rem;
}

.unterstuetzung-widerstand-warning-content h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.unterstuetzung-widerstand-warning-content p {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.unterstuetzung-widerstand-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.unterstuetzung-widerstand-step {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--color-bg-light-secondary);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.unterstuetzung-widerstand-step:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.unterstuetzung-widerstand-step-number {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.25rem;
  font-family: var(--font-heading);
}

.unterstuetzung-widerstand-step-content h3 {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.unterstuetzung-widerstand-step-content p {
  color: var(--color-text-dark-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.unterstuetzung-widerstand-integration-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
  margin: 2rem 0;
}

.unterstuetzung-widerstand-integration-item {
  padding: 1.5rem;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
  border-radius: 12px;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.unterstuetzung-widerstand-integration-item h3 {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}

.unterstuetzung-widerstand-integration-item p {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.unterstuetzung-widerstand-disclaimer {
  margin: 4rem 0;
  padding: 2rem;
  background: var(--color-bg-light-secondary);
  border-radius: 12px;
  border-left: 4px solid var(--color-secondary);
}

.unterstuetzung-widerstand-disclaimer-content {
  display: flex;
  gap: 1.5rem;
}

.unterstuetzung-widerstand-disclaimer-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.1);
  color: var(--color-secondary);
  border-radius: 50%;
  font-size: 1.5rem;
}

.unterstuetzung-widerstand-disclaimer-text h3 {
  color: var(--color-text-dark);
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.unterstuetzung-widerstand-disclaimer-text p {
  color: var(--color-text-dark-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin: 0;
}

.unterstuetzung-widerstand-related {
  margin-top: 4rem;
  padding-top: 3rem;
  border-top: 2px solid #e2e8f0;
}

.unterstuetzung-widerstand-related-title {
  font-size: 2rem;
  color: var(--color-text-dark);
  margin-bottom: 2rem;
  font-family: var(--font-heading);
}

.unterstuetzung-widerstand-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.unterstuetzung-widerstand-related-card {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  background: var(--color-bg-light-secondary);
  border-radius: 12px;
  border: 2px solid #e2e8f0;
  text-decoration: none;
  transition: all 0.3s ease;
}

.unterstuetzung-widerstand-related-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.unterstuetzung-widerstand-related-card-content h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.unterstuetzung-widerstand-related-card-content p {
  color: var(--color-text-dark-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  flex: 1;
}

.unterstuetzung-widerstand-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 600;
  transition: all 0.3s ease;
}

.unterstuetzung-widerstand-related-card:hover .unterstuetzung-widerstand-read-more {
  gap: 0.75rem;
}

.unterstuetzung-widerstand-read-time {
  color: var(--color-text-dark-secondary);
}

.unterstuetzung-widerstand-meta-separator {
  color: #cbd5e1;
}

.unterstuetzung-widerstand-category {
  color: var(--color-primary);
  font-weight: 600;
}

@media (max-width: 767px) {
  .unterstuetzung-widerstand-hero {
    min-height: 400px;
    padding: 3rem 0 0 0;
  }

  .unterstuetzung-widerstand-hero-title {
    font-size: 2rem;
  }

  .unterstuetzung-widerstand-hero-subtitle {
    font-size: 1rem;
  }

  .unterstuetzung-widerstand-hero-content {
    padding: 2rem 0;
  }

  .unterstuetzung-widerstand-section-grid,
  .unterstuetzung-widerstand-section-grid-reverse {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .unterstuetzung-widerstand-section-title {
    font-size: 1.5rem;
  }

  .unterstuetzung-widerstand-content-image,
  .unterstuetzung-widerstand-content-image-full {
    height: 250px;
  }

  .unterstuetzung-widerstand-quote {
    font-size: 1.25rem;
  }

  .unterstuetzung-widerstand-steps {
    grid-template-columns: 1fr;
  }

  .unterstuetzung-widerstand-integration-grid {
    grid-template-columns: 1fr;
  }

  .unterstuetzung-widerstand-related-grid {
    grid-template-columns: 1fr;
  }

  .unterstuetzung-widerstand-lead {
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  .unterstuetzung-widerstand-lead-text {
    font-size: 1rem;
  }

  .unterstuetzung-widerstand-disclaimer-content {
    flex-direction: column;
  }

  .unterstuetzung-widerstand-disclaimer {
    margin: 2rem 0;
  }
}

@media (min-width: 768px) and (max-width: 1023px) {
  .unterstuetzung-widerstand-hero-title {
    font-size: 2.75rem;
  }

  .unterstuetzung-widerstand-hero-subtitle {
    font-size: 1.125rem;
  }

  .unterstuetzung-widerstand-section-title {
    font-size: 1.875rem;
  }

  .unterstuetzung-widerstand-related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .unterstuetzung-widerstand-hero {
    min-height: 550px;
    padding: 6rem 0 0 0;
  }

  .unterstuetzung-widerstand-hero-content {
    padding: 4rem 0;
  }

  .unterstuetzung-widerstand-article {
    padding: 4rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .post-unterstuetzung-widerstand,
  .post-unterstuetzung-widerstand *,
  .post-unterstuetzung-widerstand *::before,
  .post-unterstuetzung-widerstand *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.post-asset-allokation {
  background: var(--color-bg-light-primary);
}

.post-asset-allokation .container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.asset-allokation-breadcrumbs {
  background: var(--color-bg-light-secondary);
  border-bottom: 1px solid #e2e8f0;
  padding: 1rem 0;
}

.asset-allokation-breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.asset-allokation-breadcrumbs a {
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.asset-allokation-breadcrumbs a:hover {
  color: var(--color-primary-hover);
}

.asset-allokation-breadcrumbs span[aria-hidden="true"] {
  color: #cbd5e1;
}

.asset-allokation-breadcrumbs [aria-current="page"] {
  color: #64748b;
  font-weight: 600;
}

.asset-allokation-hero {
  padding: 4rem 0;
  background: var(--color-bg-light-primary);
  overflow: hidden;
}

.asset-allokation-hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.asset-allokation-hero-text h1 {
  color: var(--color-text-dark);
  font-size: 3rem;
  margin-bottom: 1.5rem;
}

.asset-allokation-lead {
  color: var(--color-text-dark-secondary);
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 1.5rem !important;
  max-width: 600px;
}

.asset-allokation-meta {
  display: flex;
  gap: 2rem;
  align-items: center;
  color: var(--color-text-dark-muted);
  font-size: 0.95rem;
}

.asset-allokation-meta .fas {
  color: var(--color-primary);
  margin-right: 0.5rem;
}

.asset-allokation-featured-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.asset-allokation-content-intro,
.asset-allokation-content-principles,
.asset-allokation-content-strategies,
.asset-allokation-content-implementation {
  padding: 4rem 0;
  background: var(--color-bg-light-primary);
}

.asset-allokation-content-block {
  max-width: 800px;
  margin: 0 auto;
}

.asset-allokation-content-block h2 {
  color: var(--color-text-dark);
  font-size: 2.25rem;
  margin-bottom: 1.5rem;
}

.asset-allokation-content-block h3 {
  color: var(--color-text-dark);
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.asset-allokation-content-block p {
  color: var(--color-text-dark-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.asset-allokation-section-image {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  margin: 2rem 0;
  box-shadow: var(--shadow-md);
}

.asset-allokation-image-block {
  margin: 2.5rem 0;
}

.asset-allokation-principle-item {
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
}

.asset-allokation-principle-item:last-child {
  border-bottom: none;
}

.asset-allokation-principle-item h3 {
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.asset-allokation-principle-item .fas {
  color: var(--color-primary);
  font-size: 1.25rem;
}

.asset-allokation-principle-item p {
  margin: 0;
}

.asset-allokation-strategy-card {
  background: var(--color-bg-light-secondary);
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 2rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

.asset-allokation-strategy-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.asset-allokation-strategy-card h3 {
  color: var(--color-text-dark);
  margin-bottom: 1rem;
}

.asset-allokation-strategy-card p {
  margin-bottom: 1.25rem;
}

.asset-allokation-features {
  list-style: none;
  margin: 0;
  padding: 0;
}

.asset-allokation-features li {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  padding: 0.5rem 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.asset-allokation-features .fas {
  color: var(--color-secondary);
  font-size: 1rem;
  flex-shrink: 0;
}

.asset-allokation-step {
  margin-bottom: 2rem;
  padding: 1.5rem;
  background: var(--color-bg-light-secondary);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

.asset-allokation-step h3 {
  color: var(--color-text-dark);
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
}

.asset-allokation-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.125rem;
  flex-shrink: 0;
}

.asset-allokation-step p {
  margin: 0;
}

.asset-allokation-highlight-box {
  padding: 3rem 0;
  background: var(--color-bg-light-primary);
}

.asset-allokation-highlight-content {
  max-width: 800px;
  margin: 0 auto;
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.asset-allokation-highlight-content .fas {
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.asset-allokation-highlight-content h3 {
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
}

.asset-allokation-highlight-content p {
  color: var(--color-text-dark-secondary);
  margin: 0;
}

.asset-allokation-disclaimer {
  padding: 3rem 0;
  background: var(--color-bg-light-primary);
  border-top: 2px solid #e2e8f0;
}

.asset-allokation-disclaimer-content {
  max-width: 800px;
  margin: 0 auto;
  background: #fffbeb;
  border-left: 4px solid var(--color-accent-gold);
  border-radius: var(--radius-lg);
  padding: 2rem;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

.asset-allokation-disclaimer-content .fas {
  color: var(--color-accent-gold);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.asset-allokation-disclaimer-content h3 {
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
}

.asset-allokation-disclaimer-content p {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.7;
}

.asset-allokation-related {
  padding: 4rem 0;
  background: var(--color-bg-light-primary);
  border-top: 2px solid #e2e8f0;
}

.asset-allokation-related h2 {
  color: var(--color-text-dark);
  text-align: center;
  margin-bottom: 3rem;
  font-size: 2.25rem;
}

.asset-allokation-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.asset-allokation-related-card {
  background: var(--color-bg-light-secondary);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: all 0.3s ease;
}

.asset-allokation-related-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
}

.asset-allokation-related-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.asset-allokation-related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.asset-allokation-related-card:hover .asset-allokation-related-image img {
  transform: scale(1.05);
}

.asset-allokation-related-content {
  padding: 1.5rem;
}

.asset-allokation-related-content h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.asset-allokation-related-content p {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.asset-allokation-read-more {
  color: var(--color-primary);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
}

.asset-allokation-read-more:hover {
  color: var(--color-primary-hover);
  transform: translateX(4px);
}

.asset-allokation-read-more .fas {
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .asset-allokation-hero {
    padding: 6rem 0;
  }

  .asset-allokation-hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .asset-allokation-hero-text h1 {
    font-size: 3.5rem;
  }

  .asset-allokation-content-intro,
  .asset-allokation-content-principles,
  .asset-allokation-content-strategies,
  .asset-allokation-content-implementation {
    padding: 5rem 0;
  }

  .asset-allokation-content-block h2 {
    font-size: 2.5rem;
  }

  .asset-allokation-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .asset-allokation-hero {
    padding: 8rem 0;
  }

  .asset-allokation-hero-text h1 {
    font-size: 3.75rem;
  }

  .asset-allokation-content-intro,
  .asset-allokation-content-principles,
  .asset-allokation-content-strategies,
  .asset-allokation-content-implementation {
    padding: 6rem 0;
  }
}

@media (max-width: 767px) {
  .asset-allokation-hero {
    padding: 3rem 0;
  }

  .asset-allokation-hero-text h1 {
    font-size: 2rem;
  }

  .asset-allokation-lead {
    font-size: 1rem;
  }

  .asset-allokation-content-intro,
  .asset-allokation-content-principles,
  .asset-allokation-content-strategies,
  .asset-allokation-content-implementation {
    padding: 2.5rem 0;
  }

  .asset-allokation-content-block h2 {
    font-size: 1.75rem;
  }

  .asset-allokation-content-block h3 {
    font-size: 1.25rem;
  }

  .asset-allokation-content-block p {
    font-size: 0.95rem;
  }

  .asset-allokation-featured-image {
    max-height: 250px;
  }

  .asset-allokation-section-image {
    max-height: 250px;
  }

  .asset-allokation-highlight-content,
  .asset-allokation-disclaimer-content {
    flex-direction: column;
  }

  .asset-allokation-highlight-content .fas,
  .asset-allokation-disclaimer-content .fas {
    margin-top: 0;
  }

  .asset-allokation-related-grid {
    grid-template-columns: 1fr;
  }

  .asset-allokation-related h2 {
    font-size: 1.75rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:root {
      --color-bg-hero: #0a0f1e;
      --color-bg-light: #ffffff;
      --color-bg-section: #f8fafc;
      --color-text-light: #ffffff;
      --color-text-light-secondary: #e2e8f0;
      --color-text-dark: #0f172a;
      --color-text-dark-secondary: #475569;
      --color-text-muted: #64748b;
      --color-primary: #3b82f6;
      --color-primary-hover: #2563eb;
      --color-secondary: #06b6d4;
      --color-accent: #f59e0b;
      --color-success: #10b981;
      --font-primary: 'Inter', sans-serif;
      --font-heading: 'Playfair Display', serif;
      --space-xs: 0.5rem;
      --space-sm: 1rem;
      --space-md: 1.5rem;
      --space-lg: 2rem;
      --space-xl: 3rem;
      --space-2xl: 4rem;
      --radius-sm: 4px;
      --radius-md: 8px;
      --radius-lg: 12px;
      --radius-xl: 16px;
      --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
      --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: var(--font-primary);
      line-height: 1.6;
    }

    .container {
      max-width: 1440px;
      width: 100%;
      margin: 0 auto;
      padding: 0 20px;
    }

    @media (prefers-reduced-motion: reduce) {
      * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }

    .post-notfall-finanzplanung {
      width: 100%;
    }

    .notfall-finanzplanung-breadcrumbs {
      background: var(--color-bg-light);
      padding: 1.5rem 0;
      border-bottom: 1px solid #e2e8f0;
      font-size: 0.875rem;
    }

    .notfall-finanzplanung-breadcrumbs a {
      color: var(--color-primary);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .notfall-finanzplanung-breadcrumbs a:hover {
      color: var(--color-primary-hover);
    }

    .notfall-finanzplanung-breadcrumbs span {
      color: var(--color-text-muted);
      margin: 0 0.5rem;
    }

    .notfall-finanzplanung-hero {
      background: var(--color-bg-hero);
      padding: 4rem 0;
      position: relative;
      overflow: hidden;
    }

    .notfall-finanzplanung-hero::before {
      content: '';
      position: absolute;
      top: -300px;
      right: -200px;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
      border-radius: 50%;
      z-index: 1;
      pointer-events: none;
    }

    .notfall-finanzplanung-hero::after {
      content: '';
      position: absolute;
      bottom: -250px;
      left: -150px;
      width: 450px;
      height: 450px;
      background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
      border-radius: 50%;
      z-index: 1;
      pointer-events: none;
    }

    .notfall-finanzplanung-hero-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2.5rem;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .notfall-finanzplanung-hero h1 {
      font-family: var(--font-heading);
      font-size: 2.25rem;
      font-weight: 700;
      color: var(--color-text-light);
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    .notfall-finanzplanung-hero-text {
      color: var(--color-text-light-secondary);
      font-size: 0.95rem;
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }

    .notfall-finanzplanung-hero-meta {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
      color: var(--color-text-light-secondary);
      font-size: 0.875rem;
    }

    .notfall-finanzplanung-hero-image {
      position: relative;
      width: 100%;
      height: 300px;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.15) 0%, rgba(6, 182, 212, 0.1) 100%);
      border-radius: var(--radius-lg);
      border: 1px solid rgba(59, 130, 246, 0.2);
      overflow: hidden;
    }

    .notfall-finanzplanung-hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    @media (min-width: 768px) {
      .notfall-finanzplanung-hero {
        padding: 6rem 0;
      }

      .notfall-finanzplanung-hero h1 {
        font-size: 2.75rem;
      }

      .notfall-finanzplanung-hero-image {
        height: 350px;
      }
    }

    @media (min-width: 1024px) {
      .notfall-finanzplanung-hero {
        padding: 8rem 0;
      }

      .notfall-finanzplanung-hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
      }

      .notfall-finanzplanung-hero h1 {
        font-size: 3.25rem;
      }

      .notfall-finanzplanung-hero-image {
        height: 400px;
      }
    }

    .notfall-finanzplanung-lead {
      background: var(--color-bg-light);
      padding: 3rem 0;
    }

    .notfall-finanzplanung-lead-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .notfall-finanzplanung-lead-text {
      color: var(--color-text-dark-secondary);
      font-size: 1.05rem;
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .notfall-finanzplanung-lead {
        padding: 4rem 0;
      }

      .notfall-finanzplanung-lead-text {
        font-size: 1.125rem;
        max-width: 900px;
      }
    }

    @media (min-width: 1024px) {
      .notfall-finanzplanung-lead {
        padding: 5rem 0;
      }
    }

    .notfall-finanzplanung-section {
      background: var(--color-bg-light);
      padding: 3rem 0;
      overflow: hidden;
      position: relative;
    }

    .notfall-finanzplanung-section:nth-child(even) {
      background: var(--color-bg-section);
    }

    .notfall-finanzplanung-section-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .notfall-finanzplanung-section h2 {
      font-family: var(--font-heading);
      font-size: 1.875rem;
      font-weight: 700;
      color: var(--color-text-dark);
      line-height: 1.2;
      margin-bottom: 0.5rem;
    }

    .notfall-finanzplanung-section:nth-child(even) h2 {
      color: var(--color-text-dark);
    }

    .notfall-finanzplanung-section-text {
      color: var(--color-text-dark-secondary);
      font-size: 0.95rem;
      line-height: 1.8;
    }

    .notfall-finanzplanung-image-container {
      width: 100%;
      height: 280px;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(6, 182, 212, 0.08) 100%);
      border-radius: var(--radius-lg);
      border: 1px solid #e2e8f0;
      overflow: hidden;
    }

    .notfall-finanzplanung-image-container img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .notfall-finanzplanung-highlight {
      background: rgba(59, 130, 246, 0.08);
      border-left: 4px solid var(--color-primary);
      padding: 1.5rem;
      border-radius: var(--radius-md);
      margin: 1.5rem 0;
    }

    .notfall-finanzplanung-highlight h3 {
      font-family: var(--font-heading);
      font-size: 1.25rem;
      color: var(--color-text-dark);
      margin-bottom: 0.75rem;
    }

    .notfall-finanzplanung-highlight p {
      color: var(--color-text-dark-secondary);
      font-size: 0.95rem;
      line-height: 1.7;
      margin: 0;
    }

    .notfall-finanzplanung-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin: 1.5rem 0;
    }

    .notfall-finanzplanung-list li {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      color: var(--color-text-dark-secondary);
      font-size: 0.95rem;
      line-height: 1.7;
    }

    .notfall-finanzplanung-list .fas {
      color: var(--color-success);
      font-size: 1.25rem;
      margin-top: 0.25rem;
      flex-shrink: 0;
    }

    .notfall-finanzplanung-quote {
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.06) 0%, rgba(6, 182, 212, 0.04) 100%);
      border-left: 5px solid var(--color-secondary);
      padding: 2rem;
      border-radius: var(--radius-lg);
      margin: 2rem 0;
      position: relative;
    }

    .notfall-finanzplanung-quote::before {
      content: '"';
      position: absolute;
      top: -10px;
      left: 20px;
      font-size: 4rem;
      color: rgba(59, 130, 246, 0.15);
      font-family: var(--font-heading);
    }

    .notfall-finanzplanung-quote-text {
      color: var(--color-text-dark);
      font-size: 1.05rem;
      font-style: italic;
      line-height: 1.8;
      position: relative;
      z-index: 1;
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .notfall-finanzplanung-section {
        padding: 4rem 0;
      }

      .notfall-finanzplanung-section h2 {
        font-size: 2.25rem;
      }

      .notfall-finanzplanung-image-container {
        height: 350px;
      }

      .notfall-finanzplanung-quote {
        padding: 2.5rem;
      }
    }

    @media (min-width: 1024px) {
      .notfall-finanzplanung-section {
        padding: 5rem 0;
      }

      .notfall-finanzplanung-image-container {
        height: 400px;
      }
    }

    .notfall-finanzplanung-disclaimer {
      background: linear-gradient(135deg, rgba(245, 158, 11, 0.06) 0%, rgba(249, 115, 22, 0.04) 100%);
      border: 1px solid rgba(245, 158, 11, 0.2);
      border-left: 5px solid var(--color-accent);
      padding: 2rem;
      border-radius: var(--radius-lg);
      margin: 3rem 0;
    }

    .notfall-finanzplanung-disclaimer-header {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1rem;
    }

    .notfall-finanzplanung-disclaimer-icon {
      color: var(--color-accent);
      font-size: 1.5rem;
    }

    .notfall-finanzplanung-disclaimer-title {
      font-family: var(--font-heading);
      font-size: 1.125rem;
      font-weight: 700;
      color: var(--color-text-dark);
    }

    .notfall-finanzplanung-disclaimer-text {
      color: var(--color-text-dark-secondary);
      font-size: 0.9rem;
      line-height: 1.7;
      margin: 0;
    }

    @media (min-width: 768px) {
      .notfall-finanzplanung-disclaimer {
        padding: 2.5rem;
      }
    }

    .notfall-finanzplanung-related {
      background: var(--color-bg-section);
      padding: 3rem 0;
      overflow: hidden;
    }

    .notfall-finanzplanung-related-content {
      display: flex;
      flex-direction: column;
      gap: 2.5rem;
    }

    .notfall-finanzplanung-related-header {
      text-align: center;
    }

    .notfall-finanzplanung-related h2 {
      font-family: var(--font-heading);
      font-size: 1.875rem;
      font-weight: 700;
      color: var(--color-text-dark);
      margin-bottom: 0.5rem;
    }

    .notfall-finanzplanung-related-intro {
      color: var(--color-text-dark-secondary);
      font-size: 0.95rem;
      line-height: 1.7;
    }

    .notfall-finanzplanung-related-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    .notfall-finanzplanung-related-card {
      background: var(--color-bg-light);
      border: 1px solid #e2e8f0;
      border-radius: var(--radius-lg);
      overflow: hidden;
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .notfall-finanzplanung-related-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-lg);
      border-color: var(--color-primary);
    }

    .notfall-finanzplanung-related-image {
      width: 100%;
      height: 200px;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(6, 182, 212, 0.08) 100%);
      border-bottom: 1px solid #e2e8f0;
      overflow: hidden;
    }

    .notfall-finanzplanung-related-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .notfall-finanzplanung-related-text {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      flex: 1;
    }

    .notfall-finanzplanung-related-card h3 {
      font-family: var(--font-heading);
      font-size: 1.125rem;
      font-weight: 700;
      color: var(--color-text-dark);
      line-height: 1.3;
      margin: 0;
    }

    .notfall-finanzplanung-related-card p {
      color: var(--color-text-dark-secondary);
      font-size: 0.875rem;
      line-height: 1.6;
      margin: 0;
      flex: 1;
    }

    .notfall-finanzplanung-related-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--color-primary);
      font-size: 0.875rem;
      font-weight: 600;
      text-decoration: none;
      transition: all 0.3s ease;
      margin-top: auto;
    }

    .notfall-finanzplanung-related-link:hover {
      color: var(--color-primary-hover);
      gap: 0.75rem;
    }

    @media (min-width: 768px) {
      .notfall-finanzplanung-related {
        padding: 4rem 0;
      }

      .notfall-finanzplanung-related h2 {
        font-size: 2.25rem;
      }

      .notfall-finanzplanung-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
      }

      .notfall-finanzplanung-related-text {
        padding: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .notfall-finanzplanung-related {
        padding: 5rem 0;
      }

      .notfall-finanzplanung-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
      }
    }

    @media (max-width: 767px) {
      .notfall-finanzplanung-hero {
        padding: 3rem 0;
      }

      .notfall-finanzplanung-hero h1 {
        font-size: 1.875rem;
      }

      .notfall-finanzplanung-hero-text {
        font-size: 0.9rem;
      }

      .notfall-finanzplanung-section {
        padding: 2rem 0;
      }

      .notfall-finanzplanung-section h2 {
        font-size: 1.5rem;
      }

      .notfall-finanzplanung-section-text {
        font-size: 0.9rem;
      }

      .notfall-finanzplanung-related h2 {
        font-size: 1.5rem;
      }

      .notfall-finanzplanung-breadcrumbs {
        padding: 1rem 0;
        font-size: 0.8rem;
      }
    }

.post-return-metriken-verstehen {
  background: var(--color-bg-light-primary);
  color: var(--color-text-dark);
}

.post-return-metriken-verstehen-breadcrumbs {
  background: var(--color-bg-light-secondary);
  padding: 1.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.post-return-metriken-verstehen-breadcrumb-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.post-return-metriken-verstehen-breadcrumb-link {
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.post-return-metriken-verstehen-breadcrumb-link:hover {
  color: var(--color-primary-hover);
}

.post-return-metriken-verstehen-breadcrumb-sep {
  color: var(--color-text-dark-muted);
}

.post-return-metriken-verstehen-breadcrumb-current {
  color: var(--color-text-dark-secondary);
}

.post-return-metriken-verstehen-hero {
  padding: 4rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  border-bottom: 1px solid #e2e8f0;
}

.post-return-metriken-verstehen-hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.post-return-metriken-verstehen-hero-title {
  color: var(--color-text-dark);
  font-size: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.post-return-metriken-verstehen-hero-lead {
  color: var(--color-text-dark-secondary);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 600px;
}

.post-return-metriken-verstehen-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.post-return-metriken-verstehen-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-dark-muted);
  font-size: 0.9rem;
}

.post-return-metriken-verstehen-meta-item .fas {
  color: var(--color-primary);
  font-size: 1rem;
}

.post-return-metriken-verstehen-hero-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.post-return-metriken-verstehen-hero-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.post-return-metriken-verstehen-article {
  padding: 4rem 0;
}

.post-return-metriken-verstehen-content-wrapper {
  max-width: 800px;
}

.post-return-metriken-verstehen-section-intro {
  margin-bottom: 3rem;
}

.post-return-metriken-verstehen-intro-paragraph {
  color: var(--color-text-dark-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.post-return-metriken-verstehen-section-one,
.post-return-metriken-verstehen-section-two,
.post-return-metriken-verstehen-section-three,
.post-return-metriken-verstehen-section-four,
.post-return-metriken-verstehen-section-five {
  margin-bottom: 3.5rem;
}

.post-return-metriken-verstehen-section-title {
  color: var(--color-text-dark);
  font-size: 1.875rem;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.post-return-metriken-verstehen-section-text {
  color: var(--color-text-dark-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.post-return-metriken-verstehen-image-wrapper {
  margin: 2.5rem 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.post-return-metriken-verstehen-section-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

.post-return-metriken-verstehen-highlight-box {
  display: flex;
  gap: 1rem;
  padding: 1.5rem;
  background: #f0f9ff;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  margin: 2rem 0;
}

.post-return-metriken-verstehen-highlight-icon {
  flex-shrink: 0;
  color: var(--color-primary);
  font-size: 1.5rem;
}

.post-return-metriken-verstehen-highlight-text {
  color: var(--color-text-dark);
  font-size: 0.95rem;
  line-height: 1.6;
}

.post-return-metriken-verstehen-highlight-text strong {
  color: var(--color-text-dark);
}

.post-return-metriken-verstehen-section-summary {
  margin: 4rem 0 3.5rem;
}

.post-return-metriken-verstehen-summary-box {
  padding: 2rem;
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-xl);
  border: 2px solid #e2e8f0;
}

.post-return-metriken-verstehen-summary-title {
  color: var(--color-text-dark);
  font-size: 1.5rem;
  margin-bottom: 1.5rem;
}

.post-return-metriken-verstehen-summary-list {
  list-style: none;
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
}

.post-return-metriken-verstehen-summary-list li {
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: 0.75rem;
}

.post-return-metriken-verstehen-summary-list li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: bold;
  font-size: 1.1rem;
}

.post-return-metriken-verstehen-summary-list strong {
  color: var(--color-text-dark);
}

.post-return-metriken-verstehen-disclaimer {
  margin: 4rem 0;
  padding: 2rem;
  background: #fef3c7;
  border-left: 4px solid var(--color-accent-gold);
  border-radius: var(--radius-lg);
}

.post-return-metriken-verstehen-disclaimer-content {
  display: flex;
  gap: 1.5rem;
}

.post-return-metriken-verstehen-disclaimer-icon {
  flex-shrink: 0;
  color: #b45309;
  font-size: 1.5rem;
}

.post-return-metriken-verstehen-disclaimer-text {
  color: #78350f;
  font-size: 0.95rem;
  line-height: 1.7;
}

.post-return-metriken-verstehen-disclaimer-text strong {
  color: #78350f;
}

.post-return-metriken-verstehen-related {
  background: var(--color-bg-light-secondary);
  padding: 4rem 0;
  border-top: 1px solid #e2e8f0;
}

.post-return-metriken-verstehen-related-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.post-return-metriken-verstehen-related-title {
  color: var(--color-text-dark);
  font-size: 1.875rem;
  margin: 0;
  text-align: center;
}

.post-return-metriken-verstehen-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.post-return-metriken-verstehen-related-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.post-return-metriken-verstehen-related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.post-return-metriken-verstehen-related-card-header {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.post-return-metriken-verstehen-related-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  font-size: 1.5rem;
}

.post-return-metriken-verstehen-related-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.post-return-metriken-verstehen-related-card-title {
  color: var(--color-text-dark);
  font-size: 1.1rem;
  margin: 0;
  line-height: 1.3;
}

.post-return-metriken-verstehen-related-card-desc {
  color: var(--color-text-dark-muted);
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

.post-return-metriken-verstehen-related-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 0.5rem;
  transition: all 0.3s ease;
}

.post-return-metriken-verstehen-related-card:hover .post-return-metriken-verstehen-related-card-link {
  gap: 0.75rem;
}

.post-return-metriken-verstehen-related-card-link .fas {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.post-return-metriken-verstehen-related-card:hover .post-return-metriken-verstehen-related-card-link .fas {
  transform: translateX(3px);
}

@media (min-width: 768px) {
  .post-return-metriken-verstehen-hero {
    padding: 6rem 0;
  }

  .post-return-metriken-verstehen-hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .post-return-metriken-verstehen-hero-title {
    font-size: 3rem;
  }

  .post-return-metriken-verstehen-article {
    padding: 6rem 0;
  }

  .post-return-metriken-verstehen-section-title {
    font-size: 2rem;
  }

  .post-return-metriken-verstehen-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 767px) {
  .post-return-metriken-verstehen-breadcrumbs {
    padding: 1rem 0;
  }

  .post-return-metriken-verstehen-hero {
    padding: 2rem 0;
  }

  .post-return-metriken-verstehen-hero-title {
    font-size: 1.75rem;
  }

  .post-return-metriken-verstehen-hero-lead {
    font-size: 1rem;
  }

  .post-return-metriken-verstehen-article {
    padding: 2rem 0;
  }

  .post-return-metriken-verstehen-section-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .post-return-metriken-verstehen-section-text {
    font-size: 0.95rem;
  }

  .post-return-metriken-verstehen-highlight-box {
    padding: 1rem;
    gap: 0.75rem;
  }

  .post-return-metriken-verstehen-summary-box {
    padding: 1.5rem;
  }

  .post-return-metriken-verstehen-related {
    padding: 2rem 0;
  }

  .post-return-metriken-verstehen-related-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .post-return-metriken-verstehen-disclaimer {
    padding: 1.5rem;
  }

  .post-return-metriken-verstehen-disclaimer-content {
    gap: 1rem;
  }

  .post-return-metriken-verstehen-related-title {
    font-size: 1.5rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

.post-geopolitische-auswirkungen {
      background: var(--color-bg-light-primary);
      color: var(--color-text-dark);
    }

    .geopolitische-auswirkungen-breadcrumbs {
      background: var(--color-bg-light-secondary);
      padding: 1rem 0;
      border-bottom: 1px solid #e2e8f0;
    }

    .geopolitische-auswirkungen-breadcrumbs a {
      color: var(--color-primary);
      font-size: 0.875rem;
      transition: color 0.3s ease;
    }

    .geopolitische-auswirkungen-breadcrumbs a:hover {
      color: var(--color-primary-hover);
    }

    .geopolitische-auswirkungen-breadcrumbs span {
      color: var(--color-text-dark-muted);
      margin: 0 0.5rem;
    }

    .geopolitische-auswirkungen-hero {
      padding: 4rem 0;
    }

    @media (min-width: 768px) {
      .geopolitische-auswirkungen-hero {
        padding: 6rem 0;
      }
    }

    @media (min-width: 1024px) {
      .geopolitische-auswirkungen-hero {
        padding: 8rem 0;
      }
    }

    .geopolitische-auswirkungen-hero-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      align-items: center;
    }

    @media (min-width: 768px) {
      .geopolitische-auswirkungen-hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
      }
    }

    .geopolitische-auswirkungen-hero h1 {
      color: var(--color-text-dark);
      font-size: 2.25rem;
      margin-bottom: 1rem;
      line-height: 1.2;
    }

    @media (min-width: 768px) {
      .geopolitische-auswirkungen-hero h1 {
        font-size: 2.5rem;
      }
    }

    @media (min-width: 1024px) {
      .geopolitische-auswirkungen-hero h1 {
        font-size: 3rem;
      }
    }

    .geopolitische-auswirkungen-hero-subtitle {
      color: var(--color-text-dark-secondary);
      font-size: 1.125rem;
      line-height: 1.7;
      margin-bottom: 2rem;
    }

    .geopolitische-auswirkungen-hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      margin-bottom: 2rem;
      padding-bottom: 2rem;
      border-bottom: 2px solid #e2e8f0;
    }

    .geopolitische-auswirkungen-meta-item {
      display: flex;
      flex-direction: column;
      gap: 0.25rem;
    }

    .geopolitische-auswirkungen-meta-label {
      color: var(--color-text-dark-muted);
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 1px;
      font-weight: 600;
    }

    .geopolitische-auswirkungen-meta-value {
      color: var(--color-text-dark);
      font-size: 1rem;
      font-weight: 600;
    }

    .geopolitische-auswirkungen-hero-image {
      width: 100%;
      height: 350px;
      object-fit: cover;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-lg);
    }

    @media (min-width: 768px) {
      .geopolitische-auswirkungen-hero-image {
        height: 400px;
      }
    }

    @media (min-width: 1024px) {
      .geopolitische-auswirkungen-hero-image {
        height: 450px;
      }
    }

    .geopolitische-auswirkungen-content-wrapper {
      padding: 3rem 0;
    }

    @media (min-width: 768px) {
      .geopolitische-auswirkungen-content-wrapper {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .geopolitische-auswirkungen-content-wrapper {
        padding: 6rem 0;
      }
    }

    .geopolitische-auswirkungen-section {
      margin-bottom: 4rem;
    }

    @media (min-width: 768px) {
      .geopolitische-auswirkungen-section {
        margin-bottom: 5rem;
      }
    }

    .geopolitische-auswirkungen-section h2 {
      color: var(--color-text-dark);
      font-size: 1.875rem;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .geopolitische-auswirkungen-section h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .geopolitische-auswirkungen-section h2 {
        font-size: 2.5rem;
      }
    }

    .geopolitische-auswirkungen-section-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      align-items: center;
    }

    @media (min-width: 768px) {
      .geopolitische-auswirkungen-section-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
      }
    }

    .geopolitische-auswirkungen-section-text {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .geopolitische-auswirkungen-section-text p {
      color: var(--color-text-dark-secondary);
      font-size: 0.95rem;
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .geopolitische-auswirkungen-section-text p {
        font-size: 1rem;
      }
    }

    .geopolitische-auswirkungen-section-image {
      width: 100%;
      height: 300px;
      object-fit: cover;
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-md);
    }

    @media (min-width: 768px) {
      .geopolitische-auswirkungen-section-image {
        height: 350px;
      }
    }

    @media (min-width: 1024px) {
      .geopolitische-auswirkungen-section-image {
        height: 400px;
      }
    }

    .geopolitische-auswirkungen-highlight-box {
      background: #f0f7ff;
      border-left: 4px solid var(--color-primary);
      padding: 1.5rem;
      border-radius: var(--radius-lg);
      margin: 2rem 0;
    }

    @media (min-width: 768px) {
      .geopolitische-auswirkungen-highlight-box {
        padding: 2rem;
      }
    }

    .geopolitische-auswirkungen-highlight-box h3 {
      color: var(--color-primary);
      font-size: 1.25rem;
      margin-bottom: 0.75rem;
    }

    .geopolitische-auswirkungen-highlight-box p {
      color: var(--color-text-dark-secondary);
      font-size: 0.95rem;
      margin: 0;
      line-height: 1.7;
    }

    .geopolitische-auswirkungen-quote {
      background: var(--color-bg-light-secondary);
      border-left: 5px solid var(--color-secondary);
      padding: 2rem;
      margin: 3rem 0;
      border-radius: var(--radius-lg);
      font-style: italic;
      color: var(--color-text-dark);
      font-size: 1.1rem;
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .geopolitische-auswirkungen-quote {
        padding: 2.5rem;
        font-size: 1.25rem;
      }
    }

    .geopolitische-auswirkungen-list {
      list-style: none;
      margin: 2rem 0;
    }

    .geopolitische-auswirkungen-list li {
      color: var(--color-text-dark-secondary);
      font-size: 0.95rem;
      margin-bottom: 1rem;
      padding-left: 2rem;
      position: relative;
      line-height: 1.7;
    }

    @media (min-width: 768px) {
      .geopolitische-auswirkungen-list li {
        font-size: 1rem;
      }
    }

    .geopolitische-auswirkungen-list li::before {
      content: '';
      position: absolute;
      left: 0;
      color: var(--color-secondary);
      font-weight: 700;
      font-size: 1.25rem;
    }

    .geopolitische-auswirkungen-disclaimer {
      background: #fef3c7;
      border-left: 4px solid var(--color-accent-gold);
      padding: 1.5rem;
      border-radius: var(--radius-lg);
      margin: 4rem 0 3rem;
    }

    @media (min-width: 768px) {
      .geopolitische-auswirkungen-disclaimer {
        padding: 2rem;
      }
    }

    .geopolitische-auswirkungen-disclaimer h3 {
      color: #92400e;
      font-size: 1.125rem;
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .geopolitische-auswirkungen-disclaimer h3::before {
      content: '';
      font-size: 1.5rem;
    }

    .geopolitische-auswirkungen-disclaimer p {
      color: #78350f;
      font-size: 0.9rem;
      margin: 0;
      line-height: 1.7;
    }

    .geopolitische-auswirkungen-related {
      background: var(--color-bg-light-secondary);
      padding: 4rem 0;
      margin-top: 5rem;
      border-top: 2px solid #e2e8f0;
    }

    @media (min-width: 768px) {
      .geopolitische-auswirkungen-related {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .geopolitische-auswirkungen-related {
        padding: 6rem 0;
      }
    }

    .geopolitische-auswirkungen-related h2 {
      color: var(--color-text-dark);
      font-size: 1.875rem;
      margin-bottom: 3rem;
      text-align: center;
    }

    @media (min-width: 768px) {
      .geopolitische-auswirkungen-related h2 {
        font-size: 2.25rem;
      }
    }

    .geopolitische-auswirkungen-related-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .geopolitische-auswirkungen-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
      }
    }

    @media (min-width: 1024px) {
      .geopolitische-auswirkungen-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
      }
    }

    .geopolitische-auswirkungen-related-card {
      background: var(--color-bg-light-primary);
      border-radius: var(--radius-xl);
      border: 2px solid #e2e8f0;
      overflow: hidden;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .geopolitische-auswirkungen-related-card:hover {
      border-color: var(--color-primary);
      box-shadow: var(--shadow-lg);
      transform: translateY(-8px);
    }

    .geopolitische-auswirkungen-related-card-content {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    @media (min-width: 768px) {
      .geopolitische-auswirkungen-related-card-content {
        padding: 2rem;
      }
    }

    .geopolitische-auswirkungen-related-card h3 {
      color: var(--color-text-dark);
      font-size: 1.125rem;
      margin: 0;
      line-height: 1.4;
    }

    @media (min-width: 768px) {
      .geopolitische-auswirkungen-related-card h3 {
        font-size: 1.25rem;
      }
    }

    .geopolitische-auswirkungen-related-card p {
      color: var(--color-text-dark-secondary);
      font-size: 0.85rem;
      margin: 0;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .geopolitische-auswirkungen-related-card p {
        font-size: 0.9rem;
      }
    }

    .geopolitische-auswirkungen-related-link {
      color: var(--color-primary);
      font-weight: 600;
      font-size: 0.9rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
      text-decoration: none;
      transition: all 0.3s ease;
      margin-top: auto;
    }

    .geopolitische-auswirkungen-related-link:hover {
      color: var(--color-primary-hover);
      gap: 0.75rem;
    }

    .geopolitische-auswirkungen-related-link::after {
      content: '';
    }

    @media (max-width: 767px) {
      .geopolitische-auswirkungen-hero-content {
        gap: 1.5rem;
      }

      .geopolitische-auswirkungen-section-content {
        gap: 1.5rem;
      }

      .geopolitische-auswirkungen-hero h1 {
        font-size: 1.875rem;
      }

      .geopolitische-auswirkungen-section h2 {
        font-size: 1.5rem;
      }

      .geopolitische-auswirkungen-hero-image,
      .geopolitische-auswirkungen-section-image {
        height: 250px;
      }
    }

.post-marktforschung-durchfuehren {
      background: var(--color-bg-light-primary);
    }

    .post-marktforschung-durchfuehren .marktforschung-durchfuehren-breadcrumbs {
      padding: 1.5rem 0;
      font-size: 0.875rem;
    }

    .post-marktforschung-durchfuehren .marktforschung-durchfuehren-breadcrumbs a {
      color: var(--color-primary);
      transition: color 0.3s ease;
    }

    .post-marktforschung-durchfuehren .marktforschung-durchfuehren-breadcrumbs a:hover {
      color: var(--color-primary-hover);
    }

    .post-marktforschung-durchfuehren .marktforschung-durchfuehren-breadcrumbs span {
      color: var(--color-text-dark-muted);
      margin: 0 0.5rem;
    }

    .marktforschung-durchfuehren-hero-section {
      background: var(--color-bg-light-primary);
      padding: 4rem 0;
      border-bottom: 1px solid #e2e8f0;
    }

    @media (min-width: 768px) {
      .marktforschung-durchfuehren-hero-section {
        padding: 6rem 0;
      }
    }

    @media (min-width: 1024px) {
      .marktforschung-durchfuehren-hero-section {
        padding: 8rem 0;
      }
    }

    .marktforschung-durchfuehren-hero {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .marktforschung-durchfuehren-hero h1 {
      color: var(--color-text-dark);
      font-size: 2.25rem;
      margin: 0 0 1rem 0;
    }

    @media (min-width: 768px) {
      .marktforschung-durchfuehren-hero h1 {
        font-size: 2.75rem;
      }
    }

    @media (min-width: 1024px) {
      .marktforschung-durchfuehren-hero h1 {
        font-size: 3.5rem;
      }
    }

    .marktforschung-durchfuehren-hero-meta {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
      color: var(--color-text-dark-secondary);
      font-size: 0.95rem;
    }

    .marktforschung-durchfuehren-featured-image {
      width: 100%;
      height: 300px;
      border-radius: var(--radius-xl);
      object-fit: cover;
      border: 1px solid #e2e8f0;
    }

    @media (min-width: 768px) {
      .marktforschung-durchfuehren-featured-image {
        height: 400px;
      }
    }

    @media (min-width: 1024px) {
      .marktforschung-durchfuehren-featured-image {
        height: 450px;
      }
    }

    .marktforschung-durchfuehren-content-wrapper {
      background: var(--color-bg-light-primary);
      padding: 4rem 0;
    }

    @media (min-width: 768px) {
      .marktforschung-durchfuehren-content-wrapper {
        padding: 6rem 0;
      }
    }

    @media (min-width: 1024px) {
      .marktforschung-durchfuehren-content-wrapper {
        padding: 8rem 0;
      }
    }

    .marktforschung-durchfuehren-article-body {
      max-width: 800px;
      margin: 0 auto;
      padding: 0 1rem;
    }

    .marktforschung-durchfuehren-article-section {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      margin-bottom: 4rem;
    }

    @media (min-width: 768px) {
      .marktforschung-durchfuehren-article-section {
        margin-bottom: 5rem;
      }
    }

    .marktforschung-durchfuehren-article-section h2 {
      color: var(--color-text-dark);
      font-size: 1.875rem;
      margin: 0 0 1rem 0;
    }

    @media (min-width: 768px) {
      .marktforschung-durchfuehren-article-section h2 {
        font-size: 2.25rem;
      }
    }

    .marktforschung-durchfuehren-article-section p {
      color: var(--color-text-dark-secondary);
      font-size: 1rem;
      line-height: 1.8;
      margin: 0 0 1.5rem 0;
    }

    @media (min-width: 768px) {
      .marktforschung-durchfuehren-article-section p {
        font-size: 1.0625rem;
      }
    }

    .marktforschung-durchfuehren-section-image {
      width: 100%;
      height: 280px;
      border-radius: var(--radius-xl);
      object-fit: cover;
      border: 1px solid #e2e8f0;
    }

    @media (min-width: 768px) {
      .marktforschung-durchfuehren-section-image {
        height: 350px;
      }
    }

    @media (min-width: 1024px) {
      .marktforschung-durchfuehren-section-image {
        height: 380px;
      }
    }

    .marktforschung-durchfuehren-highlight-box {
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(6, 182, 212, 0.06) 100%);
      border-left: 4px solid var(--color-primary);
      padding: 1.5rem;
      border-radius: var(--radius-lg);
      margin: 2rem 0;
    }

    @media (min-width: 768px) {
      .marktforschung-durchfuehren-highlight-box {
        padding: 2rem;
      }
    }

    .marktforschung-durchfuehren-highlight-box h3 {
      color: var(--color-primary);
      font-size: 1.25rem;
      margin: 0 0 0.75rem 0;
    }

    .marktforschung-durchfuehren-highlight-box p {
      color: var(--color-text-dark-secondary);
      margin: 0;
      font-size: 0.95rem;
    }

    .marktforschung-durchfuehren-list {
      margin: 2rem 0;
    }

    .marktforschung-durchfuehren-list li {
      color: var(--color-text-dark-secondary);
      font-size: 0.95rem;
      line-height: 1.8;
      margin-bottom: 1rem;
      display: flex;
      gap: 1rem;
    }

    .marktforschung-durchfuehren-list .fas {
      color: var(--color-secondary);
      margin-top: 0.25rem;
      flex-shrink: 0;
    }

    .marktforschung-durchfuehren-disclaimer-section {
      background: #f0f4f8;
      border: 2px solid #cbd5e1;
      border-radius: var(--radius-xl);
      padding: 2rem;
      margin: 4rem 0;
    }

    @media (min-width: 768px) {
      .marktforschung-durchfuehren-disclaimer-section {
        padding: 2.5rem;
      }
    }

    .marktforschung-durchfuehren-disclaimer-section h3 {
      color: var(--color-text-dark);
      font-size: 1.25rem;
      margin: 0 0 1rem 0;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .marktforschung-durchfuehren-disclaimer-section h3 .fas {
      color: var(--color-primary);
      font-size: 1.5rem;
    }

    .marktforschung-durchfuehren-disclaimer-section p {
      color: var(--color-text-dark-secondary);
      margin: 0.75rem 0;
      font-size: 0.95rem;
      line-height: 1.7;
    }

    .marktforschung-durchfuehren-related-section {
      background: var(--color-bg-light-secondary);
      padding: 4rem 0;
      border-top: 1px solid #e2e8f0;
    }

    @media (min-width: 768px) {
      .marktforschung-durchfuehren-related-section {
        padding: 6rem 0;
      }
    }

    @media (min-width: 1024px) {
      .marktforschung-durchfuehren-related-section {
        padding: 8rem 0;
      }
    }

    .marktforschung-durchfuehren-related-header {
      text-align: center;
      margin-bottom: 3rem;
    }

    .marktforschung-durchfuehren-related-header h2 {
      color: var(--color-text-dark);
      font-size: 2rem;
      margin: 0 0 0.5rem 0;
    }

    @media (min-width: 768px) {
      .marktforschung-durchfuehren-related-header h2 {
        font-size: 2.25rem;
      }
    }

    .marktforschung-durchfuehren-related-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .marktforschung-durchfuehren-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
      }
    }

    @media (min-width: 1024px) {
      .marktforschung-durchfuehren-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 3rem;
      }
    }

    .marktforschung-durchfuehren-related-card {
      background: var(--color-bg-light-primary);
      border: 1px solid #e2e8f0;
      border-radius: var(--radius-xl);
      overflow: hidden;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .marktforschung-durchfuehren-related-card:hover {
      border-color: var(--color-primary);
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }

    .marktforschung-durchfuehren-related-card-image {
      width: 100%;
      height: 180px;
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.1) 0%, rgba(6, 182, 212, 0.1) 100%);
      object-fit: cover;
    }

    .marktforschung-durchfuehren-related-card-content {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      flex: 1;
    }

    @media (min-width: 768px) {
      .marktforschung-durchfuehren-related-card-content {
        padding: 2rem;
      }
    }

    .marktforschung-durchfuehren-related-card h3 {
      color: var(--color-text-dark);
      font-size: 1.25rem;
      margin: 0;
    }

    .marktforschung-durchfuehren-related-card p {
      color: var(--color-text-dark-secondary);
      font-size: 0.9rem;
      line-height: 1.6;
      margin: 0;
    }

    .marktforschung-durchfuehren-related-link {
      color: var(--color-primary);
      font-weight: 600;
      font-size: 0.9rem;
      margin-top: 0.5rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.3s ease;
    }

    .marktforschung-durchfuehren-related-link:hover {
      color: var(--color-primary-hover);
      gap: 0.75rem;
    }

    .marktforschung-durchfuehren-related-link .fas {
      font-size: 0.75rem;
    }

    @media (max-width: 767px) {
      .marktforschung-durchfuehren-article-body {
        padding: 0;
      }

      .marktforschung-durchfuehren-hero-section {
        padding: 2rem 0;
      }

      .marktforschung-durchfuehren-content-wrapper {
        padding: 2rem 0;
      }

      .marktforschung-durchfuehren-article-section {
        margin-bottom: 3rem;
      }

      .marktforschung-durchfuehren-disclaimer-section {
        padding: 1.5rem;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
    }

:root {
      --color-bg-dark-primary: #0a0f1e;
      --color-bg-dark-secondary: #0f1729;
      --color-bg-light-primary: #ffffff;
      --color-bg-light-secondary: #f8fafc;
      --color-text-light: #ffffff;
      --color-text-light-secondary: #e2e8f0;
      --color-text-light-muted: #94a3b8;
      --color-text-dark: #0f172a;
      --color-text-dark-secondary: #374151;
      --color-primary: #3b82f6;
      --color-primary-hover: #2563eb;
      --color-secondary: #06b6d4;
      --color-accent-gold: #f59e0b;
      --color-accent-green: #10b981;
      --font-primary: 'Inter', sans-serif;
      --font-heading: 'Playfair Display', serif;
      --radius-md: 8px;
      --radius-lg: 12px;
    }

    .post-finanzielle-ziele-setzen {
      background: var(--color-bg-light-primary);
    }

    .post-finanzielle-ziele-setzen .container {
      max-width: 1440px;
      width: 100%;
      margin: 0 auto;
      padding: 0 20px;
    }

    .finanzielle-ziele-setzen-breadcrumbs {
      background: var(--color-bg-light-secondary);
      padding: 1rem 0;
      margin-bottom: 2rem;
      border-bottom: 1px solid #e5e7eb;
    }

    .finanzielle-ziele-setzen-breadcrumb-list {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      list-style: none;
      font-size: 0.875rem;
    }

    .finanzielle-ziele-setzen-breadcrumb-list li {
      color: var(--color-text-dark-secondary);
    }

    .finanzielle-ziele-setzen-breadcrumb-list li a {
      color: var(--color-primary);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .finanzielle-ziele-setzen-breadcrumb-list li a:hover {
      color: var(--color-primary-hover);
    }

    .finanzielle-ziele-setzen-breadcrumb-list li:not(:last-child)::after {
      content: '/';
      color: #d1d5db;
      margin-left: 0.75rem;
    }

    .finanzielle-ziele-setzen-hero {
      padding: 4rem 0;
      background: var(--color-bg-light-primary);
    }

    .finanzielle-ziele-setzen-hero-content {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      align-items: center;
    }

    .finanzielle-ziele-setzen-hero h1 {
      font-family: var(--font-heading);
      font-size: 3.75rem;
      font-weight: 700;
      color: var(--color-text-dark);
      line-height: 1.1;
      margin-bottom: 1.5rem;
      letter-spacing: -0.5px;
    }

    .finanzielle-ziele-setzen-hero-meta {
      display: flex;
      gap: 1.5rem;
      color: var(--color-text-dark-secondary);
      font-size: 0.9rem;
      margin-bottom: 1.5rem;
    }

    .finanzielle-ziele-setzen-hero-image {
      width: 100%;
      height: auto;
      border-radius: var(--radius-lg);
      object-fit: cover;
      display: block;
      margin-top: 2rem;
    }

    .finanzielle-ziele-setzen-lead {
      font-size: 1.125rem;
      line-height: 1.8;
      color: var(--color-text-dark-secondary);
      max-width: 700px;
      margin-bottom: 2rem;
    }

    .finanzielle-ziele-setzen-content {
      padding: 3rem 0;
    }

    .finanzielle-ziele-setzen-section {
      margin-bottom: 4rem;
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      align-items: center;
    }

    .finanzielle-ziele-setzen-section:nth-child(even) {
      grid-template-columns: 1fr;
    }

    .finanzielle-ziele-setzen-section h2 {
      font-family: var(--font-heading);
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--color-text-dark);
      line-height: 1.2;
      margin-bottom: 1.5rem;
      letter-spacing: -0.5px;
    }

    .finanzielle-ziele-setzen-section h3 {
      font-family: var(--font-heading);
      font-size: 1.875rem;
      font-weight: 700;
      color: var(--color-text-dark);
      line-height: 1.2;
      margin: 1.5rem 0 1rem;
      letter-spacing: -0.3px;
    }

    .finanzielle-ziele-setzen-section p {
      font-size: 1rem;
      line-height: 1.8;
      color: var(--color-text-dark-secondary);
      margin-bottom: 1rem;
    }

    .finanzielle-ziele-setzen-section ul {
      margin: 1.5rem 0 1.5rem 2rem;
      list-style: disc;
    }

    .finanzielle-ziele-setzen-section li {
      font-size: 1rem;
      line-height: 1.8;
      color: var(--color-text-dark-secondary);
      margin-bottom: 0.75rem;
    }

    .finanzielle-ziele-setzen-image {
      width: 100%;
      height: auto;
      border-radius: var(--radius-lg);
      object-fit: cover;
      display: block;
      margin: 2rem 0;
    }

    .finanzielle-ziele-setzen-highlight {
      background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
      border-left: 4px solid var(--color-primary);
      padding: 1.5rem;
      border-radius: var(--radius-md);
      margin: 2rem 0;
    }

    .finanzielle-ziele-setzen-highlight h4 {
      font-family: var(--font-heading);
      font-size: 1.25rem;
      color: var(--color-text-dark);
      margin-bottom: 0.75rem;
    }

    .finanzielle-ziele-setzen-highlight p {
      font-size: 0.95rem;
      line-height: 1.7;
      color: var(--color-text-dark-secondary);
      margin: 0;
    }

    .finanzielle-ziele-setzen-quote {
      background: var(--color-bg-light-secondary);
      border-left: 5px solid var(--color-accent-gold);
      padding: 2rem;
      margin: 3rem 0;
      border-radius: var(--radius-md);
      font-style: italic;
      font-size: 1.1rem;
      line-height: 1.8;
      color: var(--color-text-dark);
    }

    .finanzielle-ziele-setzen-disclaimer {
      background: #fef3c7;
      border: 1px solid #fcd34d;
      border-radius: var(--radius-lg);
      padding: 2rem;
      margin: 3rem 0;
    }

    .finanzielle-ziele-setzen-disclaimer h3 {
      font-size: 1.25rem;
      color: #92400e;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .finanzielle-ziele-setzen-disclaimer p {
      font-size: 0.95rem;
      line-height: 1.7;
      color: #78350f;
      margin: 0;
    }

    .finanzielle-ziele-setzen-related {
      padding: 4rem 0;
      border-top: 2px solid #e5e7eb;
      margin-top: 4rem;
    }

    .finanzielle-ziele-setzen-related h2 {
      font-family: var(--font-heading);
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--color-text-dark);
      margin-bottom: 3rem;
      text-align: center;
    }

    .finanzielle-ziele-setzen-related-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 2rem;
    }

    .finanzielle-ziele-setzen-related-card {
      background: var(--color-bg-light-secondary);
      border-radius: var(--radius-lg);
      padding: 2rem;
      border: 1px solid #e5e7eb;
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .finanzielle-ziele-setzen-related-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      border-color: var(--color-primary);
    }

    .finanzielle-ziele-setzen-related-card h3 {
      font-family: var(--font-heading);
      font-size: 1.25rem;
      color: var(--color-text-dark);
      margin: 0;
    }

    .finanzielle-ziele-setzen-related-card p {
      font-size: 0.9rem;
      line-height: 1.6;
      color: var(--color-text-dark-secondary);
      margin: 0;
      flex-grow: 1;
    }

    .finanzielle-ziele-setzen-related-link {
      color: var(--color-primary);
      text-decoration: none;
      font-weight: 600;
      font-size: 0.9rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: color 0.3s ease;
    }

    .finanzielle-ziele-setzen-related-link:hover {
      color: var(--color-primary-hover);
    }

    @media (min-width: 768px) {
      .finanzielle-ziele-setzen-hero {
        padding: 5rem 0;
      }

      .finanzielle-ziele-setzen-hero h1 {
        font-size: 3.5rem;
      }

      .finanzielle-ziele-setzen-section {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
      }

      .finanzielle-ziele-setzen-section:nth-child(even) .finanzielle-ziele-setzen-section-text {
        order: 2;
      }

      .finanzielle-ziele-setzen-section:nth-child(even) .finanzielle-ziele-setzen-image {
        order: 1;
        margin: 0;
      }

      .finanzielle-ziele-setzen-content {
        padding: 4rem 0;
      }

      .finanzielle-ziele-setzen-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
      }
    }

    @media (min-width: 1024px) {
      .finanzielle-ziele-setzen-hero {
        padding: 6rem 0;
      }

      .finanzielle-ziele-setzen-hero h1 {
        font-size: 3.75rem;
      }

      .finanzielle-ziele-setzen-section h2 {
        font-size: 2.5rem;
      }

      .finanzielle-ziele-setzen-content {
        padding: 5rem 0;
      }
    }

    @media (max-width: 767px) {
      .finanzielle-ziele-setzen-hero {
        padding: 2.5rem 0;
      }

      .finanzielle-ziele-setzen-hero h1 {
        font-size: 2.25rem;
      }

      .finanzielle-ziele-setzen-hero-meta {
        flex-direction: column;
        gap: 0.5rem;
      }

      .finanzielle-ziele-setzen-lead {
        font-size: 1rem;
      }

      .finanzielle-ziele-setzen-section {
        margin-bottom: 2.5rem;
      }

      .finanzielle-ziele-setzen-section h2 {
        font-size: 1.75rem;
      }

      .finanzielle-ziele-setzen-section p {
        font-size: 0.95rem;
      }

      .finanzielle-ziele-setzen-content {
        padding: 2rem 0;
      }

      .finanzielle-ziele-setzen-quote {
        padding: 1.5rem;
        font-size: 1rem;
      }

      .finanzielle-ziele-setzen-disclaimer {
        padding: 1.5rem;
      }

      .finanzielle-ziele-setzen-related {
        padding: 2.5rem 0;
      }

      .finanzielle-ziele-setzen-related h2 {
        font-size: 1.75rem;
      }

      .finanzielle-ziele-setzen-related-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
      }
    }

.post-lernressourcen-nutzen {
  width: 100%;
}

.lernressourcen-nutzen-breadcrumbs-section {
  background: var(--color-bg-light-secondary);
  padding: 1.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.lernressourcen-nutzen-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.lernressourcen-nutzen-breadcrumbs a {
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.lernressourcen-nutzen-breadcrumbs a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.lernressourcen-nutzen-breadcrumbs span {
  color: var(--color-text-dark-muted);
}

.lernressourcen-nutzen-hero {
  background: var(--color-bg-light-primary);
  padding: 4rem 0;
  overflow: hidden;
}

.lernressourcen-nutzen-hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.lernressourcen-nutzen-hero h1 {
  color: var(--color-text-dark);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.lernressourcen-nutzen-lead {
  color: var(--color-text-dark-secondary);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.lernressourcen-nutzen-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  font-size: 0.9rem;
  color: var(--color-text-dark-muted);
}

.lernressourcen-nutzen-hero-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.lernressourcen-nutzen-hero-meta .fas {
  color: var(--color-primary);
}

.lernressourcen-nutzen-hero-image {
  width: 100%;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.lernressourcen-nutzen-hero-image img {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

.lernressourcen-nutzen-content-1,
.lernressourcen-nutzen-content-2,
.lernressourcen-nutzen-content-3,
.lernressourcen-nutzen-content-4 {
  background: var(--color-bg-light-primary);
  padding: 3rem 0;
  overflow: hidden;
}

.lernressourcen-nutzen-content-2 {
  background: var(--color-bg-light-secondary);
}

.lernressourcen-nutzen-content-4 {
  background: var(--color-bg-light-secondary);
}

.lernressourcen-nutzen-section-content h2 {
  color: var(--color-text-dark);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.lernressourcen-nutzen-section-content p {
  color: var(--color-text-dark-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.lernressourcen-nutzen-highlight-box {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.05) 0%, rgba(6, 182, 212, 0.05) 100%);
  border-left: 4px solid var(--color-primary);
  padding: 2rem;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
}

.lernressourcen-nutzen-highlight-box h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

.lernressourcen-nutzen-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lernressourcen-nutzen-list li {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  padding-left: 1.5rem;
  position: relative;
}

.lernressourcen-nutzen-list li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: bold;
}

.lernressourcen-nutzen-content-image,
.lernressourcen-nutzen-content-image-alt,
.lernressourcen-nutzen-content-image-wide {
  margin: 2rem 0;
  overflow: hidden;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-md);
}

.lernressourcen-nutzen-content-image img,
.lernressourcen-nutzen-content-image-alt img,
.lernressourcen-nutzen-content-image-wide img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

.lernressourcen-nutzen-quote-section {
  margin: 2.5rem 0;
  padding: 2rem;
  border-left: 4px solid var(--color-primary);
  background: rgba(59, 130, 246, 0.05);
  border-radius: var(--radius-lg);
}

.lernressourcen-nutzen-quote {
  color: var(--color-text-dark);
  font-size: 1.1rem;
  font-style: italic;
  line-height: 1.8;
  margin: 0;
  font-weight: 500;
}

.lernressourcen-nutzen-resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin: 2.5rem 0;
}

.lernressourcen-nutzen-resource-card {
  background: var(--color-bg-light-primary);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 2px solid #e2e8f0;
  transition: all 0.3s ease;
}

.lernressourcen-nutzen-resource-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.lernressourcen-nutzen-resource-card h3 {
  color: var(--color-text-dark);
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lernressourcen-nutzen-resource-card .fas {
  color: var(--color-primary);
  font-size: 1.25rem;
}

.lernressourcen-nutzen-resource-card p {
  color: var(--color-text-dark-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.lernressourcen-nutzen-disclaimer {
  background: linear-gradient(135deg, rgba(59, 130, 246, 0.08) 0%, rgba(6, 182, 212, 0.08) 100%);
  padding: 3rem 0;
  border-top: 2px solid rgba(59, 130, 246, 0.2);
  border-bottom: 2px solid rgba(59, 130, 246, 0.2);
  overflow: hidden;
}

.lernressourcen-nutzen-disclaimer-content {
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border-left: 4px solid var(--color-secondary);
}

.lernressourcen-nutzen-disclaimer h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lernressourcen-nutzen-disclaimer .fas {
  color: var(--color-secondary);
  font-size: 1.5rem;
}

.lernressourcen-nutzen-disclaimer p {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.lernressourcen-nutzen-related {
  background: var(--color-bg-light-primary);
  padding: 4rem 0;
  overflow: hidden;
}

.lernressourcen-nutzen-related-content h2 {
  color: var(--color-text-dark);
  text-align: center;
  font-size: 2rem;
  margin-bottom: 2.5rem;
}

.lernressourcen-nutzen-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.lernressourcen-nutzen-related-card {
  background: var(--color-bg-light-secondary);
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.lernressourcen-nutzen-related-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.lernressourcen-nutzen-related-header {
  border-bottom: 2px solid rgba(59, 130, 246, 0.2);
  padding-bottom: 1rem;
}

.lernressourcen-nutzen-related-card h3 {
  color: var(--color-text-dark);
  font-size: 1.15rem;
  margin: 0;
}

.lernressourcen-nutzen-related-card p {
  color: var(--color-text-dark-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.lernressourcen-nutzen-related-link {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  transition: all 0.3s ease;
}

.lernressourcen-nutzen-related-link:hover {
  color: var(--color-primary-hover);
  gap: 0.75rem;
}

.lernressourcen-nutzen-related-link .fas {
  font-size: 0.85rem;
}

@media (min-width: 768px) {
  .lernressourcen-nutzen-hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .lernressourcen-nutzen-hero h1 {
    font-size: 3rem;
  }

  .lernressourcen-nutzen-hero-image img {
    height: 400px;
  }

  .lernressourcen-nutzen-section-content h2 {
    font-size: 2.25rem;
  }

  .lernressourcen-nutzen-content-image img,
  .lernressourcen-nutzen-content-image-alt img {
    height: 350px;
  }

  .lernressourcen-nutzen-content-image-wide img {
    height: 400px;
  }

  .lernressourcen-nutzen-resources-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .lernressourcen-nutzen-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .lernressourcen-nutzen-hero {
    padding: 5rem 0;
  }

  .lernressourcen-nutzen-hero-image img {
    height: 450px;
  }

  .lernressourcen-nutzen-content-1,
  .lernressourcen-nutzen-content-2,
  .lernressourcen-nutzen-content-3,
  .lernressourcen-nutzen-content-4 {
    padding: 4rem 0;
  }

  .lernressourcen-nutzen-related {
    padding: 5rem 0;
  }
}

@media (max-width: 767px) {
  .lernressourcen-nutzen-breadcrumbs {
    font-size: 0.8rem;
    gap: 0.5rem;
  }

  .lernressourcen-nutzen-hero {
    padding: 2rem 0;
  }

  .lernressourcen-nutzen-hero h1 {
    font-size: 1.75rem;
  }

  .lernressourcen-nutzen-lead {
    font-size: 1rem;
  }

  .lernressourcen-nutzen-hero-image img {
    height: 250px;
  }

  .lernressourcen-nutzen-section-content h2 {
    font-size: 1.5rem;
  }

  .lernressourcen-nutzen-section-content p {
    font-size: 0.9rem;
  }

  .lernressourcen-nutzen-content-1,
  .lernressourcen-nutzen-content-2,
  .lernressourcen-nutzen-content-3,
  .lernressourcen-nutzen-content-4 {
    padding: 2rem 0;
  }

  .lernressourcen-nutzen-highlight-box {
    padding: 1.5rem;
  }

  .lernressourcen-nutzen-content-image img,
  .lernressourcen-nutzen-content-image-alt img {
    height: 220px;
  }

  .lernressourcen-nutzen-content-image-wide img {
    height: 250px;
  }

  .lernressourcen-nutzen-resources-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .lernressourcen-nutzen-disclaimer {
    padding: 2rem 0;
  }

  .lernressourcen-nutzen-disclaimer-content {
    padding: 1.5rem;
  }

  .lernressourcen-nutzen-related {
    padding: 2rem 0;
  }

  .lernressourcen-nutzen-related-content h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .lernressourcen-nutzen-related-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .lernressourcen-nutzen-related-card {
    padding: 1.5rem;
  }

  .lernressourcen-nutzen-hero-meta {
    gap: 1rem;
    flex-direction: column;
  }

  .lernressourcen-nutzen-quote {
    font-size: 1rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lernressourcen-nutzen-resource-card,
  .lernressourcen-nutzen-related-card,
  .lernressourcen-nutzen-breadcrumbs a,
  .lernressourcen-nutzen-related-link {
    transition: none;
  }
}

.post-mentoring-coaching {
  background: var(--color-bg-light-primary);
}

.mentoring-coaching-hero {
  background: var(--color-bg-dark-primary);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.mentoring-coaching-hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.mentoring-coaching-hero::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -250px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.mentoring-coaching-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 2rem;
  font-size: 0.9rem;
  position: relative;
  z-index: 2;
}

.mentoring-coaching-breadcrumbs a {
  color: var(--color-text-light-secondary);
  transition: color 0.3s ease;
}

.mentoring-coaching-breadcrumbs a:hover {
  color: var(--color-text-light);
}

.mentoring-coaching-breadcrumbs .separator {
  color: var(--color-text-light-muted);
}

.mentoring-coaching-breadcrumbs .current {
  color: var(--color-primary-light);
  font-weight: 600;
}

.mentoring-coaching-hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.mentoring-coaching-hero-text h1 {
  color: var(--color-text-light);
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

.mentoring-coaching-hero-text .mentoring-coaching-lead {
  color: var(--color-text-light-secondary);
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.mentoring-coaching-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  color: var(--color-text-light-muted);
  font-size: 0.95rem;
}

.mentoring-coaching-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.mentoring-coaching-featured-image {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.mentoring-coaching-article {
  position: relative;
}

.mentoring-coaching-content-intro {
  background: var(--color-bg-light-primary);
  padding: 4rem 0;
}

.mentoring-coaching-content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.mentoring-coaching-content-intro p {
  color: var(--color-text-dark-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

.mentoring-coaching-section-image {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid #e2e8f0;
}

.mentoring-coaching-benefits {
  background: var(--color-bg-light-secondary);
  padding: 5rem 0;
}

.mentoring-coaching-benefits h2 {
  color: var(--color-text-dark);
  margin-bottom: 3rem;
  text-align: center;
}

.mentoring-coaching-benefit-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.mentoring-coaching-benefit-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.mentoring-coaching-benefit-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: var(--color-primary);
}

.mentoring-coaching-benefit-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-lg);
}

.mentoring-coaching-benefit-card h3 {
  color: var(--color-text-dark);
  font-size: 1.3rem;
  margin: 0;
}

.mentoring-coaching-benefit-card p {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.7;
}

.mentoring-coaching-types {
  background: var(--color-bg-light-primary);
  padding: 5rem 0;
}

.mentoring-coaching-types h2 {
  color: var(--color-text-dark);
  margin-bottom: 3rem;
}

.mentoring-coaching-type-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}

.mentoring-coaching-type-item.mentoring-coaching-type-reversed {
  grid-template-columns: 1fr 1fr;
}

.mentoring-coaching-type-item.mentoring-coaching-type-reversed .mentoring-coaching-type-text {
  order: 2;
}

.mentoring-coaching-type-item.mentoring-coaching-type-reversed .mentoring-coaching-type-image {
  order: 1;
}

.mentoring-coaching-type-text h3 {
  color: var(--color-text-dark);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.mentoring-coaching-type-text p {
  color: var(--color-text-dark-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.mentoring-coaching-type-image {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  border: 1px solid #e2e8f0;
}

.mentoring-coaching-finding {
  background: var(--color-bg-light-secondary);
  padding: 5rem 0;
}

.mentoring-coaching-finding h2 {
  color: var(--color-text-dark);
  margin-bottom: 2rem;
}

.mentoring-coaching-finding > .container > .mentoring-coaching-content-wrapper > p {
  color: var(--color-text-dark-secondary);
  font-size: 1.05rem;
  margin-bottom: 2rem;
}

.mentoring-coaching-finding-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.mentoring-coaching-finding-item {
  padding: 2rem;
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mentoring-coaching-finding-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1;
}

.mentoring-coaching-finding-item h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin: 0;
}

.mentoring-coaching-finding-item p {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.7;
}

.mentoring-coaching-quote-section {
  background: var(--color-bg-dark-secondary);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}

.mentoring-coaching-quote-section::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.mentoring-coaching-quote {
  position: relative;
  z-index: 2;
  text-align: center;
  margin: 0;
  padding: 3rem;
  border: none;
  font-style: italic;
}

.mentoring-coaching-quote p {
  color: var(--color-text-light);
  font-size: 1.75rem;
  line-height: 1.6;
  margin: 0;
  font-family: var(--font-heading);
  font-weight: 600;
}

.mentoring-coaching-expectations {
  background: var(--color-bg-light-primary);
  padding: 5rem 0;
}

.mentoring-coaching-expectations h2 {
  color: var(--color-text-dark);
  margin-bottom: 2rem;
}

.mentoring-coaching-expectations > .container > .mentoring-coaching-content-wrapper > p {
  color: var(--color-text-dark-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.mentoring-coaching-expectations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.mentoring-coaching-expectation-box {
  padding: 2rem;
  background: var(--color-bg-light-secondary);
  border-radius: var(--radius-lg);
  border: 2px solid #e2e8f0;
}

.mentoring-coaching-expectation-box:first-child {
  border-color: rgba(16, 185, 129, 0.3);
}

.mentoring-coaching-expectation-box:last-child {
  border-color: rgba(239, 68, 68, 0.3);
}

.mentoring-coaching-expectation-box h3 {
  color: var(--color-text-dark);
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mentoring-coaching-expectation-box:first-child h3 {
  color: var(--color-accent-green);
}

.mentoring-coaching-expectation-box:last-child h3 {
  color: #ef4444;
}

.mentoring-coaching-expectation-box ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.mentoring-coaching-expectation-box li {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  padding-left: 1.5rem;
  position: relative;
}

.mentoring-coaching-expectation-box:first-child li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-accent-green);
  font-weight: bold;
}

.mentoring-coaching-expectation-box:last-child li::before {
  content: '';
  position: absolute;
  left: 0;
  color: #ef4444;
  font-weight: bold;
}

.mentoring-coaching-disclaimer {
  background: rgba(59, 130, 246, 0.08);
  padding: 3rem 0;
  border-top: 2px solid rgba(59, 130, 246, 0.2);
  border-bottom: 2px solid rgba(59, 130, 246, 0.2);
}

.mentoring-coaching-disclaimer-content {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}

.mentoring-coaching-disclaimer-icon {
  font-size: 2rem;
  color: var(--color-primary);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.mentoring-coaching-disclaimer-text h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.mentoring-coaching-disclaimer-text p {
  color: var(--color-text-dark-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

.mentoring-coaching-related {
  background: var(--color-bg-light-secondary);
  padding: 5rem 0;
}

.mentoring-coaching-related h2 {
  color: var(--color-text-dark);
  margin-bottom: 3rem;
  text-align: center;
}

.mentoring-coaching-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.mentoring-coaching-related-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: var(--color-bg-light-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.mentoring-coaching-related-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
  border-color: var(--color-primary);
}

.mentoring-coaching-related-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.mentoring-coaching-related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.mentoring-coaching-related-card:hover .mentoring-coaching-related-image img {
  transform: scale(1.05);
}

.mentoring-coaching-related-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.mentoring-coaching-related-content h3 {
  color: var(--color-text-dark);
  font-size: 1.25rem;
  margin: 0;
  line-height: 1.4;
}

.mentoring-coaching-related-content p {
  color: var(--color-text-dark-secondary);
  font-size: 0.9rem;
  margin: 0;
  line-height: 1.6;
}

.mentoring-coaching-related-link {
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: auto;
  transition: all 0.3s ease;
}

.mentoring-coaching-related-link:hover {
  color: var(--color-primary-hover);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .mentoring-coaching-hero {
    padding: 6rem 0;
  }

  .mentoring-coaching-hero-text h1 {
    font-size: 3rem;
  }

  .mentoring-coaching-hero-content {
    grid-template-columns: 1fr 1fr;
  }

  .mentoring-coaching-featured-image {
    max-height: 400px;
  }

  .mentoring-coaching-content-intro {
    padding: 5rem 0;
  }

  .mentoring-coaching-benefits {
    padding: 6rem 0;
  }

  .mentoring-coaching-benefit-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .mentoring-coaching-types {
    padding: 6rem 0;
  }

  .mentoring-coaching-type-item {
    grid-template-columns: 1fr 1fr;
  }

  .mentoring-coaching-finding {
    padding: 6rem 0;
  }

  .mentoring-coaching-finding-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .mentoring-coaching-quote-section {
    padding: 6rem 0;
  }

  .mentoring-coaching-quote p {
    font-size: 2rem;
  }

  .mentoring-coaching-expectations {
    padding: 6rem 0;
  }

  .mentoring-coaching-related {
    padding: 6rem 0;
  }

  .mentoring-coaching-related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .mentoring-coaching-hero {
    padding: 7rem 0;
  }

  .mentoring-coaching-hero-text h1 {
    font-size: 3.5rem;
  }

  .mentoring-coaching-featured-image {
    max-height: 450px;
  }

  .mentoring-coaching-content-intro {
    padding: 6rem 0;
  }

  .mentoring-coaching-benefits {
    padding: 7rem 0;
  }

  .mentoring-coaching-benefit-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .mentoring-coaching-types {
    padding: 7rem 0;
  }

  .mentoring-coaching-finding {
    padding: 7rem 0;
  }

  .mentoring-coaching-finding-list {
    grid-template-columns: repeat(3, 1fr);
  }

  .mentoring-coaching-quote-section {
    padding: 7rem 0;
  }

  .mentoring-coaching-expectations {
    padding: 7rem 0;
  }

  .mentoring-coaching-related {
    padding: 7rem 0;
  }
}

@media (max-width: 767px) {
  .mentoring-coaching-hero {
    padding: 3rem 0;
  }

  .mentoring-coaching-hero-text h1 {
    font-size: 1.875rem;
  }

  .mentoring-coaching-hero-text .mentoring-coaching-lead {
    font-size: 1rem;
  }

  .mentoring-coaching-meta {
    gap: 1rem;
    font-size: 0.85rem;
  }

  .mentoring-coaching-featured-image {
    max-height: 280px;
  }

  .mentoring-coaching-content-intro {
    padding: 3rem 0;
  }

  .mentoring-coaching-content-intro p {
    font-size: 0.95rem;
  }

  .mentoring-coaching-benefits {
    padding: 3rem 0;
  }

  .mentoring-coaching-benefits h2 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
  }

  .mentoring-coaching-benefit-cards {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .mentoring-coaching-benefit-card {
    padding: 1.5rem;
  }

  .mentoring-coaching-types {
    padding: 3rem 0;
  }

  .mentoring-coaching-types h2 {
    font-size: 1.75rem;
  }

  .mentoring-coaching-type-item {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }

  .mentoring-coaching-type-item.mentoring-coaching-type-reversed {
    grid-template-columns: 1fr;
  }

  .mentoring-coaching-type-item.mentoring-coaching-type-reversed .mentoring-coaching-type-text {
    order: auto;
  }

  .mentoring-coaching-type-item.mentoring-coaching-type-reversed .mentoring-coaching-type-image {
    order: auto;
  }

  .mentoring-coaching-type-text h3 {
    font-size: 1.5rem;
  }

  .mentoring-coaching-type-image {
    max-height: 280px;
  }

  .mentoring-coaching-finding {
    padding: 3rem 0;
  }

  .mentoring-coaching-finding h2 {
    font-size: 1.75rem;
  }

  .mentoring-coaching-finding-list {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .mentoring-coaching-quote-section {
    padding: 3rem 0;
  }

  .mentoring-coaching-quote {
    padding: 2rem 1rem;
  }

  .mentoring-coaching-quote p {
    font-size: 1.3rem;
  }

  .mentoring-coaching-expectations {
    padding: 3rem 0;
  }

  .mentoring-coaching-expectations h2 {
    font-size: 1.75rem;
  }

  .mentoring-coaching-expectations-grid {
    grid-template-columns: 1fr;
  }

  .mentoring-coaching-disclaimer-content {
    flex-direction: column;
    gap: 1rem;
  }

  .mentoring-coaching-disclaimer-icon {
    font-size: 1.5rem;
  }

  .mentoring-coaching-related {
    padding: 3rem 0;
  }

  .mentoring-coaching-related h2 {
    font-size: 1.75rem;
  }

  .mentoring-coaching-related-grid {
    grid-template-columns: 1fr;
  }

  .mentoring-coaching-related-content {
    padding: 1.25rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:root {
  --color-bg-dark-primary: #0a0f1e;
  --color-bg-dark-secondary: #0f1729;
  --color-bg-dark-tertiary: #1a2847;
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-card-dark: rgba(59, 130, 246, 0.08);
  
  --color-text-light: #ffffff;
  --color-text-light-secondary: #e2e8f0;
  --color-text-light-muted: #94a3b8;
  --color-text-dark: #0f172a;
  --color-text-dark-secondary: #374151;
  --color-text-dark-muted: #6b7280;
  
  --color-primary: #3b82f6;
  --color-primary-hover: #2563eb;
  --color-primary-light: #60a5fa;
  --color-secondary: #06b6d4;
  --color-accent-gold: #f59e0b;
  
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Playfair Display', Georgia, serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
}

.container {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

@media (max-width: 767px) {
  .container {
    padding: 0 16px;
  }
}

.post-markteffizienzhypothese .markteffizienzhypothese-breadcrumbs {
  background: var(--color-bg-light-secondary);
  padding: 1rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.post-markteffizienzhypothese .markteffizienzhypothese-breadcrumbs .container {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.post-markteffizienzhypothese .markteffizienzhypothese-breadcrumbs a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-markteffizienzhypothese .markteffizienzhypothese-breadcrumbs a:hover {
  color: var(--color-primary-hover);
}

.post-markteffizienzhypothese .markteffizienzhypothese-breadcrumbs span[aria-current="page"] {
  color: var(--color-text-dark);
  font-weight: 600;
}

.post-markteffizienzhypothese .markteffizienzhypothese-separator {
  color: var(--color-text-dark-muted);
}

@media (max-width: 767px) {
  .post-markteffizienzhypothese .markteffizienzhypothese-breadcrumbs .container {
    font-size: 0.75rem;
    gap: 0.5rem;
  }
}

.post-markteffizienzhypothese .markteffizienzhypothese-hero {
  background: var(--color-bg-light-primary);
  padding: 4rem 0;
}

.post-markteffizienzhypothese .markteffizienzhypothese-hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.post-markteffizienzhypothese .markteffizienzhypothese-hero h1 {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.post-markteffizienzhypothese .markteffizienzhypothese-lead {
  font-size: 1.125rem;
  color: var(--color-text-dark-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.post-markteffizienzhypothese .markteffizienzhypothese-meta {
  display: flex;
  gap: 2rem;
  font-size: 0.875rem;
  color: var(--color-text-dark-muted);
}

.post-markteffizienzhypothese .markteffizienzhypothese-meta span {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.post-markteffizienzhypothese .markteffizienzhypothese-meta i {
  color: var(--color-primary);
}

.post-markteffizienzhypothese .markteffizienzhypothese-featured-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .post-markteffizienzhypothese .markteffizienzhypothese-hero {
    padding: 5rem 0;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-hero h1 {
    font-size: 3.75rem;
  }
}

@media (min-width: 1024px) {
  .post-markteffizienzhypothese .markteffizienzhypothese-hero {
    padding: 6rem 0;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-hero h1 {
    font-size: 3.75rem;
  }
}

@media (max-width: 767px) {
  .post-markteffizienzhypothese .markteffizienzhypothese-hero {
    padding: 2rem 0;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-hero-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-hero h1 {
    font-size: 2rem;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-lead {
    font-size: 0.95rem;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-meta {
    gap: 1rem;
    flex-wrap: wrap;
  }
}

.post-markteffizienzhypothese .markteffizienzhypothese-introduction {
  background: var(--color-bg-light-secondary);
  padding: 4rem 0;
}

.post-markteffizienzhypothese .markteffizienzhypothese-introduction h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.post-markteffizienzhypothese .markteffizienzhypothese-introduction p {
  font-size: 1rem;
  color: var(--color-text-dark-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.post-markteffizienzhypothese .markteffizienzhypothese-highlight-box {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--color-bg-light-primary);
  border-left: 4px solid var(--color-primary);
  border-radius: 8px;
  margin-top: 2rem;
}

.post-markteffizienzhypothese .markteffizienzhypothese-highlight-icon {
  flex-shrink: 0;
}

.post-markteffizienzhypothese .markteffizienzhypothese-highlight-icon i {
  font-size: 1.75rem;
  color: var(--color-primary);
}

.post-markteffizienzhypothese .markteffizienzhypothese-highlight-text h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
}

.post-markteffizienzhypothese .markteffizienzhypothese-highlight-text p {
  font-size: 0.95rem;
  color: var(--color-text-dark-secondary);
  margin: 0;
}

@media (min-width: 768px) {
  .post-markteffizienzhypothese .markteffizienzhypothese-introduction {
    padding: 5rem 0;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-introduction h2 {
    font-size: 2.75rem;
  }
}

@media (max-width: 767px) {
  .post-markteffizienzhypothese .markteffizienzhypothese-introduction {
    padding: 2rem 0;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-introduction h2 {
    font-size: 1.75rem;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-introduction p {
    font-size: 0.9rem;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-highlight-box {
    flex-direction: column;
    gap: 1rem;
    padding: 1.5rem;
  }
}

.post-markteffizienzhypothese .markteffizienzhypothese-three-forms {
  background: var(--color-bg-light-primary);
  padding: 4rem 0;
}

.post-markteffizienzhypothese .markteffizienzhypothese-three-forms h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.post-markteffizienzhypothese .markteffizienzhypothese-three-forms > .container > p {
  font-size: 1rem;
  color: var(--color-text-dark-secondary);
  margin-bottom: 2.5rem;
}

.post-markteffizienzhypothese .markteffizienzhypothese-forms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

.post-markteffizienzhypothese .markteffizienzhypothese-form-card {
  background: var(--color-bg-light-secondary);
  padding: 2rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.post-markteffizienzhypothese .markteffizienzhypothese-form-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 8px 20px rgba(59, 130, 246, 0.1);
  transform: translateY(-4px);
}

.post-markteffizienzhypothese .markteffizienzhypothese-form-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.post-markteffizienzhypothese .markteffizienzhypothese-form-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.post-markteffizienzhypothese .markteffizienzhypothese-form-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-text-dark);
  margin: 0;
}

.post-markteffizienzhypothese .markteffizienzhypothese-form-card p {
  font-size: 0.95rem;
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
  margin: 0;
}

.post-markteffizienzhypothese .markteffizienzhypothese-forms-image {
  margin-top: 2rem;
}

.post-markteffizienzhypothese .markteffizienzhypothese-content-image {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .post-markteffizienzhypothese .markteffizienzhypothese-three-forms {
    padding: 5rem 0;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-three-forms h2 {
    font-size: 2.75rem;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-forms-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

@media (max-width: 767px) {
  .post-markteffizienzhypothese .markteffizienzhypothese-three-forms {
    padding: 2rem 0;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-three-forms h2 {
    font-size: 1.75rem;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-forms-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-form-card {
    padding: 1.5rem;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-form-card h3 {
    font-size: 1.1rem;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-form-card p {
    font-size: 0.85rem;
  }
}

.post-markteffizienzhypothese .markteffizienzhypothese-critical-analysis {
  background: var(--color-bg-light-secondary);
  padding: 4rem 0;
}

.post-markteffizienzhypothese .markteffizienzhypothese-critical-analysis h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.post-markteffizienzhypothese .markteffizienzhypothese-critical-analysis > .container > p {
  font-size: 1rem;
  color: var(--color-text-dark-secondary);
  margin-bottom: 2rem;
}

.post-markteffizienzhypothese .markteffizienzhypothese-criticism-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 3rem;
}

.post-markteffizienzhypothese .markteffizienzhypothese-criticism-text h3 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
}

.post-markteffizienzhypothese .markteffizienzhypothese-criticism-text p {
  font-size: 0.95rem;
  color: var(--color-text-dark-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.post-markteffizienzhypothese .markteffizienzhypothese-criticism-image {
  display: flex;
  justify-content: center;
}

.post-markteffizienzhypothese .markteffizienzhypothese-anomalies {
  background: var(--color-bg-light-primary);
  padding: 2rem;
  border-radius: 12px;
}

.post-markteffizienzhypothese .markteffizienzhypothese-anomalies h3 {
  font-family: var(--font-heading);
  font-size: 1.375rem;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
}

.post-markteffizienzhypothese .markteffizienzhypothese-anomalies-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.post-markteffizienzhypothese .markteffizienzhypothese-anomalies-list li {
  font-size: 0.95rem;
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
  padding-left: 1.5rem;
  position: relative;
}

.post-markteffizienzhypothese .markteffizienzhypothese-anomalies-list li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.post-markteffizienzhypothese .markteffizienzhypothese-anomalies-list strong {
  color: var(--color-text-dark);
}

@media (min-width: 768px) {
  .post-markteffizienzhypothese .markteffizienzhypothese-critical-analysis {
    padding: 5rem 0;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-critical-analysis h2 {
    font-size: 2.75rem;
  }
}

@media (max-width: 767px) {
  .post-markteffizienzhypothese .markteffizienzhypothese-critical-analysis {
    padding: 2rem 0;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-critical-analysis h2 {
    font-size: 1.75rem;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-criticism-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-anomalies {
    padding: 1.5rem;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-anomalies h3 {
    font-size: 1.2rem;
  }
}

.post-markteffizienzhypothese .markteffizienzhypothese-practical-implications {
  background: var(--color-bg-light-primary);
  padding: 4rem 0;
}

.post-markteffizienzhypothese .markteffizienzhypothese-practical-implications h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 1rem;
  letter-spacing: -0.5px;
}

.post-markteffizienzhypothese .markteffizienzhypothese-practical-implications > .container > p {
  font-size: 1rem;
  color: var(--color-text-dark-secondary);
  margin-bottom: 2.5rem;
}

.post-markteffizienzhypothese .markteffizienzhypothese-implications-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.post-markteffizienzhypothese .markteffizienzhypothese-implication-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: var(--color-bg-light-secondary);
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.post-markteffizienzhypothese .markteffizienzhypothese-implication-item:hover {
  border-color: var(--color-secondary);
  box-shadow: 0 8px 20px rgba(6, 182, 212, 0.1);
  transform: translateY(-4px);
}

.post-markteffizienzhypothese .markteffizienzhypothese-implication-icon {
  font-size: 2rem;
  color: var(--color-secondary);
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 12px;
}

.post-markteffizienzhypothese .markteffizienzhypothese-implication-item h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-text-dark);
  margin: 0;
}

.post-markteffizienzhypothese .markteffizienzhypothese-implication-item p {
  font-size: 0.95rem;
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .post-markteffizienzhypothese .markteffizienzhypothese-practical-implications {
    padding: 5rem 0;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-practical-implications h2 {
    font-size: 2.75rem;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-implications-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .post-markteffizienzhypothese .markteffizienzhypothese-implications-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

@media (max-width: 767px) {
  .post-markteffizienzhypothese .markteffizienzhypothese-practical-implications {
    padding: 2rem 0;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-practical-implications h2 {
    font-size: 1.75rem;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-implications-grid {
    grid-template-columns: 1fr;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-implication-item {
    padding: 1.5rem;
  }
}

.post-markteffizienzhypothese .markteffizienzhypothese-modern-perspective {
  background: var(--color-bg-light-secondary);
  padding: 4rem 0;
}

.post-markteffizienzhypothese .markteffizienzhypothese-modern-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.post-markteffizienzhypothese .markteffizienzhypothese-modern-text h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.post-markteffizienzhypothese .markteffizienzhypothese-modern-text p {
  font-size: 0.95rem;
  color: var(--color-text-dark-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .post-markteffizienzhypothese .markteffizienzhypothese-modern-perspective {
    padding: 5rem 0;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-modern-text h2 {
    font-size: 2.75rem;
  }
}

@media (max-width: 767px) {
  .post-markteffizienzhypothese .markteffizienzhypothese-modern-perspective {
    padding: 2rem 0;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-modern-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-modern-text h2 {
    font-size: 1.75rem;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-modern-text p {
    font-size: 0.9rem;
  }
}

.post-markteffizienzhypothese .markteffizienzhypothese-quote-section {
  background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
  padding: 4rem 0;
}

.post-markteffizienzhypothese .markteffizienzhypothese-quote {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 1.75rem;
  color: white;
  font-style: italic;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .post-markteffizienzhypothese .markteffizienzhypothese-quote-section {
    padding: 5rem 0;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-quote {
    font-size: 2rem;
  }
}

@media (max-width: 767px) {
  .post-markteffizienzhypothese .markteffizienzhypothese-quote-section {
    padding: 2rem 0;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-quote {
    font-size: 1.25rem;
    padding: 0 1rem;
  }
}

.post-markteffizienzhypothese .markteffizienzhypothese-conclusion {
  background: var(--color-bg-light-primary);
  padding: 4rem 0;
}

.post-markteffizienzhypothese .markteffizienzhypothese-conclusion h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.post-markteffizienzhypothese .markteffizienzhypothese-conclusion p {
  font-size: 1rem;
  color: var(--color-text-dark-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  max-width: 850px;
}

@media (min-width: 768px) {
  .post-markteffizienzhypothese .markteffizienzhypothese-conclusion {
    padding: 5rem 0;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-conclusion h2 {
    font-size: 2.75rem;
  }
}

@media (max-width: 767px) {
  .post-markteffizienzhypothese .markteffizienzhypothese-conclusion {
    padding: 2rem 0;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-conclusion h2 {
    font-size: 1.75rem;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-conclusion p {
    font-size: 0.9rem;
  }
}

.post-markteffizienzhypothese .markteffizienzhypothese-disclaimer {
  background: var(--color-bg-light-secondary);
  padding: 3rem 0;
  border-top: 2px solid #e2e8f0;
  border-bottom: 2px solid #e2e8f0;
}

.post-markteffizienzhypothese .markteffizienzhypothese-disclaimer-content {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: var(--color-bg-light-primary);
  border-radius: 12px;
  border-left: 4px solid var(--color-accent-gold);
}

.post-markteffizienzhypothese .markteffizienzhypothese-disclaimer-content i {
  font-size: 1.75rem;
  color: var(--color-accent-gold);
  flex-shrink: 0;
  margin-top: 0.25rem;
}

.post-markteffizienzhypothese .markteffizienzhypothese-disclaimer-content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-text-dark);
  margin-bottom: 0.75rem;
}

.post-markteffizienzhypothese .markteffizienzhypothese-disclaimer-content p {
  font-size: 0.9rem;
  color: var(--color-text-dark-secondary);
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .post-markteffizienzhypothese .markteffizienzhypothese-disclaimer {
    padding: 4rem 0;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-disclaimer-content {
    padding: 2.5rem;
  }
}

@media (max-width: 767px) {
  .post-markteffizienzhypothese .markteffizienzhypothese-disclaimer {
    padding: 2rem 0;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-disclaimer-content {
    flex-direction: column;
    padding: 1.5rem;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-disclaimer-content p {
    font-size: 0.8rem;
  }
}

.post-markteffizienzhypothese .markteffizienzhypothese-related {
  background: var(--color-bg-light-primary);
  padding: 4rem 0;
}

.post-markteffizienzhypothese .markteffizienzhypothese-related h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: 2.5rem;
  text-align: center;
  letter-spacing: -0.5px;
}

.post-markteffizienzhypothese .markteffizienzhypothese-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.post-markteffizienzhypothese .markteffizienzhypothese-related-card {
  background: var(--color-bg-light-secondary);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

.post-markteffizienzhypothese .markteffizienzhypothese-related-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 12px 30px rgba(59, 130, 246, 0.15);
  transform: translateY(-8px);
}

.post-markteffizienzhypothese .markteffizienzhypothese-related-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.post-markteffizienzhypothese .markteffizienzhypothese-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.post-markteffizienzhypothese .markteffizienzhypothese-related-card:hover .markteffizienzhypothese-card-image {
  transform: scale(1.05);
}

.post-markteffizienzhypothese .markteffizienzhypothese-related-content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex-grow: 1;
}

.post-markteffizienzhypothese .markteffizienzhypothese-related-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--color-text-dark);
  margin: 0;
  line-height: 1.4;
}

.post-markteffizienzhypothese .markteffizienzhypothese-related-card p {
  font-size: 0.9rem;
  color: var(--color-text-dark-secondary);
  line-height: 1.6;
  margin: 0;
  flex-grow: 1;
}

.post-markteffizienzhypothese .markteffizienzhypothese-related-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.post-markteffizienzhypothese .markteffizienzhypothese-related-link:hover {
  color: var(--color-primary-hover);
  gap: 0.75rem;
}

.post-markteffizienzhypothese .markteffizienzhypothese-related-link i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.post-markteffizienzhypothese .markteffizienzhypothese-related-link:hover i {
  transform: translateX(3px);
}

@media (min-width: 768px) {
  .post-markteffizienzhypothese .markteffizienzhypothese-related {
    padding: 5rem 0;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-related h2 {
    font-size: 2.75rem;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-related-content {
    padding: 2rem;
  }
}

@media (max-width: 767px) {
  .post-markteffizienzhypothese .markteffizienzhypothese-related {
    padding: 2rem 0;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-related h2 {
    font-size: 1.75rem;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-related-grid {
    grid-template-columns: 1fr;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-related-card h3 {
    font-size: 1.1rem;
  }

  .post-markteffizienzhypothese .markteffizienzhypothese-related-card p {
    font-size: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.post-disziplin-handel {
  background: var(--color-bg-dark-primary);
  color: var(--color-text-light);
}

.disziplin-handel-breadcrumbs-section {
  background: var(--color-bg-dark-secondary);
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.disziplin-handel-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.disziplin-handel-breadcrumb-link {
  color: var(--color-primary-light);
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.disziplin-handel-breadcrumb-link:hover {
  color: var(--color-primary);
}

.disziplin-handel-breadcrumb-separator {
  color: var(--color-text-light-muted);
  font-size: 0.85rem;
}

.disziplin-handel-breadcrumb-current {
  color: var(--color-text-light-muted);
  font-size: 0.9rem;
}

.disziplin-handel-article {
  width: 100%;
}

.disziplin-handel-hero {
  background: var(--color-bg-dark-primary);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.disziplin-handel-hero-decoration-1 {
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.disziplin-handel-hero-decoration-2 {
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.disziplin-handel-hero-decoration-3 {
  position: absolute;
  top: 50%;
  left: 5%;
  width: 3px;
  height: 200px;
  background: linear-gradient(180deg, transparent, rgba(59, 130, 246, 0.2), transparent);
  pointer-events: none;
  z-index: 1;
}

.disziplin-handel-hero-decoration-4 {
  position: absolute;
  top: 30%;
  right: 10%;
  width: 2px;
  height: 150px;
  background: linear-gradient(180deg, transparent, rgba(6, 182, 212, 0.15), transparent);
  pointer-events: none;
  z-index: 1;
}

.disziplin-handel-hero-decoration-5 {
  position: absolute;
  top: 20%;
  left: 50%;
  width: 200px;
  height: 200px;
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: 30%;
  pointer-events: none;
  z-index: 1;
}

.disziplin-handel-hero-decoration-6 {
  position: absolute;
  bottom: 10%;
  right: 5%;
  width: 150px;
  height: 150px;
  background: rgba(6, 182, 212, 0.04);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.disziplin-handel-hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.disziplin-handel-hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.disziplin-handel-hero-title {
  color: var(--color-text-light);
  font-size: 2.5rem;
  line-height: 1.2;
  margin: 0;
}

.disziplin-handel-hero-subtitle {
  color: var(--color-text-light-secondary);
  font-size: 1.125rem;
  line-height: 1.6;
  margin: 0;
  max-width: 600px;
}

.disziplin-handel-hero-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--color-text-light-muted);
  font-size: 0.95rem;
}

.disziplin-handel-hero-meta i {
  color: var(--color-secondary);
  font-size: 1rem;
}

.disziplin-handel-meta-separator {
  color: var(--color-text-light-muted);
}

.disziplin-handel-hero-image {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid rgba(59, 130, 246, 0.2);
}

.disziplin-handel-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .disziplin-handel-hero {
    padding: 5rem 0;
  }

  .disziplin-handel-hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .disziplin-handel-hero-title {
    font-size: 3rem;
  }

  .disziplin-handel-hero-image {
    height: 350px;
  }
}

@media (min-width: 1024px) {
  .disziplin-handel-hero {
    padding: 6rem 0;
  }

  .disziplin-handel-hero-title {
    font-size: 3.5rem;
  }

  .disziplin-handel-hero-image {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .disziplin-handel-breadcrumbs-section {
    padding: 1rem 0;
  }

  .disziplin-handel-hero {
    padding: 3rem 0;
  }

  .disziplin-handel-hero-title {
    font-size: 1.875rem;
  }

  .disziplin-handel-hero-subtitle {
    font-size: 1rem;
  }

  .disziplin-handel-hero-image {
    height: 250px;
  }

  .disziplin-handel-hero-meta {
    font-size: 0.85rem;
  }
}

.disziplin-handel-introduction {
  background: var(--color-bg-dark-secondary);
  padding: 3rem 0;
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
}

.disziplin-handel-intro-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.disziplin-handel-lead {
  color: var(--color-text-light-secondary);
  font-size: 1.125rem;
  line-height: 1.8;
  margin: 0;
  max-width: 800px;
  font-weight: 500;
}

.disziplin-handel-intro-text {
  color: var(--color-text-light-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  max-width: 900px;
}

@media (min-width: 768px) {
  .disziplin-handel-introduction {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .disziplin-handel-introduction {
    padding: 5rem 0;
  }
}

@media (max-width: 767px) {
  .disziplin-handel-introduction {
    padding: 2rem 0;
  }

  .disziplin-handel-lead {
    font-size: 1rem;
  }

  .disziplin-handel-intro-text {
    font-size: 0.9rem;
  }
}

.disziplin-handel-foundation {
  background: var(--color-bg-dark-primary);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.disziplin-handel-foundation-decoration-1 {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.disziplin-handel-foundation-decoration-2 {
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.disziplin-handel-foundation-decoration-3 {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: 45%;
  pointer-events: none;
  z-index: 1;
}

.disziplin-handel-foundation-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.disziplin-handel-section-title {
  color: var(--color-text-light);
  font-size: 2rem;
  margin: 0 0 2rem 0;
}

.disziplin-handel-foundation-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

.disziplin-handel-foundation-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.disziplin-handel-foundation-text p {
  color: var(--color-text-light-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.disziplin-handel-highlight-box {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(59, 130, 246, 0.08);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  align-items: flex-start;
}

.disziplin-handel-highlight-icon {
  font-size: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.disziplin-handel-highlight-text h3 {
  color: var(--color-text-light);
  font-size: 1.125rem;
  margin: 0 0 0.5rem 0;
}

.disziplin-handel-highlight-text p {
  color: var(--color-text-light-secondary);
  font-size: 0.95rem;
  margin: 0;
}

.disziplin-handel-foundation-image {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid rgba(59, 130, 246, 0.15);
}

.disziplin-handel-foundation-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .disziplin-handel-foundation {
    padding: 5rem 0;
  }

  .disziplin-handel-foundation-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }

  .disziplin-handel-section-title {
    font-size: 2.5rem;
  }

  .disziplin-handel-foundation-image {
    height: 350px;
  }
}

@media (min-width: 1024px) {
  .disziplin-handel-foundation {
    padding: 6rem 0;
  }

  .disziplin-handel-foundation-grid {
    gap: 4rem;
  }

  .disziplin-handel-section-title {
    font-size: 3rem;
  }

  .disziplin-handel-foundation-image {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .disziplin-handel-foundation {
    padding: 3rem 0;
  }

  .disziplin-handel-section-title {
    font-size: 1.5rem;
  }

  .disziplin-handel-foundation-text p {
    font-size: 0.9rem;
  }

  .disziplin-handel-highlight-box {
    padding: 1.5rem;
    gap: 1rem;
  }

  .disziplin-handel-foundation-image {
    height: 250px;
  }
}

.disziplin-handel-rules {
  background: var(--color-bg-dark-tertiary);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.disziplin-handel-rules-decoration-1 {
  position: absolute;
  top: 20%;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.disziplin-handel-rules-decoration-2 {
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.disziplin-handel-rules-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.disziplin-handel-rules-intro {
  color: var(--color-text-light-secondary);
  font-size: 1rem;
  line-height: 1.7;
  max-width: 800px;
}

.disziplin-handel-rules-intro p {
  margin: 0;
}

.disziplin-handel-rules-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
}

.disziplin-handel-rule-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: rgba(59, 130, 246, 0.06);
  border: 1px solid rgba(59, 130, 246, 0.15);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

.disziplin-handel-rule-card:hover {
  background: rgba(59, 130, 246, 0.12);
  border-color: rgba(59, 130, 246, 0.3);
  transform: translateY(-4px);
}

.disziplin-handel-rule-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.disziplin-handel-rule-title {
  color: var(--color-text-light);
  font-size: 1.25rem;
  margin: 0;
}

.disziplin-handel-rule-text {
  color: var(--color-text-light-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

.disziplin-handel-rules-image {
  width: 100%;
  height: 350px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid rgba(59, 130, 246, 0.15);
  margin-top: 2rem;
}

.disziplin-handel-rules-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .disziplin-handel-rules {
    padding: 5rem 0;
  }

  .disziplin-handel-rules-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .disziplin-handel-rules-image {
    height: 400px;
  }
}

@media (min-width: 1024px) {
  .disziplin-handel-rules {
    padding: 6rem 0;
  }

  .disziplin-handel-rules-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .disziplin-handel-rules-image {
    height: 450px;
  }
}

@media (max-width: 767px) {
  .disziplin-handel-rules {
    padding: 3rem 0;
  }

  .disziplin-handel-rules-grid {
    grid-template-columns: 1fr;
  }

  .disziplin-handel-rule-card {
    padding: 1.5rem;
  }

  .disziplin-handel-rules-image {
    height: 250px;
  }
}

.disziplin-handel-emotions {
  background: var(--color-bg-dark-secondary);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.disziplin-handel-emotions-decoration-1 {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.disziplin-handel-emotions-decoration-2 {
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.disziplin-handel-emotions-decoration-3 {
  position: absolute;
  top: 40%;
  left: 10%;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(245, 158, 11, 0.15);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.disziplin-handel-emotions-content {
  position: relative;
  z-index: 10;
}

.disziplin-handel-emotions-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.disziplin-handel-emotions-image {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid rgba(59, 130, 246, 0.15);
}

.disziplin-handel-emotions-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.disziplin-handel-emotions-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.disziplin-handel-emotions-text p {
  color: var(--color-text-light-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.disziplin-handel-emotions-text strong {
  color: var(--color-primary-light);
}

.disziplin-handel-emotion-tactics {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: rgba(6, 182, 212, 0.06);
  border-left: 4px solid var(--color-secondary);
  border-radius: var(--radius-lg);
}

.disziplin-handel-tactics-title {
  color: var(--color-text-light);
  font-size: 1.125rem;
  margin: 0 0 1rem 0;
}

.disziplin-handel-tactics-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.disziplin-handel-tactics-list li {
  color: var(--color-text-light-secondary);
  font-size: 0.95rem;
  line-height: 1.6;
  padding-left: 1.5rem;
  position: relative;
}

.disziplin-handel-tactics-list li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-secondary);
  font-weight: 700;
}

@media (min-width: 768px) {
  .disziplin-handel-emotions {
    padding: 5rem 0;
  }

  .disziplin-handel-emotions-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .disziplin-handel-emotions-image {
    height: 350px;
  }
}

@media (min-width: 1024px) {
  .disziplin-handel-emotions {
    padding: 6rem 0;
  }

  .disziplin-handel-emotions-image {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .disziplin-handel-emotions {
    padding: 3rem 0;
  }

  .disziplin-handel-emotions-image {
    height: 250px;
  }

  .disziplin-handel-emotions-text p {
    font-size: 0.9rem;
  }

  .disziplin-handel-emotion-tactics {
    padding: 1.5rem;
  }
}

.disziplin-handel-systems {
  background: var(--color-bg-dark-primary);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.disziplin-handel-systems-decoration-1 {
  position: absolute;
  top: -100px;
  left: -100px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.disziplin-handel-systems-decoration-2 {
  position: absolute;
  bottom: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.disziplin-handel-systems-decoration-3 {
  position: absolute;
  top: 30%;
  right: 5%;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(245, 158, 11, 0.2);
  border-radius: 40%;
  pointer-events: none;
  z-index: 1;
}

.disziplin-handel-systems-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.disziplin-handel-section-intro {
  color: var(--color-text-light-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
  max-width: 800px;
}

.disziplin-handel-systems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.disziplin-handel-system-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s ease;
}

.disziplin-handel-system-item:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.25);
  transform: translateY(-4px);
}

.disziplin-handel-system-icon {
  font-size: 2.5rem;
  color: var(--color-primary);
  display: flex;
  justify-content: center;
}

.disziplin-handel-system-title {
  color: var(--color-text-light);
  font-size: 1.125rem;
  margin: 0;
}

.disziplin-handel-system-item p {
  color: var(--color-text-light-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.disziplin-handel-systems-image {
  width: 100%;
  height: 350px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 2px solid rgba(59, 130, 246, 0.15);
  margin-top: 2rem;
}

.disziplin-handel-systems-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 768px) {
  .disziplin-handel-systems {
    padding: 5rem 0;
  }

  .disziplin-handel-systems-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .disziplin-handel-systems-image {
    height: 400px;
  }
}

@media (min-width: 1024px) {
  .disziplin-handel-systems {
    padding: 6rem 0;
  }

  .disziplin-handel-systems-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }

  .disziplin-handel-systems-image {
    height: 450px;
  }
}

@media (max-width: 767px) {
  .disziplin-handel-systems {
    padding: 3rem 0;
  }

  .disziplin-handel-systems-grid {
    grid-template-columns: 1fr;
  }

  .disziplin-handel-system-item {
    padding: 1.5rem;
  }

  .disziplin-handel-systems-image {
    height: 250px;
  }
}

.disziplin-handel-progress {
  background: var(--color-bg-dark-tertiary);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.disziplin-handel-progress-decoration-1 {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.disziplin-handel-progress-decoration-2 {
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.disziplin-handel-progress-content {
  position: relative;
  z-index: 10;
}

.disziplin-handel-progress-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 900px;
}

.disziplin-handel-progress-text p {
  color: var(--color-text-light-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin: 0;
}

.disziplin-handel-quote-box {
  padding: 2.5rem;
  background: rgba(6, 182, 212, 0.08);
  border-left: 5px solid var(--color-secondary);
  border-radius: var(--radius-lg);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.disziplin-handel-quote-mark {
  font-size: 3rem;
  color: var(--color-secondary);
  font-family: var(--font-heading);
  line-height: 1;
}

.disziplin-handel-quote-text {
  color: var(--color-text-light-secondary);
  font-size: 1.125rem;
  line-height: 1.8;
  font-style: italic;
  margin: 0;
}

.disziplin-handel-quote-end {
  color: var(--color-secondary);
  font-size: 3rem;
  line-height: 1;
  text-align: right;
  margin-top: 0.5rem;
}

.disziplin-handel-progress-subheading {
  color: var(--color-text-light);
  font-size: 1.25rem;
  margin: 1rem 0 1.5rem 0;
}

.disziplin-handel-progress-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.disziplin-handel-progress-list li {
  color: var(--color-text-light-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  padding-left: 2rem;
  position: relative;
}

.disziplin-handel-progress-list li::before {
  content: counter(item);
  counter-increment: item;
  position: absolute;
  left: 0;
  width: 30px;
  height: 30px;
  background: rgba(59, 130, 246, 0.2);
  border: 2px solid var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  font-weight: 700;
  font-size: 0.85rem;
}

.disziplin-handel-progress-list {
  counter-reset: item;
}

@media (min-width: 768px) {
  .disziplin-handel-progress {
    padding: 5rem 0;
  }

  .disziplin-handel-quote-box {
    padding: 3rem;
  }
}

@media (min-width: 1024px) {
  .disziplin-handel-progress {
    padding: 6rem 0;
  }
}

@media (max-width: 767px) {
  .disziplin-handel-progress {
    padding: 3rem 0;
  }

  .disziplin-handel-progress-text p {
    font-size: 0.9rem;
  }

  .disziplin-handel-quote-box {
    padding: 1.5rem;
  }

  .disziplin-handel-quote-text {
    font-size: 1rem;
  }

  .disziplin-handel-progress-subheading {
    font-size: 1.1rem;
  }

  .disziplin-handel-progress-list li {
    font-size: 0.9rem;
  }
}

.disziplin-handel-disclaimer {
  background: var(--color-bg-dark-secondary);
  padding: 3rem 0;
  border-top: 1px solid rgba(59, 130, 246, 0.1);
  border-bottom: 1px solid rgba(59, 130, 246, 0.1);
  position: relative;
  overflow: hidden;
}

.disziplin-handel-disclaimer-decoration {
  position: absolute;
  top: -50px;
  left: -50px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.05) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.disziplin-handel-disclaimer-content {
  position: relative;
  z-index: 10;
}

.disziplin-handel-disclaimer-box {
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: rgba(59, 130, 246, 0.04);
  border-left: 4px solid var(--color-secondary);
  border-radius: var(--radius-lg);
  align-items: flex-start;
}

.disziplin-handel-disclaimer-icon {
  font-size: 1.75rem;
  color: var(--color-secondary);
  flex-shrink: 0;
}

.disziplin-handel-disclaimer-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.disziplin-handel-disclaimer-title {
  color: var(--color-text-light);
  font-size: 1.125rem;
  margin: 0;
}

.disziplin-handel-disclaimer-text p {
  color: var(--color-text-light-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .disziplin-handel-disclaimer {
    padding: 4rem 0;
  }

  .disziplin-handel-disclaimer-box {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .disziplin-handel-disclaimer {
    padding: 5rem 0;
  }

  .disziplin-handel-disclaimer-box {
    padding: 3rem;
  }
}

@media (max-width: 767px) {
  .disziplin-handel-disclaimer {
    padding: 2rem 0;
  }

  .disziplin-handel-disclaimer-box {
    padding: 1.5rem;
    gap: 1rem;
  }

  .disziplin-handel-disclaimer-icon {
    font-size: 1.5rem;
  }

  .disziplin-handel-disclaimer-title {
    font-size: 1rem;
  }

  .disziplin-handel-disclaimer-text p {
    font-size: 0.85rem;
  }
}

.disziplin-handel-related {
  background: var(--color-bg-dark-primary);
  padding: 4rem 0;
  position: relative;
  overflow: hidden;
}

.disziplin-handel-related-decoration-1 {
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.disziplin-handel-related-decoration-2 {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

.disziplin-handel-related-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.disziplin-handel-related-title {
  color: var(--color-text-light);
  font-size: 2rem;
  margin: 0;
}

.disziplin-handel-related-intro {
  color: var(--color-text-light-secondary);
  font-size: 1rem;
  margin: 0;
}

.disziplin-handel-related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.disziplin-handel-related-card {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 1.5rem;
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.12);
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  overflow: hidden;
}

.disziplin-handel-related-card:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.25);
  transform: translateY(-6px);
}

.disziplin-handel-related-card-image {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.disziplin-handel-related-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.disziplin-handel-related-card-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.disziplin-handel-related-card-title {
  color: var(--color-text-light);
  font-size: 1.125rem;
  margin: 0;
}

.disziplin-handel-related-card-description {
  color: var(--color-text-light-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin: 0;
}

.disziplin-handel-related-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary-light);
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: auto;
}

.disziplin-handel-related-card-link:hover {
  color: var(--color-primary);
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .disziplin-handel-related {
    padding: 5rem 0;
  }

  .disziplin-handel-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }

  .disziplin-handel-related-title {
    font-size: 2.5rem;
  }

  .disziplin-handel-related-card {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .disziplin-handel-related {
    padding: 6rem 0;
  }

  .disziplin-handel-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
  }

  .disziplin-handel-related-title {
    font-size: 3rem;
  }
}

@media (max-width: 767px) {
  .disziplin-handel-related {
    padding: 3rem 0;
  }

  .disziplin-handel-related-grid {
    grid-template-columns: 1fr;
  }

  .disziplin-handel-related-title {
    font-size: 1.5rem;
  }

  .disziplin-handel-related-card {
    padding: 1.25rem;
  }

  .disziplin-handel-related-card-title {
    font-size: 1rem;
  }

  .disziplin-handel-related-card-description {
    font-size: 0.85rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

:root {
  --color-bg-dark-primary: #0a0f1e;
  --color-bg-dark-secondary: #0f1729;
  --color-bg-dark-tertiary: #1a2847;
  --color-bg-light-primary: #ffffff;
  --color-bg-light-secondary: #f8fafc;
  --color-bg-card-dark: rgba(59, 130, 246, 0.08);
  --color-text-light: #ffffff;
  --color-text-light-secondary: #e2e8f0;
  --color-text-light-muted: #94a3b8;
  --color-text-dark: #0f172a;
  --color-text-dark-secondary: #374151;
  --color-text-dark-muted: #6b7280;
  --color-primary: #3b82f6;
  --color-primary-hover: #2563eb;
  --color-primary-light: #60a5fa;
  --color-secondary: #06b6d4;
  --color-accent-gold: #f59e0b;
  --color-accent-green: #10b981;
  --font-primary: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 4rem;
  --space-3xl: 6rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-primary);
  line-height: 1.6;
}

.container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--space-lg);
  }
}

.trading-foundation {
  background: var(--color-bg-dark-primary);
  overflow: hidden;
}

.trading-intro-section {
  position: relative;
  background: var(--color-bg-dark-primary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .trading-intro-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .trading-intro-section {
    padding: 6rem 0;
  }
}

.intro-glow-primary {
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(59, 130, 246, 0.12);
  border-radius: 50%;
  filter: blur(100px);
  top: -100px;
  left: -150px;
  z-index: 1;
  pointer-events: none;
}

.intro-glow-secondary {
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 50%;
  filter: blur(80px);
  bottom: -50px;
  right: -100px;
  z-index: 1;
  pointer-events: none;
}

.intro-accent-shape {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
}

.intro-line-accent {
  position: absolute;
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
  bottom: 20%;
  left: 10%;
  z-index: 2;
  pointer-events: none;
}

.intro-content {
  position: relative;
  z-index: 10;
}

.intro-content h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .intro-content h1 {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .intro-content h1 {
    font-size: 3.5rem;
  }
}

.intro-content p {
  color: var(--color-text-light-muted);
  font-size: 0.875rem;
  margin-bottom: var(--space-lg);
  max-width: 600px;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .intro-content p {
    font-size: 1rem;
    margin-bottom: var(--space-xl);
  }
}

.intro-visual {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  margin-top: var(--space-lg);
  display: block;
}

@media (min-width: 768px) {
  .intro-visual {
    margin-top: var(--space-xl);
  }
}

.methodology-section {
  position: relative;
  background: var(--color-bg-dark-secondary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .methodology-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .methodology-section {
    padding: 6rem 0;
  }
}

.methodology-mesh-bg {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  filter: blur(90px);
  top: 10%;
  right: -100px;
  z-index: 1;
  pointer-events: none;
}

.methodology-floating-card {
  position: absolute;
  width: 200px;
  height: 150px;
  background: rgba(59, 130, 246, 0.04);
  border: 1px solid rgba(59, 130, 246, 0.1);
  border-radius: var(--radius-lg);
  bottom: 15%;
  left: 5%;
  transform: rotate(-8deg);
  z-index: 2;
  pointer-events: none;
}

.methodology-accent-line {
  position: absolute;
  width: 300px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.25), transparent);
  top: 30%;
  left: 15%;
  z-index: 2;
  pointer-events: none;
}

.methodology-content {
  position: relative;
  z-index: 10;
}

.methodology-content h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .methodology-content h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .methodology-content h2 {
    font-size: 2.75rem;
  }
}

.methodology-text {
  color: var(--color-text-light-muted);
  font-size: 0.875rem;
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .methodology-text {
    font-size: 1rem;
    margin-bottom: var(--space-lg);
  }
}

.methodology-visual {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  margin-top: var(--space-lg);
  display: block;
}

@media (min-width: 768px) {
  .methodology-visual {
    margin-top: var(--space-xl);
  }
}

.market-insight-section {
  position: relative;
  background: var(--color-bg-dark-tertiary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .market-insight-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .market-insight-section {
    padding: 6rem 0;
  }
}

.insight-glow-gold {
  position: absolute;
  width: 450px;
  height: 450px;
  background: rgba(245, 158, 11, 0.08);
  border-radius: 50%;
  filter: blur(85px);
  top: -50px;
  left: -150px;
  z-index: 1;
  pointer-events: none;
}

.insight-organic-shape {
  position: absolute;
  width: 320px;
  height: 280px;
  background: rgba(16, 185, 129, 0.06);
  border-radius: 60% 40% 50% 50% / 50% 60% 30% 40%;
  bottom: 10%;
  right: 10%;
  z-index: 2;
  pointer-events: none;
}

.insight-vertical-line {
  position: absolute;
  width: 1px;
  height: 200px;
  background: linear-gradient(180deg, transparent, rgba(245, 158, 11, 0.2), transparent);
  top: 20%;
  right: 25%;
  z-index: 2;
  pointer-events: none;
}

.insight-content {
  position: relative;
  z-index: 10;
}

.insight-content h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .insight-content h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .insight-content h2 {
    font-size: 2.75rem;
  }
}

.insight-intro-text {
  color: var(--color-text-light-muted);
  font-size: 0.875rem;
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .insight-intro-text {
    font-size: 1rem;
    margin-bottom: var(--space-lg);
  }
}

.insight-pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: var(--space-lg);
}

@media (min-width: 768px) {
  .insight-pillars {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .insight-pillars {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.pillar-item {
  background: rgba(59, 130, 246, 0.05);
  border: 1px solid rgba(59, 130, 246, 0.1);
  padding: 1rem;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .pillar-item {
    padding: 1.5rem;
    gap: 1rem;
  }
}

.pillar-item h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--color-text-light);
  font-weight: 600;
}

@media (min-width: 768px) {
  .pillar-item h3 {
    font-size: 1.25rem;
  }
}

.pillar-item p {
  color: var(--color-text-light-muted);
  font-size: 0.8125rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .pillar-item p {
    font-size: 0.875rem;
  }
}

.pillar-icon {
  color: var(--color-secondary);
  font-size: 1.5rem;
}

.education-strategy-section {
  position: relative;
  background: var(--color-bg-dark-secondary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .education-strategy-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .education-strategy-section {
    padding: 6rem 0;
  }
}

.strategy-glow-cyan {
  position: absolute;
  width: 550px;
  height: 550px;
  background: rgba(6, 182, 212, 0.1);
  border-radius: 50%;
  filter: blur(95px);
  bottom: -100px;
  right: -200px;
  z-index: 1;
  pointer-events: none;
}

.strategy-floating-panel-1 {
  position: absolute;
  width: 220px;
  height: 160px;
  background: rgba(245, 158, 11, 0.03);
  border: 1px solid rgba(245, 158, 11, 0.08);
  border-radius: var(--radius-lg);
  top: 15%;
  left: 8%;
  transform: rotate(5deg);
  z-index: 2;
  pointer-events: none;
}

.strategy-accent-dot {
  position: absolute;
  width: 80px;
  height: 80px;
  background: rgba(16, 185, 129, 0.07);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.strategy-content {
  position: relative;
  z-index: 10;
}

.strategy-content h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .strategy-content h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .strategy-content h2 {
    font-size: 2.75rem;
  }
}

.strategy-description {
  color: var(--color-text-light-muted);
  font-size: 0.875rem;
  margin-bottom: var(--space-lg);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .strategy-description {
    font-size: 1rem;
    margin-bottom: var(--space-xl);
  }
}

.strategy-visual {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
}

.commitment-section {
  position: relative;
  background: var(--color-bg-dark-primary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .commitment-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .commitment-section {
    padding: 6rem 0;
  }
}

.commitment-gradient-mesh {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle at 30% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 60%);
  filter: blur(100px);
  top: -200px;
  right: -300px;
  z-index: 1;
  pointer-events: none;
}

.commitment-corner-accent {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 50%;
  bottom: 5%;
  left: 3%;
  z-index: 2;
  pointer-events: none;
}

.commitment-content {
  position: relative;
  z-index: 10;
}

.commitment-content h2 {
  font-family: var(--font-heading);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .commitment-content h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .commitment-content h2 {
    font-size: 2.75rem;
  }
}

.commitment-promise {
  color: var(--color-text-light-muted);
  font-size: 0.875rem;
  margin-bottom: var(--space-md);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .commitment-promise {
    font-size: 1rem;
    margin-bottom: var(--space-lg);
  }
}

.commitment-values {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: var(--space-lg);
}

@media (min-width: 768px) {
  .commitment-values {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .commitment-values {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.value-block {
  background: rgba(245, 158, 11, 0.05);
  border-left: 3px solid var(--color-secondary);
  padding: 1rem;
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .value-block {
    padding: 1.5rem;
    gap: 1rem;
  }
}

.value-block h3 {
  font-family: var(--font-heading);
  font-size: 1.125rem;
  color: var(--color-text-light);
  font-weight: 600;
}

@media (min-width: 768px) {
  .value-block h3 {
    font-size: 1.25rem;
  }
}

.value-block p {
  color: var(--color-text-light-muted);
  font-size: 0.8125rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .value-block p {
    font-size: 0.875rem;
  }
}

.disclaimer-section {
  position: relative;
  background: var(--color-bg-dark-tertiary);
  padding: 3rem 0;
  overflow: hidden;
  border-top: 1px solid rgba(59, 130, 246, 0.15);
}

@media (min-width: 768px) {
  .disclaimer-section {
    padding: 4rem 0;
  }
}

.disclaimer-subtle-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 50%;
  filter: blur(80px);
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.disclaimer-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
}

.disclaimer-content h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-text-light);
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .disclaimer-content h3 {
    font-size: 1.5rem;
    margin-bottom: var(--space-lg);
  }
}

.disclaimer-icon {
  color: var(--color-primary);
  font-size: 1.5rem;
}

.disclaimer-content p {
  color: var(--color-text-light-secondary);
  font-size: 0.875rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .disclaimer-content p {
    font-size: 0.9375rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

.legal-hub {
  font-family: var(--font-primary);
  background: var(--color-bg-light-primary);
  color: var(--color-text-dark);
}

.legal-hub .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-sm);
}

.legal-hub-content {
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

.legal-hub section {
  overflow: hidden;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .legal-hub section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .legal-hub section {
    padding: 6rem 0;
  }
}

.legal-hub h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: var(--space-sm);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .legal-hub h1 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .legal-hub h1 {
    font-size: 3rem;
  }
}

.legal-hub .updated-date {
  font-size: 0.875rem;
  color: var(--color-text-dark-muted);
  margin-bottom: var(--space-xl);
  font-weight: 500;
}

.legal-hub h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-text-dark);
  margin-bottom: var(--space-md);
  margin-top: var(--space-lg);
  line-height: 1.3;
}

@media (min-width: 768px) {
  .legal-hub h2 {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .legal-hub h2 {
    font-size: 2.25rem;
  }
}

.legal-hub p {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--color-text-dark-secondary);
  margin-bottom: var(--space-md);
  text-align: justify;
}

@media (min-width: 768px) {
  .legal-hub p {
    font-size: 1rem;
  }
}

.legal-hub ul,
.legal-hub ol {
  margin-left: var(--space-lg);
  margin-bottom: var(--space-md);
  color: var(--color-text-dark-secondary);
}

.legal-hub li {
  font-size: 0.875rem;
  line-height: 1.8;
  color: var(--color-text-dark-secondary);
  margin-bottom: var(--space-sm);
}

@media (min-width: 768px) {
  .legal-hub li {
    font-size: 1rem;
  }
}

.legal-hub strong {
  color: var(--color-text-dark);
  font-weight: 600;
}

.legal-hub em {
  font-style: italic;
  color: var(--color-text-dark-secondary);
}

.legal-hub .intro-section {
  background: var(--color-bg-light-primary);
}

.legal-hub .intro-section p {
  font-size: 0.875rem;
  color: var(--color-text-dark-secondary);
}

@media (min-width: 768px) {
  .legal-hub .intro-section p {
    font-size: 1rem;
  }
}

.legal-hub .contact-section {
  background: var(--color-bg-light-secondary);
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

.legal-hub .contact-section h2 {
  color: var(--color-text-dark);
}

.legal-hub .contact-section p {
  color: var(--color-text-dark-secondary);
  font-size: 0.875rem;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .legal-hub .contact-section p {
    font-size: 1rem;
  }
}

.legal-hub .contact-section strong {
  color: var(--color-text-dark);
  font-weight: 600;
}

.legal-hub a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.legal-hub a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.legal-hub .intro-section {
  padding-top: 3rem;
}

@media (min-width: 768px) {
  .legal-hub .intro-section {
    padding-top: 5rem;
  }
}

@media (min-width: 1024px) {
  .legal-hub .intro-section {
    padding-top: 6rem;
  }
}

.legal-hub .last-section {
  padding-bottom: 3rem;
}

@media (min-width: 768px) {
  .legal-hub .last-section {
    padding-bottom: 5rem;
  }
}

@media (min-width: 1024px) {
  .legal-hub .last-section {
    padding-bottom: 6rem;
  }
}

:root {
    --color-bg-dark-primary: #0a0f1e;
    --color-bg-dark-secondary: #0f1729;
    --color-bg-dark-tertiary: #1a2847;
    --color-bg-light-primary: #ffffff;
    --color-bg-light-secondary: #f8fafc;
    --color-bg-card-dark: rgba(59, 130, 246, 0.08);
    --color-text-light: #ffffff;
    --color-text-light-secondary: #e2e8f0;
    --color-text-light-muted: #94a3b8;
    --color-text-dark: #0f172a;
    --color-text-dark-secondary: #374151;
    --color-text-dark-muted: #6b7280;
    --color-primary: #3b82f6;
    --color-primary-hover: #2563eb;
    --color-primary-light: #60a5fa;
    --color-secondary: #06b6d4;
    --color-accent-gold: #f59e0b;
    --color-accent-green: #10b981;
    --font-primary: 'Inter', sans-serif;
    --font-heading: 'Playfair Display', serif;
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.2);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
  }

  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }

  body {
    font-family: var(--font-primary);
    line-height: 1.6;
  }

  .container {
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 var(--space-md);
  }

  
  .thank-hero-section {
    background: var(--color-bg-dark-primary);
    overflow: hidden;
    padding: 3rem 0;
  }

  @media (min-width: 768px) {
    .thank-hero-section {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .thank-hero-section {
      padding: 7rem 0;
    }
  }

  .thank-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .thank-hero-content {
      gap: 2rem;
    }
  }

  .thank-icon {
    font-size: 4rem;
    color: var(--color-accent-green);
    animation: bounce-in 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  }

  @media (min-width: 768px) {
    .thank-icon {
      font-size: 5rem;
    }
  }

  @media (min-width: 1024px) {
    .thank-icon {
      font-size: 6rem;
    }
  }

  .thank-hero-section h1 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--color-text-light);
    line-height: 1.2;
  }

  @media (min-width: 768px) {
    .thank-hero-section h1 {
      font-size: 3rem;
    }
  }

  @media (min-width: 1024px) {
    .thank-hero-section h1 {
      font-size: 3.75rem;
    }
  }

  .thank-lead {
    font-size: 1.125rem;
    color: var(--color-secondary);
    font-weight: 600;
  }

  @media (min-width: 768px) {
    .thank-lead {
      font-size: 1.25rem;
    }
  }

  .thank-subtitle {
    font-size: 0.875rem;
    color: var(--color-text-light-secondary);
    max-width: 600px;
  }

  @media (min-width: 768px) {
    .thank-subtitle {
      font-size: 1rem;
    }
  }

  
  .thank-content-section {
    background: var(--color-bg-dark-secondary);
    overflow: hidden;
    padding: 3rem 0;
  }

  @media (min-width: 768px) {
    .thank-content-section {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .thank-content-section {
      padding: 6rem 0;
    }
  }

  .thank-content {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }

  @media (min-width: 768px) {
    .thank-content {
      gap: 4rem;
    }
  }

  .thank-message-card {
    background: var(--color-bg-card-dark);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-lg);
    padding: 2rem;
  }

  @media (min-width: 768px) {
    .thank-message-card {
      padding: 3rem;
    }
  }

  @media (min-width: 1024px) {
    .thank-message-card {
      padding: 4rem;
    }
  }

  .thank-message-card h2 {
    font-family: var(--font-heading);
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    text-align: center;
  }

  @media (min-width: 768px) {
    .thank-message-card h2 {
      font-size: 2.25rem;
      margin-bottom: 3rem;
    }
  }

  .thank-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .thank-steps {
      gap: 2rem;
    }
  }

  .thank-step {
    display: flex;
    flex-direction: row;
    gap: 1.5rem;
    align-items: flex-start;
  }

  @media (min-width: 768px) {
    .thank-step {
      gap: 2rem;
    }
  }

  .step-icon {
    flex-shrink: 0;
    width: 3rem;
    height: 3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-md);
    color: var(--color-accent-green);
    font-size: 1.5rem;
  }

  @media (min-width: 768px) {
    .step-icon {
      width: 3.5rem;
      height: 3.5rem;
      font-size: 1.75rem;
    }
  }

  .step-text {
    flex: 1;
  }

  .step-text h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-light);
    margin-bottom: 0.5rem;
  }

  @media (min-width: 768px) {
    .step-text h3 {
      font-size: 1.25rem;
    }
  }

  .step-text p {
    font-size: 0.875rem;
    color: var(--color-text-light-secondary);
  }

  @media (min-width: 768px) {
    .step-text p {
      font-size: 0.9375rem;
    }
  }

  
  .thank-cta {
    display: flex;
    justify-content: center;
  }

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 2rem;
    font-size: 0.9375rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
  }

  @media (min-width: 768px) {
    .btn {
      padding: 1rem 2.5rem;
      font-size: 1rem;
    }
  }

  .btn-primary {
    background: var(--color-primary);
    color: var(--color-text-dark);
  }

  .btn-primary:hover {
    background: var(--color-primary-hover);
    box-shadow: 0 8px 16px rgba(59, 130, 246, 0.3);
    transform: translateY(-2px);
  }

  .btn-primary:active {
    transform: translateY(0);
  }

  
  @keyframes bounce-in {
    0% {
      opacity: 0;
      transform: scale(0.3);
    }
    50% {
      opacity: 1;
      transform: scale(1.05);
    }
    70% {
      transform: scale(0.9);
    }
    100% {
      transform: scale(1);
    }
  }

  @keyframes fade-up {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .thank-hero-content {
    animation: fade-up 0.8s ease-out 0.2s both;
  }

  .thank-message-card {
    animation: fade-up 0.8s ease-out 0.4s both;
  }

  .thank-cta {
    animation: fade-up 0.8s ease-out 0.6s both;
  }

  
  @media (max-width: 480px) {
    .container {
      padding: 0 1rem;
    }

    .thank-icon {
      font-size: 3.5rem;
    }

    .thank-step {
      flex-direction: column;
      gap: 1rem;
      align-items: center;
      text-align: center;
    }

    .step-icon {
      margin: 0 auto;
    }
  }

  

  

  .error-page {
    background: var(--color-bg-dark-primary);
    color: var(--color-text-light);
    overflow: hidden;
  }

  

  .error-hero-section {
    background: linear-gradient(135deg, var(--color-bg-dark-primary) 0%, var(--color-bg-dark-secondary) 100%);
    padding: 3rem 0;
    overflow: hidden;
    position: relative;
  }

  @media (min-width: 768px) {
    .error-hero-section {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .error-hero-section {
      padding: 6rem 0;
    }
  }

  .container {
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 1rem;
  }

  @media (min-width: 768px) {
    .container {
      padding: 0 2rem;
    }
  }

  .error-hero-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
  }

  @media (min-width: 1024px) {
    .error-hero-content {
      flex-direction: row;
      gap: 3rem;
      align-items: center;
      justify-content: space-between;
    }
  }

  

  .illustration-container {
    position: relative;
    width: 100%;
    height: 300px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 1rem;
  }

  @media (min-width: 1024px) {
    .illustration-container {
      width: 50%;
      height: 400px;
      gap: 1.5rem;
    }
  }

  .chart-visualization {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    gap: 1rem;
    width: 100%;
    height: 100%;
    position: relative;
  }

  @media (min-width: 1024px) {
    .chart-visualization {
      gap: 1.5rem;
    }
  }

  
  .chart-bar {
    width: 40px;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    border-radius: var(--radius-md);
    animation: barFloat 3s ease-in-out infinite;
    box-shadow: var(--shadow-lg);
  }

  @media (min-width: 768px) {
    .chart-bar {
      width: 50px;
    }
  }

  @media (min-width: 1024px) {
    .chart-bar {
      width: 60px;
    }
  }

  .bar-1 {
    height: 80px;
    animation-delay: 0s;
  }

  .bar-2 {
    height: 120px;
    animation-delay: 0.2s;
  }

  .bar-3 {
    height: 100px;
    animation-delay: 0.4s;
  }

  .bar-4 {
    height: 140px;
    animation-delay: 0.6s;
  }

  .bar-5 {
    height: 90px;
    animation-delay: 0.8s;
  }

  
  .error-marker {
    position: absolute;
    top: 20%;
    right: 15%;
    width: 60px;
    height: 60px;
    background: var(--color-accent-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-bg-dark-primary);
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(245, 158, 11, 0.5);
  }

  @media (min-width: 768px) {
    .error-marker {
      width: 70px;
      height: 70px;
      font-size: 1.75rem;
    }
  }

  
  .floating-element {
    position: absolute;
    border: 2px solid var(--color-primary);
    border-radius: 50%;
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
  }

  .float-1 {
    width: 40px;
    height: 40px;
    top: 10%;
    left: 10%;
    animation-delay: 0s;
  }

  .float-2 {
    width: 60px;
    height: 60px;
    bottom: 15%;
    right: 20%;
    animation-delay: 1s;
  }

  .float-3 {
    width: 35px;
    height: 35px;
    top: 50%;
    right: 10%;
    animation-delay: 2s;
  }

  

  .error-content {
    flex: 1;
    text-align: center;
  }

  @media (min-width: 1024px) {
    .error-content {
      text-align: left;
    }
  }

  
  .error-code-display {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-family: var(--font-heading);
    letter-spacing: -2px;
  }

  @media (min-width: 768px) {
    .error-code-display {
      font-size: 5rem;
      margin-bottom: 1.5rem;
    }
  }

  @media (min-width: 1024px) {
    .error-code-display {
      font-size: 6rem;
      margin-bottom: 2rem;
    }
  }

  .error-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-text-light);
    margin-bottom: 1rem;
    font-family: var(--font-primary);
  }

  @media (min-width: 768px) {
    .error-title {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
    }
  }

  @media (min-width: 1024px) {
    .error-title {
      font-size: 3rem;
      margin-bottom: 2rem;
    }
  }

  .error-subtitle {
    font-size: 0.875rem;
    color: var(--color-text-light-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  @media (min-width: 768px) {
    .error-subtitle {
      font-size: 1rem;
      margin-bottom: 2.5rem;
      max-width: none;
    }
  }

  @media (min-width: 1024px) {
    .error-subtitle {
      margin-left: 0;
      margin-right: 0;
    }
  }

  

  .help-section {
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    margin-bottom: 2rem;
  }

  @media (min-width: 768px) {
    .help-section {
      padding: 2rem;
      margin-bottom: 2.5rem;
    }
  }

  @media (min-width: 1024px) {
    .help-section {
      padding: 2rem;
      margin-bottom: 3rem;
    }
  }

  .help-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-light);
    margin-bottom: 1rem;
  }

  @media (min-width: 768px) {
    .help-title {
      font-size: 1.25rem;
      margin-bottom: 1.5rem;
    }
  }

  .help-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  @media (min-width: 768px) {
    .help-list {
      gap: 1rem;
    }
  }

  .help-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--color-text-light-secondary);
  }

  @media (min-width: 768px) {
    .help-item {
      font-size: 1rem;
      gap: 1rem;
    }
  }

  .help-item i {
    color: var(--color-accent-green);
    font-size: 1.25rem;
    flex-shrink: 0;
  }

  

  .btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-lg);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  @media (min-width: 768px) {
    .btn {
      padding: 1rem 2rem;
      font-size: 1rem;
    }
  }

  .btn-primary {
    background: var(--color-primary);
    color: var(--color-text-dark);
    border: none;
  }

  .btn-primary:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
  }

  .btn-large {
    margin-bottom: 1.5rem;
  }

  @media (min-width: 768px) {
    .btn-large {
      margin-bottom: 2rem;
    }
  }

  

  .context-box {
    background: rgba(148, 163, 184, 0.1);
    border-left: 4px solid var(--color-secondary);
    padding: 1rem;
    border-radius: var(--radius-md);
  }

  @media (min-width: 768px) {
    .context-box {
      padding: 1.5rem;
    }
  }

  .context-text {
    font-size: 0.875rem;
    color: var(--color-text-light-muted);
    margin: 0;
    line-height: 1.5;
  }

  @media (min-width: 768px) {
    .context-text {
      font-size: 0.95rem;
    }
  }

  

  .error-resources-section {
    background: var(--color-bg-dark-secondary);
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .error-resources-section {
      padding: 4rem 0;
    }
  }

  @media (min-width: 1024px) {
    .error-resources-section {
      padding: 5rem 0;
    }
  }

  .error-resources-content {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }

  @media (min-width: 1024px) {
    .error-resources-content {
      gap: 3rem;
    }
  }

  .resources-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: var(--color-text-light);
    text-align: center;
  }

  @media (min-width: 768px) {
    .resources-title {
      font-size: 2.25rem;
    }
  }

  @media (min-width: 1024px) {
    .resources-title {
      font-size: 2.5rem;
    }
  }

  

  .resource-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .resource-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .resource-grid {
      gap: 2.5rem;
    }
  }

  .resource-card {
    background: rgba(59, 130, 246, 0.08);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: all 0.3s ease;
  }

  @media (min-width: 768px) {
    .resource-card {
      padding: 2rem;
    }
  }

  .resource-card:hover {
    background: rgba(59, 130, 246, 0.12);
    border-color: rgba(59, 130, 246, 0.4);
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }

  .resource-card i {
    font-size: 2rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
  }

  @media (min-width: 768px) {
    .resource-card i {
      font-size: 2.5rem;
      margin-bottom: 1.5rem;
    }
  }

  .resource-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-light);
    margin-bottom: 0.75rem;
  }

  @media (min-width: 768px) {
    .resource-card h3 {
      font-size: 1.25rem;
      margin-bottom: 1rem;
    }
  }

  .resource-card p {
    font-size: 0.875rem;
    color: var(--color-text-light-secondary);
    margin: 0;
    line-height: 1.5;
  }

  @media (min-width: 768px) {
    .resource-card p {
      font-size: 0.95rem;
    }
  }

  

  @keyframes barFloat {
    0%, 100% {
      transform: translateY(0px);
      opacity: 1;
    }
    50% {
      transform: translateY(-10px);
      opacity: 0.8;
    }
  }

  @keyframes float {
    0%, 100% {
      transform: translate(0, 0) rotate(0deg);
      opacity: 0.3;
    }
    50% {
      transform: translate(20px, -20px) rotate(180deg);
      opacity: 0.6;
    }
  }

  @keyframes pulse {
    0%, 100% {
      transform: scale(1);
      opacity: 1;
    }
    50% {
      transform: scale(1.1);
      opacity: 0.8;
    }
  }

  

  @media (prefers-reduced-motion: reduce) {
    .chart-bar,
    .error-marker,
    .floating-element,
    .resource-card {
      animation: none;
    }

    .btn,
    .resource-card {
      transition: none;
    }
  }

  

  .btn:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
  }

  a:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
  }
  .header-capital-hub-mobile-menu.active{
    display: block;
    padding-top: 0px;
  }
  .header-capital-hub-mobile-toggle[aria-expanded="true"]{
    display: none;
  }
  .automatisierter-handel-step{
    display: flex;
    flex-direction: column;
  }