
    @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-primary: #ffffff;
  --color-bg-secondary: #f8fafc;
  --color-bg-tertiary: #f1f5f9;
  --color-bg-card: #ffffff;
  
  --color-text-primary: #1e293b;
  --color-text-secondary: #64748b;
  --color-text-muted: #94a3b8;
  
  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-secondary: #0891b2;
  
  --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.1);
}

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

html {
  scroll-behavior: smooth;
}

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;
}

section {
  overflow: hidden;
}

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: 2rem;
  margin-bottom: var(--space-lg);
}

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

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

h2 {
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
}

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

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

h3 {
  font-size: 1.375rem;
  margin-bottom: var(--space-sm);
}

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

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

h4 {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
}

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

p {
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
}

p:last-child {
  margin-bottom: 0;
}

a {
  text-decoration: none;
  transition: all 0.3s ease;
  color: var(--color-primary);
}

a:hover {
  color: var(--color-primary-hover);
}

ul,
ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

li {
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
}

@media (min-width: 768px) {
  .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

.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-secondary {
  background: var(--color-secondary);
  color: #ffffff;
}

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

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

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

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

.btn-white:hover {
  background: var(--color-bg-secondary);
  box-shadow: var(--shadow-lg);
}

.badge {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  font-size: 0.75rem;
  font-weight: 600;
  background: #dbeafe;
  color: #1e40af;
  border-radius: var(--radius-xl);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.badge-secondary {
  background: #cffafe;
  color: #0c4a6e;
}

.icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  background: #dbeafe;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .icon-wrapper {
    width: 3.5rem;
    height: 3.5rem;
  }
}

.icon-wrapper .fas {
  font-size: 1.5rem;
  color: var(--color-primary);
}

.card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .card {
    padding: 1.5rem;
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .card {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card h3 {
  color: var(--color-text-primary);
  margin-bottom: 0;
}

.card p {
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

.grid {
  display: grid;
  gap: 1rem;
}

@media (min-width: 768px) {
  .grid {
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .grid {
    gap: 2rem;
  }
}

.grid-2 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid-3 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid-4 {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .grid-4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.flex {
  display: flex;
  flex-direction: row;
  gap: var(--space-md);
}

.flex-col {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-muted {
  color: var(--color-text-muted);
}

.text-primary {
  color: var(--color-text-primary);
}

.text-secondary {
  color: var(--color-text-secondary);
}

.text-accent {
  color: var(--color-primary);
}

.mt-1 {
  margin-top: var(--space-sm);
}

.mt-2 {
  margin-top: var(--space-md);
}

.mt-3 {
  margin-top: var(--space-lg);
}

.mt-4 {
  margin-top: var(--space-xl);
}

.mb-1 {
  margin-bottom: var(--space-sm);
}

.mb-2 {
  margin-bottom: var(--space-md);
}

.mb-3 {
  margin-bottom: var(--space-lg);
}

.mb-4 {
  margin-bottom: var(--space-xl);
}

.gap-1 {
  gap: var(--space-sm);
}

.gap-2 {
  gap: var(--space-md);
}

.gap-3 {
  gap: var(--space-lg);
}

.gap-4 {
  gap: var(--space-xl);
}

input,
textarea,
select {
  font-family: var(--font-primary);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  transition: all 0.3s ease;
  background: var(--color-bg-card);
  color: var(--color-text-primary);
}

@media (min-width: 768px) {
  input,
  textarea,
  select {
    padding: 1rem 1.25rem;
  }
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

input::placeholder {
  color: var(--color-text-muted);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 500;
  color: var(--color-text-primary);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

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

@media (min-width: 768px) {
  .form-submit-btn {
    padding: 1rem 2.5rem;
    font-size: 1.0625rem;
  }
}

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

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

.checkbox-wrapper {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.checkbox-wrapper input[type="checkbox"] {
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
  padding: 0;
  margin: 0;
}

.checkbox-wrapper label {
  margin: 0;
  cursor: pointer;
  font-weight: 400;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.7;
  }
}

.fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

.slide-in-left {
  animation: slideInLeft 0.6s ease-out forwards;
}

.slide-in-right {
  animation: slideInRight 0.6s ease-out forwards;
}

.pulse {
  animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

  .header-finanz-hub {
    background: var(--color-bg-primary);
    border-bottom: 1px solid var(--color-bg-tertiary);
    position: static;
    width: 100%;
    top: 0;
    z-index: 100;
  }

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

  .header-finanz-hub-logo {
    text-decoration: none;
    display: flex;
    align-items: center;
    flex-shrink: 0;
  }

  .header-finanz-hub-brand {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: -0.5px;
  }

  .header-finanz-hub-desktop-nav {
    display: none;
    flex-direction: row;
    gap: 2.5rem;
    align-items: center;
    flex: 1;
    margin-left: 3rem;
  }

  .header-finanz-hub-nav-link {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-primary);
    text-decoration: none;
    transition: color 300ms ease-in-out;
    position: relative;
  }

  .header-finanz-hub-nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 300ms ease-in-out;
  }

  .header-finanz-hub-nav-link:hover {
    color: var(--color-primary);
  }

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

  .header-finanz-hub-cta-button {
    display: none;
    padding: 0.75rem 1.75rem;
    background: var(--color-primary);
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 300ms ease-in-out;
    border: none;
    cursor: pointer;
    white-space: nowrap;
  }

  .header-finanz-hub-cta-button:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.2);
  }

  .header-finanz-hub-cta-button:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
  }

  .header-finanz-hub-mobile-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--color-text-primary);
    font-size: 1.5rem;
    transition: color 300ms ease-in-out;
  }

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

  .header-finanz-hub-mobile-toggle:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: 4px;
  }

  .header-finanz-hub-mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-bg-primary);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateX(100%);
    transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 200;
    overflow-y: auto;
  }

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

  .header-finanz-hub-mobile-header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem;
    border-bottom: 1px solid var(--color-bg-tertiary);
    gap: 1rem;
  }

  .header-finanz-hub-mobile-title {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-primary);
  }

  .header-finanz-hub-mobile-close {
    background: transparent;
    border: none;
    cursor: pointer;
    color: var(--color-text-primary);
    font-size: 1.5rem;
    padding: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 300ms ease-in-out;
  }

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

  .header-finanz-hub-mobile-close:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 2px;
    border-radius: 4px;
  }

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

  .header-finanz-hub-mobile-link {
    padding: 1rem 1.5rem;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-text-primary);
    text-decoration: none;
    border-bottom: 1px solid var(--color-bg-tertiary);
    transition: all 300ms ease-in-out;
  }

  .header-finanz-hub-mobile-link:hover {
    background: var(--color-bg-secondary);
    color: var(--color-primary);
    padding-left: 2rem;
  }

  .header-finanz-hub-mobile-link:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: -2px;
  }

  .header-finanz-hub-mobile-cta {
    padding: 1rem 1.5rem;
    margin: 1.5rem;
    background: var(--color-primary);
    color: #ffffff;
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    text-align: center;
    transition: all 300ms ease-in-out;
    display: block;
  }

  .header-finanz-hub-mobile-cta:hover {
    background: var(--color-primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.2);
  }

  .header-finanz-hub-mobile-cta:focus-visible {
    outline: 2px solid var(--color-primary);
    outline-offset: 3px;
  }

  @media (min-width: 768px) {
    .header-finanz-hub-container {
      padding: 1.25rem 2rem;
      gap: 2rem;
    }

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

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

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

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

    .header-finanz-hub-mobile-menu {
      display: none;
    }
  }

  @media (min-width: 1024px) {
    .header-finanz-hub-container {
      padding: 1.5rem 2.5rem;
    }

    .header-finanz-hub-brand {
      font-size: 1.875rem;
    }

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

    .header-finanz-hub-nav-link {
      font-size: 1.05rem;
    }

    .header-finanz-hub-cta-button {
      padding: 0.875rem 2rem;
      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;
    }
  }

    @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-primary: #ffffff;
  --color-bg-secondary: #f8fafc;
  --color-bg-tertiary: #f1f5f9;
  --color-bg-card: #ffffff;
  
  --color-text-primary: #1e293b;
  --color-text-secondary: #64748b;
  --color-text-muted: #94a3b8;
  
  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-secondary: #0891b2;
  
  --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.1);
}

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

html {
  scroll-behavior: smooth;
}

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

.trading-hub {
  width: 100%;
  overflow: hidden;
}

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

section {
  position: relative;
  overflow: hidden;
}

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: 2rem;
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
}

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

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

h2 {
  font-size: 1.75rem;
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

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

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

h3 {
  font-size: 1.375rem;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

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

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

h4 {
  font-size: 1.125rem;
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

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

p {
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
  font-size: 1rem;
}

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

p:last-child {
  margin-bottom: 0;
}

a {
  text-decoration: none;
  transition: all 300ms ease;
  color: var(--color-primary);
}

a:hover {
  color: var(--color-primary-hover);
}

ul,
ol {
  margin-bottom: var(--space-md);
  padding-left: var(--space-lg);
}

li {
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: 0.75rem 1.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: var(--radius-lg);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  text-decoration: none;
  border: 2px solid transparent;
  font-family: var(--font-primary);
}

@media (min-width: 768px) {
  .btn {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

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

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

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

.btn-secondary:hover {
  background: #0e7490;
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

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

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

.btn:active {
  transform: translateY(-1px);
  transition-duration: 150ms;
}

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

input,
textarea,
select {
  font-family: var(--font-primary);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-md);
  transition: all 300ms ease;
  background: var(--color-bg-card);
  color: var(--color-text-primary);
  width: 100%;
}

@media (min-width: 768px) {
  input,
  textarea,
  select {
    padding: 1rem 1.25rem;
  }
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

input::placeholder {
  color: var(--color-text-muted);
}

textarea {
  resize: vertical;
  min-height: 120px;
}

label {
  display: block;
  margin-bottom: var(--space-sm);
  font-weight: 500;
  color: var(--color-text-primary);
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
  margin-bottom: var(--space-lg);
}

.form-submit-btn {
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: var(--radius-lg);
  background: var(--color-primary);
  color: #ffffff;
  cursor: pointer;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  font-family: var(--font-primary);
}

@media (min-width: 768px) {
  .form-submit-btn {
    padding: 1rem 2.5rem;
    font-size: 1.0625rem;
  }
}

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

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

.checkbox-wrapper {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.checkbox-wrapper input[type="checkbox"] {
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
  padding: 0;
  margin: 0;
  margin-top: 2px;
  flex-shrink: 0;
}

.checkbox-wrapper label {
  margin: 0;
  cursor: pointer;
  font-weight: 400;
}

.checkbox-wrapper a {
  color: var(--color-primary);
}

.hero-section {
  background: var(--color-bg-primary);
  padding: 3rem 0;
}

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

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

.hero-gradient-field {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  filter: blur(100px);
  top: -200px;
  left: -100px;
  z-index: 1;
  pointer-events: none;
}

.hero-glow-primary {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
  filter: blur(80px);
  bottom: -150px;
  right: -150px;
  z-index: 1;
  pointer-events: none;
}

.hero-accent-orb-left {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.05) 0%, transparent 70%);
  filter: blur(70px);
  top: 100px;
  right: 15%;
  z-index: 1;
  pointer-events: none;
}

.hero-accent-orb-right {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(234, 179, 8, 0.04) 0%, transparent 70%);
  filter: blur(60px);
  bottom: 50px;
  left: 10%;
  z-index: 1;
  pointer-events: none;
}

.hero-floating-shape {
  position: absolute;
  width: 280px;
  height: 320px;
  background: rgba(59, 130, 246, 0.03);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  top: 20%;
  right: 8%;
  z-index: 2;
  pointer-events: none;
}

.hero-light-ray {
  position: absolute;
  width: 400px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.15), transparent);
  top: 35%;
  left: 10%;
  z-index: 2;
  pointer-events: none;
}

.hero-corner-accent {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(139, 92, 246, 0.04);
  border: 1px solid rgba(139, 92, 246, 0.1);
  border-radius: var(--radius-xl);
  bottom: 100px;
  right: 50px;
  transform: rotate(-12deg);
  z-index: 1;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.hero-tagline {
  font-size: 1rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-xl);
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-tagline {
    font-size: 1.125rem;
  }
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  justify-content: center;
  align-items: center;
  margin-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
  .hero-cta-group {
    flex-direction: row;
    gap: var(--space-lg);
  }
}

.hero-stats {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  justify-content: center;
  align-items: center;
}

@media (min-width: 768px) {
  .hero-stats {
    flex-direction: row;
    gap: 3rem;
  }
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

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

@media (min-width: 768px) {
  .stat-number {
    font-size: 1.875rem;
  }
}

.stat-label {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  font-weight: 500;
}

.about-section {
  background: var(--color-bg-secondary);
  padding: 3rem 0;
}

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

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

.about-glow-backdrop {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.08) 0%, transparent 70%);
  filter: blur(90px);
  top: -100px;
  right: -150px;
  z-index: 1;
  pointer-events: none;
}

.about-shape-accent-1 {
  position: absolute;
  width: 300px;
  height: 280px;
  background: rgba(59, 130, 246, 0.03);
  border-radius: 45% 55% 40% 60% / 55% 45% 60% 40%;
  bottom: 100px;
  left: 5%;
  z-index: 1;
  pointer-events: none;
}

.about-shape-accent-2 {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(139, 92, 246, 0.02);
  border-radius: 70% 30% 65% 35% / 35% 65% 35% 65%;
  top: 50%;
  right: 10%;
  z-index: 2;
  pointer-events: none;
}

.about-line-element {
  position: absolute;
  width: 350px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.2), transparent);
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}

.about-float-panel {
  position: absolute;
  width: 200px;
  height: 160px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: var(--radius-xl);
  bottom: 80px;
  right: 15%;
  transform: rotate(8deg);
  z-index: 1;
  pointer-events: none;
}

.about-corner-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(234, 179, 8, 0.04) 0%, transparent 70%);
  filter: blur(70px);
  top: 200px;
  left: -100px;
  z-index: 1;
  pointer-events: none;
}

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

@media (min-width: 768px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .about-content {
    gap: 4rem;
  }
}

.about-text ul {
  list-style: none;
  padding-left: 0;
}

.about-text li {
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: 1rem;
}

.about-text li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5rem;
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
}

.about-image {
  display: none;
}

@media (min-width: 768px) {
  .about-image {
    display: block;
  }
}

.about-visual {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.fundamentals-section {
  background: var(--color-bg-primary);
  padding: 3rem 0;
}

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

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

.fund-gradient-mesh-1 {
  position: absolute;
  width: 850px;
  height: 850px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.07) 0%, transparent 70%);
  filter: blur(100px);
  top: -200px;
  right: -300px;
  z-index: 1;
  pointer-events: none;
}

.fund-gradient-mesh-2 {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
  filter: blur(90px);
  bottom: -150px;
  left: -100px;
  z-index: 1;
  pointer-events: none;
}

.fund-glow-accent {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
  filter: blur(80px);
  top: 50%;
  left: 10%;
  z-index: 1;
  pointer-events: none;
}

.fund-shape-left {
  position: absolute;
  width: 280px;
  height: 300px;
  background: rgba(59, 130, 246, 0.03);
  border-radius: 55% 45% 50% 50% / 50% 50% 45% 55%;
  top: 100px;
  left: 5%;
  z-index: 2;
  pointer-events: none;
}

.fund-shape-right {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(234, 179, 8, 0.03);
  border-radius: 70% 30% 60% 40% / 40% 60% 30% 70%;
  bottom: 150px;
  right: 8%;
  z-index: 2;
  pointer-events: none;
}

.fund-float-element {
  position: absolute;
  width: 180px;
  height: 140px;
  background: rgba(139, 92, 246, 0.02);
  border: 1px solid rgba(139, 92, 246, 0.08);
  border-radius: var(--radius-xl);
  top: 40%;
  right: 20%;
  transform: rotate(-15deg);
  z-index: 1;
  pointer-events: none;
}

.fund-line-accent {
  position: absolute;
  width: 500px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.15), transparent);
  bottom: 30%;
  left: 5%;
  z-index: 1;
  pointer-events: none;
}

.fundamentals-content {
  position: relative;
  z-index: 10;
}

.fund-header {
  text-align: center;
  margin-bottom: var(--space-3xl);
}

@media (min-width: 768px) {
  .fund-header {
    margin-bottom: 4rem;
  }
}

.fund-header p {
  font-size: 1.0625rem;
  color: var(--color-text-secondary);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

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

@media (min-width: 768px) {
  .fund-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .fund-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.fund-card {
  background: var(--color-bg-card);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .fund-card {
    padding: 2rem;
    gap: 1.25rem;
  }
}

.fund-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: rgba(37, 99, 235, 0.2);
}

.fund-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: rgba(37, 99, 235, 0.1);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.fund-card-icon .fas {
  font-size: 1.5rem;
  color: var(--color-primary);
}

.fund-card h3 {
  margin-bottom: 0;
}

.fund-card p {
  margin-bottom: 0;
  color: var(--color-text-secondary);
}

.featured-section {
  background: var(--color-bg-secondary);
  padding: 3rem 0;
}

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

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

.feat-ambient-glow {
  position: absolute;
  width: 750px;
  height: 750px;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.07) 0%, transparent 70%);
  filter: blur(95px);
  top: -150px;
  left: -200px;
  z-index: 1;
  pointer-events: none;
}

.feat-shape-backdrop {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.05) 0%, transparent 70%);
  filter: blur(85px);
  bottom: -100px;
  right: -150px;
  z-index: 1;
  pointer-events: none;
}

.feat-accent-1 {
  position: absolute;
  width: 320px;
  height: 300px;
  background: rgba(37, 99, 235, 0.03);
  border-radius: 60% 40% 65% 35% / 35% 65% 35% 65%;
  top: 15%;
  right: 12%;
  z-index: 2;
  pointer-events: none;
}

.feat-accent-2 {
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(234, 179, 8, 0.03);
  border-radius: 45% 55% 50% 50% / 50% 50% 55% 45%;
  bottom: 15%;
  left: 10%;
  z-index: 2;
  pointer-events: none;
}

.feat-line-top {
  position: absolute;
  width: 600px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.12), transparent);
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}

.feat-float-element-1 {
  position: absolute;
  width: 170px;
  height: 130px;
  background: rgba(139, 92, 246, 0.02);
  border: 1px solid rgba(139, 92, 246, 0.08);
  border-radius: var(--radius-lg);
  top: 35%;
  left: 8%;
  transform: rotate(10deg);
  z-index: 1;
  pointer-events: none;
}

.feat-float-element-2 {
  position: absolute;
  width: 160px;
  height: 140px;
  background: rgba(6, 182, 212, 0.02);
  border: 1px solid rgba(6, 182, 212, 0.08);
  border-radius: var(--radius-lg);
  bottom: 20%;
  right: 5%;
  transform: rotate(-8deg);
  z-index: 1;
  pointer-events: none;
}

.featured-content {
  position: relative;
  z-index: 10;
}

.feat-header {
  text-align: center;
  margin-bottom: 2.5rem;
}

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

@media (min-width: 1024px) {
  .feat-header {
    margin-bottom: 4rem;
  }
}

.feat-header p {
  color: var(--color-text-secondary);
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

.feat-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .feat-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .feat-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.feat-card {
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.feat-card:hover {
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
}

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

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

@media (min-width: 768px) {
  .feat-card-content {
    padding: 2rem;
  }
}

.feat-card-content h3 {
  color: var(--color-text-primary);
  margin-bottom: 0;
}

.feat-card-content p {
  color: var(--color-text-secondary);
  margin-bottom: 0;
  flex-grow: 1;
}

.feat-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  transition: all 300ms ease;
  text-decoration: none;
  margin-top: auto;
}

.feat-card-link:hover {
  color: var(--color-primary-hover);
  gap: 0.75rem;
}

.feat-card-link .fas {
  font-size: 0.875rem;
}

.feat-cta-link {
  text-align: center;
}

.path-glow-primary {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  filter: blur(100px);
  top: -300px;
  right: -200px;
  z-index: 1;
  pointer-events: none;
}

.path-glow-secondary {
  position: absolute;
  width: 650px;
  height: 650px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
  filter: blur(85px);
  bottom: -100px;
  left: -150px;
  z-index: 1;
  pointer-events: none;
}

.path-shape-1 {
  position: absolute;
  width: 320px;
  height: 300px;
  background: rgba(6, 182, 212, 0.03);
  border-radius: 65% 35% 60% 40% / 40% 60% 35% 65%;
  top: 25%;
  left: 10%;
  z-index: 2;
  pointer-events: none;
}

.path-shape-2 {
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(234, 179, 8, 0.02);
  border-radius: 50% 50% 55% 45% / 45% 55% 50% 50%;
  bottom: 10%;
  right: 8%;
  z-index: 2;
  pointer-events: none;
}

.path-accent-line {
  position: absolute;
  width: 700px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}

.path-float-panel-1 {
  position: absolute;
  width: 190px;
  height: 150px;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: var(--radius-lg);
  top: 15%;
  right: 15%;
  transform: rotate(12deg);
  z-index: 1;
  pointer-events: none;
}

.path-float-panel-2 {
  position: absolute;
  width: 170px;
  height: 140px;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(139, 92, 246, 0.08);
  border-radius: var(--radius-lg);
  bottom: 25%;
  left: 12%;
  transform: rotate(-8deg);
  z-index: 1;
  pointer-events: none;
}

.learning-path-section {
  background: var(--color-bg-primary);
  padding: 3rem 0;
}

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

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

.path-content {
  position: relative;
  z-index: 10;
}

.path-content h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .path-content h2 {
    margin-bottom: 3.5rem;
  }
}

.path-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .path-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .path-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.path-step {
  background: var(--color-bg-secondary);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
  .path-step {
    padding: 2rem;
  }
}

.path-step:hover {
  background: var(--color-bg-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.step-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: rgba(37, 99, 235, 0.12);
  border-radius: var(--radius-lg);
  flex-shrink: 0;
}

.step-icon .fas {
  font-size: 1.25rem;
  color: var(--color-primary);
}

.path-step h3 {
  margin-bottom: 0;
  color: var(--color-text-primary);
}

.path-step p {
  margin-bottom: 0;
  color: var(--color-text-secondary);
}

.path-description {
  background: var(--color-bg-secondary);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

@media (min-width: 768px) {
  .path-description {
    padding: 2.5rem;
  }
}

.path-description p {
  color: var(--color-text-secondary);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}

.lit-gradient-field {
  position: absolute;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.07) 0%, transparent 70%);
  filter: blur(100px);
  bottom: -200px;
  left: -300px;
  z-index: 1;
  pointer-events: none;
}

.lit-glow-left {
  position: absolute;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
  filter: blur(85px);
  top: 100px;
  right: 60%;
  z-index: 1;
  pointer-events: none;
}

.lit-glow-right {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
  filter: blur(90px);
  top: -100px;
  right: -100px;
  z-index: 1;
  pointer-events: none;
}

.lit-shape-accent {
  position: absolute;
  width: 320px;
  height: 300px;
  background: rgba(37, 99, 235, 0.03);
  border-radius: 55% 45% 60% 40% / 40% 60% 45% 55%;
  top: 40%;
  left: 5%;
  z-index: 2;
  pointer-events: none;
}

.lit-float-card {
  position: absolute;
  width: 200px;
  height: 160px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: var(--radius-xl);
  top: 20%;
  right: 10%;
  transform: rotate(-10deg);
  z-index: 1;
  pointer-events: none;
}

.lit-corner-accent {
  position: absolute;
  width: 140px;
  height: 140px;
  background: rgba(139, 92, 246, 0.03);
  border: 1px solid rgba(139, 92, 246, 0.1);
  border-radius: var(--radius-xl);
  bottom: 50px;
  left: 50px;
  transform: rotate(15deg);
  z-index: 1;
  pointer-events: none;
}

.literacy-section {
  background: var(--color-bg-secondary);
  padding: 3rem 0;
}

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

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

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

@media (min-width: 768px) {
  .literacy-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .literacy-content {
    gap: 4rem;
  }
}

.lit-text ul {
  list-style: none;
  padding-left: 0;
}

.lit-text li {
  padding-left: 1.75rem;
  position: relative;
  margin-bottom: 1rem;
  color: var(--color-text-secondary);
}

.lit-text li:before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.6rem;
  width: 6px;
  height: 6px;
  background: var(--color-primary);
  border-radius: 50%;
}

.lit-visual {
  display: none;
}

@media (min-width: 768px) {
  .lit-visual {
    display: block;
  }
}

.lit-image {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.res-ambient-glow {
  position: absolute;
  width: 750px;
  height: 750px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.07) 0%, transparent 70%);
  filter: blur(95px);
  top: -200px;
  right: -150px;
  z-index: 1;
  pointer-events: none;
}

.res-shape-1 {
  position: absolute;
  width: 300px;
  height: 280px;
  background: rgba(139, 92, 246, 0.03);
  border-radius: 60% 40% 65% 35% / 35% 65% 40% 60%;
  bottom: 100px;
  left: 5%;
  z-index: 2;
  pointer-events: none;
}

.res-shape-2 {
  position: absolute;
  width: 260px;
  height: 260px;
  background: rgba(6, 182, 212, 0.03);
  border-radius: 45% 55% 50% 50% / 50% 50% 55% 45%;
  top: 50%;
  right: 8%;
  z-index: 2;
  pointer-events: none;
}

.res-line-accent {
  position: absolute;
  width: 600px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}

.res-float-element {
  position: absolute;
  width: 180px;
  height: 140px;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(139, 92, 246, 0.08);
  border-radius: var(--radius-lg);
  top: 20%;
  right: 15%;
  transform: rotate(8deg);
  z-index: 1;
  pointer-events: none;
}

.res-glow-corner {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(234, 179, 8, 0.04) 0%, transparent 70%);
  filter: blur(70px);
  bottom: -50px;
  left: -100px;
  z-index: 1;
  pointer-events: none;
}

.resources-section {
  background: var(--color-bg-primary);
  padding: 3rem 0;
}

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

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

.resources-content {
  position: relative;
  z-index: 10;
}

.resources-content h2 {
  text-align: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .resources-content h2 {
    margin-bottom: 3.5rem;
  }
}

.resources-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .resources-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .resources-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.resource-item {
  background: var(--color-bg-secondary);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
  .resource-item {
    padding: 2rem;
  }
}

.resource-item:hover {
  background: var(--color-bg-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.resource-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: rgba(37, 99, 235, 0.12);
  border-radius: var(--radius-lg);
  margin: 0 auto;
}

.resource-icon .fas {
  font-size: 1.5rem;
  color: var(--color-primary);
}

.resource-item h3 {
  color: var(--color-text-primary);
  margin-bottom: 0;
}

.resource-item p {
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

.resources-footer {
  background: var(--color-bg-secondary);
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

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

.resources-footer p {
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

.contact-glow-backdrop {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.08) 0%, transparent 70%);
  filter: blur(100px);
  top: -200px;
  left: -200px;
  z-index: 1;
  pointer-events: none;
}

.contact-shape-left {
  position: absolute;
  width: 320px;
  height: 300px;
  background: rgba(37, 99, 235, 0.03);
  border-radius: 65% 35% 55% 45% / 45% 55% 35% 65%;
  top: 30%;
  right: 60%;
  z-index: 2;
  pointer-events: none;
}

.contact-shape-right {
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(139, 92, 246, 0.03);
  border-radius: 50% 50% 60% 40% / 40% 60% 50% 50%;
  bottom: 50px;
  right: 5%;
  z-index: 2;
  pointer-events: none;
}

.contact-accent-line {
  position: absolute;
  width: 700px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.12), transparent);
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}

.contact-float-panel-1 {
  position: absolute;
  width: 200px;
  height: 160px;
  background: rgba(255, 255, 255, 0.35);
  border: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: var(--radius-lg);
  top: 15%;
  left: 10%;
  transform: rotate(-12deg);
  z-index: 1;
  pointer-events: none;
}

.contact-float-panel-2 {
  position: absolute;
  width: 170px;
  height: 140px;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(139, 92, 246, 0.08);
  border-radius: var(--radius-lg);
  top: 50%;
  right: 15%;
  transform: rotate(10deg);
  z-index: 1;
  pointer-events: none;
}

.contact-section {
  background: var(--color-bg-secondary);
  padding: 3rem 0;
}

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

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

.contact-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

@media (min-width: 768px) {
  .contact-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .contact-content {
    gap: 4rem;
  }
}

.contact-form-block {
  background: var(--color-bg-card);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .contact-form-block {
    padding: 2.5rem;
  }
}

.contact-form-block h2 {
  margin-top: 0;
}

.contact-form {
  margin-top: var(--space-xl);
}

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

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

.contact-info-block h3 {
  color: var(--color-text-primary);
}

.faq-item {
  background: var(--color-bg-card);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .faq-item {
    padding: 2rem;
  }
}

.faq-item h4 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.faq-item p {
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1e293b;
  padding: 1.5rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  max-height: 0;
  overflow: hidden;
  transition: max-height 300ms ease;
}

.cookie-banner.show {
  max-height: 300px;
}

@media (min-width: 768px) {
  .cookie-banner {
    padding: 2rem;
  }
}

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

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

.cookie-content p {
  color: #cbd5e1;
  margin-bottom: 0;
  flex-grow: 1;
}

.cookie-actions {
  display: flex;
  gap: 1rem;
  width: 100%;
}

@media (min-width: 768px) {
  .cookie-actions {
    width: auto;
  }
}

.cookie-accept,
.cookie-decline {
  padding: 0.75rem 1.5rem;
  border: none;
  border-radius: var(--radius-lg);
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-primary);
  transition: all 300ms ease;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .cookie-accept,
  .cookie-decline {
    padding: 0.875rem 1.75rem;
    font-size: 1rem;
  }
}

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

.cookie-accept:hover {
  background: var(--color-primary-hover);
  transform: translateY(-2px);
}

.cookie-decline {
  background: transparent;
  color: #cbd5e1;
  border: 1px solid #cbd5e1;
}

.cookie-decline:hover {
  background: rgba(255, 255, 255, 0.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-secondary);
    color: var(--color-text-primary);
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
  }

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

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

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

  @media (min-width: 1024px) {
    .footer-content {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
      margin-bottom: 3rem;
    }
  }

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

  @media (min-width: 1024px) {
    .footer-about {
      grid-column: 1 / -1;
      margin-bottom: 1rem;
    }
  }

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

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

  .footer-about-text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin: 0;
  }

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

  .footer-navigation,
  .footer-contact,
  .footer-legal {
    margin-bottom: 2rem;
  }

  @media (min-width: 1024px) {
    .footer-navigation,
    .footer-contact,
    .footer-legal {
      margin-bottom: 0;
    }
  }

  .footer-nav-title,
  .footer-contact-title,
  .footer-legal-title {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    letter-spacing: -0.3px;
  }

  @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-size: 0.875rem;
    color: var(--color-text-secondary);
    text-decoration: none;
    transition: color 300ms cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
  }

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

  .footer-link:hover {
    color: var(--color-primary);
  }

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

  .footer-contact-info {
    display: block;
  }

  .footer-contact-item {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin: 0;
  }

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

  .footer-divider {
    height: 1px;
    background: rgba(0, 0, 0, 0.08);
    margin: 2rem 0;
  }

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

  .footer-bottom {
    text-align: center;
  }

  .footer-copyright {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin: 0;
  }

  @media (min-width: 768px) {
    .footer-copyright {
      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-finanzliteralitaet-leitfaden {
      background: var(--color-bg-primary);
    }

    .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-breadcrumbs {
      background: var(--color-bg-secondary);
      padding: 1rem 0;
    }

    @media (min-width: 768px) {
      .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-breadcrumbs {
        padding: 1.25rem 0;
      }
    }

    .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-breadcrumbs nav {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 0.875rem;
    }

    @media (min-width: 768px) {
      .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-breadcrumbs nav {
        font-size: 0.9375rem;
      }
    }

    .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-breadcrumbs a {
      color: var(--color-primary);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-breadcrumbs a:hover {
      color: var(--color-primary-hover);
    }

    .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-breadcrumbs span {
      color: var(--color-text-secondary);
    }

    .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-hero {
      background: var(--color-bg-primary);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-hero {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-hero {
        padding: 6rem 0;
      }
    }

    .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-hero-content {
      position: relative;
      z-index: 10;
      display: grid;
      gap: 2rem;
    }

    @media (min-width: 1024px) {
      .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
      }
    }

    .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-hero-text h1 {
      color: var(--color-text-primary);
      font-size: 2rem;
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-hero-text h1 {
        font-size: 2.75rem;
        margin-bottom: 1.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-hero-text h1 {
        font-size: 3.5rem;
        margin-bottom: 1.5rem;
      }
    }

    .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-hero-text p {
      color: var(--color-text-secondary);
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-hero-text p {
        font-size: 1.125rem;
        margin-bottom: 2rem;
      }
    }

    .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-hero-meta {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      font-size: 0.875rem;
      color: var(--color-text-muted);
    }

    @media (min-width: 768px) {
      .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-hero-meta {
        flex-direction: row;
        gap: 1.5rem;
        font-size: 0.9375rem;
      }
    }

    .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-hero-image {
      position: relative;
      width: 100%;
      height: 300px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
    }

    @media (min-width: 768px) {
      .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-hero-image {
        height: 350px;
      }
    }

    @media (min-width: 1024px) {
      .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-hero-image {
        height: 400px;
      }
    }

    .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-content-section {
      background: var(--color-bg-primary);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-content-section {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-content-section {
        padding: 6rem 0;
      }
    }

    .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-content-section:nth-child(even) {
      background: var(--color-bg-secondary);
    }

    .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-content-wrapper {
      position: relative;
      z-index: 10;
    }

    .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-section-heading {
      color: var(--color-text-primary);
      font-size: 1.75rem;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-section-heading {
        font-size: 2.25rem;
        margin-bottom: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-section-heading {
        font-size: 2.75rem;
        margin-bottom: 2.5rem;
      }
    }

    .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-section-content {
      display: grid;
      gap: 2rem;
      margin-bottom: 2rem;
    }

    @media (min-width: 768px) {
      .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-section-content {
        gap: 3rem;
        margin-bottom: 3rem;
      }
    }

    @media (min-width: 1024px) {
      .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-section-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
      }
    }

    .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-section-text p {
      color: var(--color-text-secondary);
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 1.25rem;
    }

    @media (min-width: 768px) {
      .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-section-text p {
        font-size: 1.0625rem;
        line-height: 1.75;
        margin-bottom: 1.5rem;
      }
    }

    .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-section-text p:last-child {
      margin-bottom: 0;
    }

    .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-highlight-box {
      background: #dbeafe;
      border-left: 4px solid var(--color-primary);
      padding: 1.5rem;
      border-radius: var(--radius-md);
      margin: 1.5rem 0;
    }

    @media (min-width: 768px) {
      .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-highlight-box {
        padding: 2rem;
        margin: 2rem 0;
      }
    }

    .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-highlight-box p {
      color: #1e40af;
      margin-bottom: 0;
      font-weight: 500;
    }

    .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-section-image {
      position: relative;
      width: 100%;
      height: 280px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
    }

    @media (min-width: 768px) {
      .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-section-image {
        height: 320px;
      }
    }

    @media (min-width: 1024px) {
      .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-section-image {
        height: 380px;
      }
    }

    .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-section-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-quote-section {
      background: var(--color-bg-tertiary);
      padding: 2rem;
      border-radius: var(--radius-lg);
      border-left: 4px solid var(--color-secondary);
      margin: 2rem 0;
      font-style: italic;
      color: var(--color-text-primary);
      font-size: 1.125rem;
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-quote-section {
        padding: 2.5rem;
        margin: 2.5rem 0;
        font-size: 1.25rem;
      }
    }

    .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-list-section {
      margin: 1.5rem 0;
    }

    @media (min-width: 768px) {
      .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-list-section {
        margin: 2rem 0;
      }
    }

    .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-list-section ul {
      list-style: none;
      padding: 0;
    }

    .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-list-section li {
      display: flex;
      align-items: flex-start;
      gap: 1rem;
      margin-bottom: 1rem;
      color: var(--color-text-secondary);
      font-size: 1rem;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-list-section li {
        gap: 1.25rem;
        margin-bottom: 1.25rem;
        font-size: 1.0625rem;
      }
    }

    .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-list-section li::before {
      content: '';
      color: var(--color-primary);
      font-weight: 700;
      flex-shrink: 0;
      font-size: 1.25rem;
      margin-top: 2px;
    }

    .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-disclaimer-section {
      background: var(--color-bg-secondary);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-disclaimer-section {
        padding: 4rem 0;
      }
    }

    .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-disclaimer-wrapper {
      position: relative;
      z-index: 10;
      background: #fef3c7;
      border: 2px solid #fbbf24;
      border-radius: var(--radius-lg);
      padding: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-disclaimer-wrapper {
        padding: 2rem;
      }
    }

    .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-disclaimer-title {
      color: #92400e;
      font-weight: 600;
      font-size: 1.0625rem;
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    @media (min-width: 768px) {
      .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-disclaimer-title {
        font-size: 1.125rem;
        margin-bottom: 1rem;
      }
    }

    .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-disclaimer-title i {
      font-size: 1.25rem;
    }

    .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-disclaimer-text {
      color: #78350f;
      font-size: 0.9375rem;
      line-height: 1.6;
      margin: 0;
    }

    @media (min-width: 768px) {
      .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-disclaimer-text {
        font-size: 1rem;
        line-height: 1.7;
      }
    }

    .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-related-section {
      background: var(--color-bg-primary);
      padding: 3rem 0;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-related-section {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-related-section {
        padding: 6rem 0;
      }
    }

    .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-related-wrapper {
      position: relative;
      z-index: 10;
    }

    .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-related-title {
      color: var(--color-text-primary);
      font-size: 1.75rem;
      margin-bottom: 2rem;
      text-align: center;
    }

    @media (min-width: 768px) {
      .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-related-title {
        font-size: 2.25rem;
        margin-bottom: 2.5rem;
      }
    }

    .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-related-grid {
      display: grid;
      gap: 1.5rem;
      grid-template-columns: 1fr;
    }

    @media (min-width: 768px) {
      .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-related-grid {
        gap: 2rem;
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-related-grid {
        gap: 2.5rem;
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-related-card {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding: 1.5rem;
      background: var(--color-bg-card);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      text-decoration: none;
      transition: all 0.3s ease;
    }

    @media (min-width: 768px) {
      .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-related-card {
        padding: 1.75rem;
        gap: 1.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-related-card {
        padding: 2rem;
        gap: 1.5rem;
      }
    }

    .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-related-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }

    .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-related-card h3 {
      color: var(--color-text-primary);
      font-size: 1.25rem;
      margin: 0;
    }

    @media (min-width: 768px) {
      .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-related-card h3 {
        font-size: 1.375rem;
      }
    }

    .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-related-card p {
      color: var(--color-text-secondary);
      font-size: 0.9375rem;
      line-height: 1.6;
      margin: 0;
    }

    @media (min-width: 768px) {
      .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-related-card p {
        font-size: 1rem;
        line-height: 1.7;
      }
    }

    .post-finanzliteralitaet-leitfaden .finanzliteralitaet-leitfaden-related-card-arrow {
      color: var(--color-primary);
      font-weight: 600;
      margin-top: 0.5rem;
    }

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

.post-technische-analyse-grundlagen {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.technische-analyse-grundlagen-breadcrumbs {
  background: var(--color-bg-secondary);
  padding: 1rem 0;
  border-bottom: 1px solid #e2e8f0;
}

@media (min-width: 768px) {
  .technische-analyse-grundlagen-breadcrumbs {
    padding: 1.25rem 0;
  }
}

.technische-analyse-grundlagen-breadcrumb-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .technische-analyse-grundlagen-breadcrumb-content {
    gap: 1rem;
    font-size: 1rem;
  }
}

.technische-analyse-grundlagen-breadcrumb-link {
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.technische-analyse-grundlagen-breadcrumb-link:hover {
  color: var(--color-primary-hover);
}

.technische-analyse-grundlagen-breadcrumb-separator {
  color: #cbd5e1;
}

.technische-analyse-grundlagen-breadcrumb-current {
  color: var(--color-text-secondary);
}

.technische-analyse-grundlagen-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .technische-analyse-grundlagen-hero {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .technische-analyse-grundlagen-hero {
    padding: 6rem 0;
  }
}

.technische-analyse-grundlagen-hero-deco-1 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  top: -100px;
  left: -100px;
  z-index: 1;
  pointer-events: none;
}

.technische-analyse-grundlagen-hero-deco-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
  filter: blur(60px);
  top: 50px;
  right: -80px;
  z-index: 1;
  pointer-events: none;
}

.technische-analyse-grundlagen-hero-deco-3 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(139, 92, 246, 0.04);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  bottom: 20px;
  left: 10%;
  z-index: 1;
  pointer-events: none;
}

.technische-analyse-grundlagen-hero-deco-4 {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(34, 197, 94, 0.05);
  border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%;
  bottom: 10%;
  right: 5%;
  z-index: 1;
  pointer-events: none;
}

.technische-analyse-grundlagen-hero-deco-5 {
  position: absolute;
  width: 2px;
  height: 150px;
  background: linear-gradient(180deg, transparent, rgba(37, 99, 235, 0.15), transparent);
  top: 20%;
  left: 25%;
  z-index: 2;
  pointer-events: none;
}

.technische-analyse-grundlagen-hero-deco-6 {
  position: absolute;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.12), transparent);
  top: 40%;
  right: 15%;
  z-index: 2;
  pointer-events: none;
}

.technische-analyse-grundlagen-hero-deco-7 {
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(248, 113, 113, 0.03);
  border-radius: 50%;
  bottom: 30%;
  left: 50%;
  transform: translateX(-50%);
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

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

@media (min-width: 768px) {
  .technische-analyse-grundlagen-hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .technische-analyse-grundlagen-hero-content {
    gap: 4rem;
  }
}

.technische-analyse-grundlagen-hero-text h1 {
  color: #1e293b;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .technische-analyse-grundlagen-hero-text h1 {
    margin-bottom: 1.5rem;
  }
}

.technische-analyse-grundlagen-hero-subtitle {
  color: #64748b;
  font-size: 1.125rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .technische-analyse-grundlagen-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
  }
}

.technische-analyse-grundlagen-hero-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: #94a3b8;
}

@media (min-width: 768px) {
  .technische-analyse-grundlagen-hero-meta {
    gap: 1.5rem;
    font-size: 1rem;
  }
}

.technische-analyse-grundlagen-meta-separator {
  color: #cbd5e1;
}

.technische-analyse-grundlagen-hero-image {
  position: relative;
  height: 350px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .technische-analyse-grundlagen-hero-image {
    height: 400px;
  }
}

@media (min-width: 1024px) {
  .technische-analyse-grundlagen-hero-image {
    height: 450px;
  }
}

.technische-analyse-grundlagen-featured-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.technische-analyse-grundlagen-introduction {
  padding: 3rem 0;
  background: var(--color-bg-primary);
}

@media (min-width: 768px) {
  .technische-analyse-grundlagen-introduction {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .technische-analyse-grundlagen-introduction {
    padding: 6rem 0;
  }
}

.technische-analyse-grundlagen-intro-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .technische-analyse-grundlagen-intro-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .technische-analyse-grundlagen-intro-content {
    gap: 4rem;
  }
}

.technische-analyse-grundlagen-intro-text {
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.technische-analyse-grundlagen-intro-image {
  position: relative;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .technische-analyse-grundlagen-intro-image {
    height: 350px;
  }
}

.technische-analyse-grundlagen-content-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.technische-analyse-grundlagen-charttypen {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-secondary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .technische-analyse-grundlagen-charttypen {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .technische-analyse-grundlagen-charttypen {
    padding: 6rem 0;
  }
}

.technische-analyse-grundlagen-charttypen-deco-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  top: -50px;
  right: -100px;
  z-index: 1;
  pointer-events: none;
}

.technische-analyse-grundlagen-charttypen-deco-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(37, 99, 235, 0.04);
  border-radius: 50% 40% 60% 40% / 40% 50% 40% 60%;
  bottom: 10%;
  left: 5%;
  z-index: 1;
  pointer-events: none;
}

.technische-analyse-grundlagen-charttypen-deco-3 {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 30% 70% 40% 60% / 60% 40% 70% 30%;
  top: 20%;
  left: 10%;
  z-index: 1;
  pointer-events: none;
}

.technische-analyse-grundlagen-charttypen-deco-4 {
  position: absolute;
  width: 2px;
  height: 200px;
  background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.12), transparent);
  top: 30%;
  right: 25%;
  z-index: 2;
  pointer-events: none;
}

.technische-analyse-grundlagen-charttypen-deco-5 {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(34, 197, 94, 0.04);
  border-radius: 50%;
  bottom: 20%;
  right: 10%;
  filter: blur(30px);
  z-index: 1;
  pointer-events: none;
}

.technische-analyse-grundlagen-charttypen-deco-6 {
  position: absolute;
  width: 1px;
  height: 250px;
  background: linear-gradient(180deg, transparent, rgba(6, 182, 212, 0.15), transparent);
  bottom: 0;
  left: 45%;
  z-index: 2;
  pointer-events: none;
}

.technische-analyse-grundlagen-charttypen-content {
  position: relative;
  z-index: 10;
}

.technische-analyse-grundlagen-charttypen-content h2 {
  color: #1e293b;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .technische-analyse-grundlagen-charttypen-content h2 {
    margin-bottom: 1.5rem;
  }
}

.technische-analyse-grundlagen-charttypen-content > p {
  color: #64748b;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .technische-analyse-grundlagen-charttypen-content > p {
    margin-bottom: 3rem;
  }
}

.technische-analyse-grundlagen-charttypen-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .technische-analyse-grundlagen-charttypen-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .technische-analyse-grundlagen-charttypen-grid {
    gap: 2.5rem;
  }
}

.technische-analyse-grundlagen-chart-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

@media (min-width: 768px) {
  .technische-analyse-grundlagen-chart-card {
    padding: 2rem;
    gap: 1.25rem;
  }
}

.technische-analyse-grundlagen-chart-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: #e0e0e0;
}

.technische-analyse-grundlagen-chart-card h3 {
  color: #1e293b;
  margin-bottom: 0;
}

.technische-analyse-grundlagen-chart-card p {
  color: #64748b;
  margin-bottom: 0;
}

.technische-analyse-grundlagen-charttypen-image {
  position: relative;
  height: 350px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .technische-analyse-grundlagen-charttypen-image {
    height: 400px;
  }
}

.technische-analyse-grundlagen-indikatoren {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-primary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .technische-analyse-grundlagen-indikatoren {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .technische-analyse-grundlagen-indikatoren {
    padding: 6rem 0;
  }
}

.technische-analyse-grundlagen-indikatoren-deco-1 {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.07) 0%, transparent 70%);
  filter: blur(75px);
  top: -100px;
  left: -100px;
  z-index: 1;
  pointer-events: none;
}

.technische-analyse-grundlagen-indikatoren-deco-2 {
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%;
  bottom: 5%;
  right: 3%;
  z-index: 1;
  pointer-events: none;
}

.technische-analyse-grundlagen-indikatoren-deco-3 {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(139, 92, 246, 0.04);
  border-radius: 50%;
  top: 30%;
  right: 10%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.technische-analyse-grundlagen-indikatoren-deco-4 {
  position: absolute;
  width: 2px;
  height: 300px;
  background: linear-gradient(180deg, transparent, rgba(37, 99, 235, 0.1), transparent);
  top: 10%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}

.technische-analyse-grundlagen-indikatoren-deco-5 {
  position: absolute;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.1), transparent);
  bottom: 30%;
  left: 5%;
  z-index: 2;
  pointer-events: none;
}

.technische-analyse-grundlagen-indikatoren-content {
  position: relative;
  z-index: 10;
}

.technische-analyse-grundlagen-indikatoren-content h2 {
  color: #1e293b;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .technische-analyse-grundlagen-indikatoren-content h2 {
    margin-bottom: 1.5rem;
  }
}

.technische-analyse-grundlagen-indikatoren-intro {
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .technische-analyse-grundlagen-indikatoren-intro {
    margin-bottom: 3rem;
  }
}

.technische-analyse-grundlagen-indikatoren-intro p {
  color: #64748b;
  font-size: 1.0625rem;
}

.technische-analyse-grundlagen-indikatoren-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .technische-analyse-grundlagen-indikatoren-list {
    gap: 2.5rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .technische-analyse-grundlagen-indikatoren-list {
    gap: 3rem;
  }
}

.technische-analyse-grundlagen-indikator-item {
  padding: 1.5rem;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

@media (min-width: 768px) {
  .technische-analyse-grundlagen-indikator-item {
    padding: 2rem;
  }
}

.technische-analyse-grundlagen-indikator-item h3 {
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.technische-analyse-grundlagen-indikator-item p {
  color: #64748b;
  margin-bottom: 0;
}

.technische-analyse-grundlagen-indikatoren-image {
  position: relative;
  height: 350px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .technische-analyse-grundlagen-indikatoren-image {
    height: 400px;
  }
}

.technische-analyse-grundlagen-muster {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, var(--color-bg-secondary) 100%);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .technische-analyse-grundlagen-muster {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .technische-analyse-grundlagen-muster {
    padding: 6rem 0;
  }
}

.technische-analyse-grundlagen-muster-deco-1 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  top: 10%;
  right: -150px;
  z-index: 1;
  pointer-events: none;
}

.technische-analyse-grundlagen-muster-deco-2 {
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(34, 197, 94, 0.05);
  border-radius: 50% 40% 60% 40% / 40% 50% 40% 60%;
  bottom: 5%;
  left: 5%;
  z-index: 1;
  pointer-events: none;
}

.technische-analyse-grundlagen-muster-deco-3 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(6, 182, 212, 0.04);
  border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%;
  top: 20%;
  left: 8%;
  z-index: 1;
  pointer-events: none;
}

.technische-analyse-grundlagen-muster-deco-4 {
  position: absolute;
  width: 2px;
  height: 250px;
  background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.12), transparent);
  top: 25%;
  right: 35%;
  z-index: 2;
  pointer-events: none;
}

.technische-analyse-grundlagen-muster-deco-5 {
  position: absolute;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.1), transparent);
  bottom: 40%;
  right: 8%;
  z-index: 2;
  pointer-events: none;
}

.technische-analyse-grundlagen-muster-deco-6 {
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(248, 113, 113, 0.03);
  border-radius: 50%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.technische-analyse-grundlagen-muster-content {
  position: relative;
  z-index: 10;
}

.technische-analyse-grundlagen-muster-content h2 {
  color: #1e293b;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .technische-analyse-grundlagen-muster-content h2 {
    margin-bottom: 1.5rem;
  }
}

.technische-analyse-grundlagen-muster-content > p {
  color: #64748b;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .technische-analyse-grundlagen-muster-content > p {
    margin-bottom: 3rem;
  }
}

.technische-analyse-grundlagen-muster-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .technische-analyse-grundlagen-muster-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .technische-analyse-grundlagen-muster-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
  }
}

.technische-analyse-grundlagen-muster-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
}

@media (min-width: 768px) {
  .technische-analyse-grundlagen-muster-card {
    padding: 1.75rem;
    gap: 1.25rem;
  }
}

.technische-analyse-grundlagen-muster-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: #e0e0e0;
}

.technische-analyse-grundlagen-muster-card h3 {
  color: #1e293b;
  margin-bottom: 0;
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .technische-analyse-grundlagen-muster-card h3 {
    font-size: 1.25rem;
  }
}

.technische-analyse-grundlagen-muster-card p {
  color: #64748b;
  margin-bottom: 0;
  font-size: 0.9375rem;
}

@media (min-width: 768px) {
  .technische-analyse-grundlagen-muster-card p {
    font-size: 1rem;
  }
}

.technische-analyse-grundlagen-muster-image {
  position: relative;
  height: 350px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .technische-analyse-grundlagen-muster-image {
    height: 400px;
  }
}

.technische-analyse-grundlagen-praktisch {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-primary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .technische-analyse-grundlagen-praktisch {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .technische-analyse-grundlagen-praktisch {
    padding: 6rem 0;
  }
}

.technische-analyse-grundlagen-praktisch-deco-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.07) 0%, transparent 70%);
  filter: blur(70px);
  bottom: -80px;
  left: -80px;
  z-index: 1;
  pointer-events: none;
}

.technische-analyse-grundlagen-praktisch-deco-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 50%;
  top: 15%;
  right: 5%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.technische-analyse-grundlagen-praktisch-deco-3 {
  position: absolute;
  width: 2px;
  height: 280px;
  background: linear-gradient(180deg, transparent, rgba(6, 182, 212, 0.1), transparent);
  top: 20%;
  left: 45%;
  z-index: 2;
  pointer-events: none;
}

.technische-analyse-grundlagen-praktisch-deco-4 {
  position: absolute;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.1), transparent);
  bottom: 25%;
  right: 10%;
  z-index: 2;
  pointer-events: none;
}

.technische-analyse-grundlagen-praktisch-content {
  position: relative;
  z-index: 10;
}

.technische-analyse-grundlagen-praktisch-content h2 {
  color: #1e293b;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .technische-analyse-grundlagen-praktisch-content h2 {
    margin-bottom: 1.5rem;
  }
}

.technische-analyse-grundlagen-praktisch-content > p {
  color: #64748b;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .technische-analyse-grundlagen-praktisch-content > p {
    margin-bottom: 3rem;
  }
}

.technische-analyse-grundlagen-praktisch-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .technische-analyse-grundlagen-praktisch-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .technische-analyse-grundlagen-praktisch-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.technische-analyse-grundlagen-step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  position: relative;
}

@media (min-width: 768px) {
  .technische-analyse-grundlagen-step {
    padding: 2rem;
    gap: 1.25rem;
  }
}

.technische-analyse-grundlagen-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.technische-analyse-grundlagen-step h3 {
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.technische-analyse-grundlagen-step p {
  color: #64748b;
  margin-bottom: 0;
}

.technische-analyse-grundlagen-praktisch-image {
  position: relative;
  height: 350px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .technische-analyse-grundlagen-praktisch-image {
    height: 400px;
    margin-top: 3rem;
  }
}

.technische-analyse-grundlagen-disclaimer {
  padding: 3rem 0;
  background: var(--color-bg-secondary);
}

@media (min-width: 768px) {
  .technische-analyse-grundlagen-disclaimer {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .technische-analyse-grundlagen-disclaimer {
    padding: 5rem 0;
  }
}

.technische-analyse-grundlagen-disclaimer-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

@media (min-width: 768px) {
  .technische-analyse-grundlagen-disclaimer-content {
    padding: 2rem;
    gap: 1.5rem;
    flex-direction: row;
    align-items: flex-start;
  }
}

.technische-analyse-grundlagen-disclaimer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: #dbeafe;
  border-radius: var(--radius-lg);
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
}

.technische-analyse-grundlagen-disclaimer-content h3 {
  color: #1e293b;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .technische-analyse-grundlagen-disclaimer-content h3 {
    margin-bottom: 0.5rem;
  }
}

.technische-analyse-grundlagen-disclaimer-content p {
  color: #64748b;
  margin-bottom: 0;
}

.technische-analyse-grundlagen-related {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #f8fafc 0%, var(--color-bg-secondary) 100%);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .technische-analyse-grundlagen-related {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .technische-analyse-grundlagen-related {
    padding: 6rem 0;
  }
}

.technische-analyse-grundlagen-related-deco-1 {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  top: -100px;
  right: -100px;
  z-index: 1;
  pointer-events: none;
}

.technische-analyse-grundlagen-related-deco-2 {
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(37, 99, 235, 0.05);
  border-radius: 50%;
  bottom: 5%;
  left: 3%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.technische-analyse-grundlagen-related-deco-3 {
  position: absolute;
  width: 2px;
  height: 300px;
  background: linear-gradient(180deg, transparent, rgba(6, 182, 212, 0.1), transparent);
  top: 20%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  pointer-events: none;
}

.technische-analyse-grundlagen-related-content {
  position: relative;
  z-index: 10;
}

.technische-analyse-grundlagen-related-content h2 {
  color: #1e293b;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .technische-analyse-grundlagen-related-content h2 {
    margin-bottom: 1rem;
  }
}

.technische-analyse-grundlagen-related-intro {
  color: #64748b;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .technische-analyse-grundlagen-related-intro {
    margin-bottom: 3rem;
  }
}

.technische-analyse-grundlagen-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .technische-analyse-grundlagen-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.technische-analyse-grundlagen-related-card {
  display: flex;
  flex-direction: column;
  padding: 0;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid #f0f0f0;
  text-decoration: none;
  overflow: hidden;
}

.technische-analyse-grundlagen-related-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: #e0e0e0;
}

.technische-analyse-grundlagen-related-card-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .technische-analyse-grundlagen-related-card-inner {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.technische-analyse-grundlagen-related-card h3 {
  color: #1e293b;
  margin-bottom: 0;
}

.technische-analyse-grundlagen-related-card p {
  color: #64748b;
  margin-bottom: 0;
}

.technische-analyse-grundlagen-related-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  transition: transform 0.3s ease;
}

.technische-analyse-grundlagen-related-card:hover .technische-analyse-grundlagen-related-arrow {
  transform: translateX(4px);
}

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

.post-candlestick-muster-analyse {
      background: var(--color-bg-primary);
    }

    .candlestick-muster-analyse-breadcrumb {
      background: var(--color-bg-secondary);
      padding: 1rem 0;
      border-bottom: 1px solid #e2e8f0;
    }

    .candlestick-muster-analyse-breadcrumb .container {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.875rem;
    }

    .candlestick-muster-analyse-breadcrumb a {
      color: var(--color-primary);
    }

    .candlestick-muster-analyse-breadcrumb span {
      color: var(--color-text-muted);
    }

    .candlestick-muster-analyse-hero {
      padding: 3rem 0;
      background: var(--color-bg-primary);
    }

    @media (min-width: 768px) {
      .candlestick-muster-analyse-hero {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .candlestick-muster-analyse-hero {
        padding: 6rem 0;
      }
    }

    .candlestick-muster-analyse-hero-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 1024px) {
      .candlestick-muster-analyse-hero-content {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
      }
    }

    .candlestick-muster-analyse-hero-text {
      flex: 1;
    }

    .candlestick-muster-analyse-hero h1 {
      color: var(--color-text-primary);
      margin-bottom: 1rem;
    }

    .candlestick-muster-analyse-hero-subtitle {
      font-size: 1.125rem;
      color: var(--color-text-secondary);
      margin-bottom: 1.5rem;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .candlestick-muster-analyse-hero-subtitle {
        font-size: 1.25rem;
      }
    }

    .candlestick-muster-analyse-hero-meta {
      display: flex;
      gap: 1.5rem;
      margin-bottom: 1.5rem;
      flex-wrap: wrap;
      font-size: 0.875rem;
      color: var(--color-text-secondary);
    }

    .candlestick-muster-analyse-hero-image {
      flex: 1;
      min-height: 350px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

    @media (min-width: 768px) {
      .candlestick-muster-analyse-hero-image {
        min-height: 400px;
      }
    }

    .candlestick-muster-analyse-hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .candlestick-muster-analyse-section {
      padding: 3rem 0;
      background: var(--color-bg-primary);
    }

    @media (min-width: 768px) {
      .candlestick-muster-analyse-section {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .candlestick-muster-analyse-section {
        padding: 6rem 0;
      }
    }

    .candlestick-muster-analyse-section:nth-child(odd) {
      background: var(--color-bg-secondary);
    }

    .candlestick-muster-analyse-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 1024px) {
      .candlestick-muster-analyse-content {
        gap: 3rem;
      }
    }

    .candlestick-muster-analyse-section h2 {
      color: var(--color-text-primary);
      margin-bottom: 1rem;
    }

    .candlestick-muster-analyse-section p {
      color: var(--color-text-secondary);
      margin-bottom: 1rem;
      line-height: 1.8;
    }

    .candlestick-muster-analyse-section p:last-child {
      margin-bottom: 0;
    }

    .candlestick-muster-analyse-section ul {
      color: var(--color-text-secondary);
      padding-left: 1.5rem;
    }

    .candlestick-muster-analyse-section li {
      color: var(--color-text-secondary);
      margin-bottom: 0.75rem;
      line-height: 1.7;
    }

    .candlestick-muster-analyse-image-block {
      width: 100%;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      margin: 1.5rem 0;
    }

    @media (min-width: 768px) {
      .candlestick-muster-analyse-image-block {
        margin: 2rem 0;
      }
    }

    .candlestick-muster-analyse-image-block img {
      width: 100%;
      height: auto;
      display: block;
      max-height: 400px;
      object-fit: cover;
    }

    .candlestick-muster-analyse-highlight {
      background: #dbeafe;
      border-left: 4px solid var(--color-primary);
      padding: 1.25rem;
      border-radius: var(--radius-md);
      margin: 1.5rem 0;
    }

    @media (min-width: 768px) {
      .candlestick-muster-analyse-highlight {
        padding: 1.5rem;
        margin: 2rem 0;
      }
    }

    .candlestick-muster-analyse-highlight p {
      color: var(--color-text-primary);
      margin: 0;
      font-weight: 500;
    }

    .candlestick-muster-analyse-quote {
      border-left: 4px solid var(--color-secondary);
      padding: 1.5rem 1.5rem 1.5rem 2rem;
      margin: 2rem 0;
      background: var(--color-bg-tertiary);
      border-radius: var(--radius-md);
      font-style: italic;
      color: var(--color-text-primary);
      font-size: 1.0625rem;
      line-height: 1.7;
    }

    @media (min-width: 768px) {
      .candlestick-muster-analyse-quote {
        padding: 2rem 2rem 2rem 2.5rem;
        margin: 2.5rem 0;
        font-size: 1.125rem;
      }
    }

    .candlestick-muster-analyse-two-column {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    @media (min-width: 1024px) {
      .candlestick-muster-analyse-two-column {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
      }
    }

    .candlestick-muster-analyse-two-column img {
      width: 100%;
      height: auto;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
    }

    .candlestick-muster-analyse-disclaimer {
      background: #f0fdf4;
      border: 1px solid #bbf7d0;
      border-radius: var(--radius-lg);
      padding: 1.5rem;
      margin: 3rem 0;
    }

    @media (min-width: 768px) {
      .candlestick-muster-analyse-disclaimer {
        padding: 2rem;
        margin: 4rem 0;
      }
    }

    .candlestick-muster-analyse-disclaimer-title {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 0.75rem;
      font-weight: 600;
      color: #166534;
    }

    .candlestick-muster-analyse-disclaimer-title i {
      font-size: 1.25rem;
    }

    .candlestick-muster-analyse-disclaimer p {
      color: #166534;
      margin: 0;
      font-size: 0.9375rem;
      line-height: 1.6;
    }

    .candlestick-muster-analyse-related {
      padding: 3rem 0;
      background: var(--color-bg-secondary);
      margin-top: 3rem;
    }

    @media (min-width: 768px) {
      .candlestick-muster-analyse-related {
        padding: 4rem 0;
        margin-top: 4rem;
      }
    }

    .candlestick-muster-analyse-related h2 {
      color: var(--color-text-primary);
      margin-bottom: 2rem;
      text-align: center;
    }

    @media (min-width: 768px) {
      .candlestick-muster-analyse-related h2 {
        margin-bottom: 2.5rem;
      }
    }

    .candlestick-muster-analyse-related-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .candlestick-muster-analyse-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .candlestick-muster-analyse-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
      }
    }

    .candlestick-muster-analyse-related-card {
      background: var(--color-bg-card);
      border-radius: var(--radius-lg);
      padding: 1.5rem;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    @media (min-width: 768px) {
      .candlestick-muster-analyse-related-card {
        padding: 1.75rem;
        gap: 1.25rem;
      }
    }

    .candlestick-muster-analyse-related-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }

    .candlestick-muster-analyse-related-card h3 {
      color: var(--color-text-primary);
      margin: 0;
      font-size: 1.125rem;
    }

    @media (min-width: 768px) {
      .candlestick-muster-analyse-related-card h3 {
        font-size: 1.25rem;
      }
    }

    .candlestick-muster-analyse-related-card p {
      color: var(--color-text-secondary);
      margin: 0;
      font-size: 0.9375rem;
      line-height: 1.6;
    }

    .candlestick-muster-analyse-related-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--color-primary);
      font-weight: 500;
      font-size: 0.9375rem;
      text-decoration: none;
      margin-top: auto;
      transition: all 0.3s ease;
    }

    .candlestick-muster-analyse-related-link:hover {
      color: var(--color-primary-hover);
      gap: 0.75rem;
    }

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

.post-marktfundamente-verstehen {
      background: var(--color-bg-primary);
    }

    .marktfundamente-verstehen-breadcrumbs {
      padding: 1rem 0;
      font-size: 0.875rem;
    }

    @media (min-width: 768px) {
      .marktfundamente-verstehen-breadcrumbs {
        padding: 1.5rem 0;
        font-size: 0.9375rem;
      }
    }

    .marktfundamente-verstehen-breadcrumbs a {
      color: var(--color-primary);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .marktfundamente-verstehen-breadcrumbs a:hover {
      color: var(--color-primary-hover);
      text-decoration: underline;
    }

    .marktfundamente-verstehen-breadcrumbs span {
      color: var(--color-text-muted);
      margin: 0 0.5rem;
    }

    .marktfundamente-verstehen-hero {
      background: var(--color-bg-secondary);
      padding: 3rem 0;
      overflow: hidden;
      position: relative;
    }

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

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

    .marktfundamente-verstehen-hero-content {
      position: relative;
      z-index: 10;
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 1024px) {
      .marktfundamente-verstehen-hero-content {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
      }
    }

    .marktfundamente-verstehen-hero-text {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    @media (min-width: 768px) {
      .marktfundamente-verstehen-hero-text {
        gap: 1.5rem;
      }
    }

    .marktfundamente-verstehen-hero h1 {
      color: var(--color-text-primary);
      font-size: 2rem;
      line-height: 1.2;
    }

    @media (min-width: 768px) {
      .marktfundamente-verstehen-hero h1 {
        font-size: 2.75rem;
      }
    }

    @media (min-width: 1024px) {
      .marktfundamente-verstehen-hero h1 {
        font-size: 3.5rem;
      }
    }

    .marktfundamente-verstehen-hero-subtitle {
      color: var(--color-text-secondary);
      font-size: 1rem;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .marktfundamente-verstehen-hero-subtitle {
        font-size: 1.125rem;
      }
    }

    .marktfundamente-verstehen-hero-meta {
      display: flex;
      flex-direction: row;
      gap: 1.5rem;
      color: var(--color-text-muted);
      font-size: 0.875rem;
    }

    @media (min-width: 768px) {
      .marktfundamente-verstehen-hero-meta {
        font-size: 0.9375rem;
      }
    }

    .marktfundamente-verstehen-hero-image {
      flex: 1;
      width: 100%;
      max-height: 400px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

    @media (min-width: 1024px) {
      .marktfundamente-verstehen-hero-image {
        min-height: 400px;
      }
    }

    .marktfundamente-verstehen-hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .marktfundamente-verstehen-hero-deco-1 {
      position: absolute;
      top: -100px;
      right: -100px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
      border-radius: 50%;
      filter: blur(80px);
      z-index: 1;
      pointer-events: none;
    }

    .marktfundamente-verstehen-hero-deco-2 {
      position: absolute;
      bottom: -50px;
      left: -50px;
      width: 300px;
      height: 300px;
      background: rgba(8, 145, 178, 0.06);
      border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
      z-index: 2;
      pointer-events: none;
    }

    .marktfundamente-verstehen-hero-deco-3 {
      position: absolute;
      top: 50%;
      left: 10%;
      width: 200px;
      height: 200px;
      background: rgba(37, 99, 235, 0.05);
      border-radius: 40% 60% 35% 65% / 60% 35% 65% 40%;
      z-index: 1;
      pointer-events: none;
    }

    .marktfundamente-verstehen-section {
      padding: 3rem 0;
      background: var(--color-bg-primary);
    }

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

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

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

    .marktfundamente-verstehen-section-content {
      position: relative;
      z-index: 10;
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 1024px) {
      .marktfundamente-verstehen-section-content {
        gap: 3rem;
      }
    }

    .marktfundamente-verstehen-section h2 {
      color: var(--color-text-primary);
      font-size: 1.75rem;
      line-height: 1.2;
      margin-bottom: 0;
    }

    @media (min-width: 768px) {
      .marktfundamente-verstehen-section h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .marktfundamente-verstehen-section h2 {
        font-size: 2.75rem;
      }
    }

    .marktfundamente-verstehen-section h3 {
      color: var(--color-text-primary);
      font-size: 1.375rem;
      margin-bottom: 0.5rem;
    }

    @media (min-width: 768px) {
      .marktfundamente-verstehen-section h3 {
        font-size: 1.625rem;
      }
    }

    @media (min-width: 1024px) {
      .marktfundamente-verstehen-section h3 {
        font-size: 1.875rem;
      }
    }

    .marktfundamente-verstehen-section p {
      color: var(--color-text-secondary);
      font-size: 0.875rem;
      line-height: 1.7;
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .marktfundamente-verstehen-section p {
        font-size: 1rem;
      }
    }

    .marktfundamente-verstehen-section p:last-child {
      margin-bottom: 0;
    }

    .marktfundamente-verstehen-section a {
      color: var(--color-primary);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .marktfundamente-verstehen-section a:hover {
      color: var(--color-primary-hover);
      text-decoration: underline;
    }

    .marktfundamente-verstehen-content-block {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .marktfundamente-verstehen-content-block {
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .marktfundamente-verstehen-content-block {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
      }
    }

    .marktfundamente-verstehen-content-block:nth-child(even) {
      direction: rtl;
    }

    @media (min-width: 1024px) {
      .marktfundamente-verstehen-content-block:nth-child(even) > * {
        direction: ltr;
      }
    }

    .marktfundamente-verstehen-text-block {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    @media (min-width: 768px) {
      .marktfundamente-verstehen-text-block {
        gap: 1.5rem;
      }
    }

    .marktfundamente-verstehen-image-block {
      width: 100%;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
    }

    .marktfundamente-verstehen-image-block img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      max-height: 350px;
    }

    .marktfundamente-verstehen-highlight {
      background: #dbeafe;
      border-left: 4px solid var(--color-primary);
      padding: 1.25rem;
      border-radius: var(--radius-md);
      margin: 2rem 0;
    }

    @media (min-width: 768px) {
      .marktfundamente-verstehen-highlight {
        padding: 1.5rem;
      }
    }

    .marktfundamente-verstehen-highlight p {
      color: #1e40af;
      font-weight: 500;
      margin-bottom: 0;
    }

    .marktfundamente-verstehen-quote {
      background: var(--color-bg-tertiary);
      border-left: 4px solid var(--color-secondary);
      padding: 2rem;
      border-radius: var(--radius-md);
      margin: 2.5rem 0;
      font-style: italic;
      font-size: 1.125rem;
      color: var(--color-text-primary);
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .marktfundamente-verstehen-quote {
        padding: 2.5rem;
        font-size: 1.25rem;
      }
    }

    .marktfundamente-verstehen-quote::before {
      content: '"';
      font-size: 3rem;
      color: var(--color-primary);
      opacity: 0.3;
      line-height: 0;
    }

    .marktfundamente-verstehen-list {
      margin: 1.5rem 0;
    }

    @media (min-width: 768px) {
      .marktfundamente-verstehen-list {
        margin: 2rem 0;
      }
    }

    .marktfundamente-verstehen-list li {
      color: var(--color-text-secondary);
      font-size: 0.875rem;
      margin-bottom: 0.75rem;
      padding-left: 1.5rem;
      position: relative;
    }

    @media (min-width: 768px) {
      .marktfundamente-verstehen-list li {
        font-size: 1rem;
        margin-bottom: 1rem;
      }
    }

    .marktfundamente-verstehen-list li::before {
      content: '';
      position: absolute;
      left: 0;
      color: var(--color-primary);
      font-weight: 700;
    }

    .marktfundamente-verstehen-disclaimer {
      background: #f0f9ff;
      border: 2px solid #cffafe;
      border-radius: var(--radius-lg);
      padding: 1.5rem;
      margin: 3rem 0;
    }

    @media (min-width: 768px) {
      .marktfundamente-verstehen-disclaimer {
        padding: 2rem;
      }
    }

    .marktfundamente-verstehen-disclaimer-header {
      display: flex;
      align-items: center;
      gap: 1rem;
      margin-bottom: 1rem;
      color: #0c4a6e;
      font-weight: 600;
    }

    .marktfundamente-verstehen-disclaimer-icon {
      font-size: 1.5rem;
      flex-shrink: 0;
    }

    .marktfundamente-verstehen-disclaimer p {
      color: #0c4a6e;
      font-size: 0.875rem;
      line-height: 1.6;
      margin-bottom: 0;
    }

    @media (min-width: 768px) {
      .marktfundamente-verstehen-disclaimer p {
        font-size: 0.9375rem;
      }
    }

    .marktfundamente-verstehen-related {
      padding: 3rem 0;
      background: var(--color-bg-secondary);
      border-top: 1px solid #e2e8f0;
    }

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

    .marktfundamente-verstehen-related-content {
      position: relative;
      z-index: 10;
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .marktfundamente-verstehen-related-content {
        gap: 2.5rem;
      }
    }

    .marktfundamente-verstehen-related h2 {
      color: var(--color-text-primary);
      font-size: 1.75rem;
      margin-bottom: 0;
    }

    @media (min-width: 768px) {
      .marktfundamente-verstehen-related h2 {
        font-size: 2.25rem;
      }
    }

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

    @media (min-width: 768px) {
      .marktfundamente-verstehen-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .marktfundamente-verstehen-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
      }
    }

    .marktfundamente-verstehen-related-card {
      background: var(--color-bg-card);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    @media (min-width: 768px) {
      .marktfundamente-verstehen-related-card {
        gap: 1.25rem;
      }
    }

    .marktfundamente-verstehen-related-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }

    .marktfundamente-verstehen-related-card-image {
      width: 100%;
      height: 200px;
      overflow: hidden;
      background: var(--color-bg-tertiary);
    }

    .marktfundamente-verstehen-related-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .marktfundamente-verstehen-related-card-content {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      flex: 1;
    }

    @media (min-width: 768px) {
      .marktfundamente-verstehen-related-card-content {
        padding: 1.75rem;
        gap: 1rem;
      }
    }

    .marktfundamente-verstehen-related-card h3 {
      color: var(--color-text-primary);
      font-size: 1.125rem;
      margin-bottom: 0;
    }

    @media (min-width: 768px) {
      .marktfundamente-verstehen-related-card h3 {
        font-size: 1.25rem;
      }
    }

    .marktfundamente-verstehen-related-card p {
      color: var(--color-text-secondary);
      font-size: 0.875rem;
      margin-bottom: 0;
    }

    @media (min-width: 768px) {
      .marktfundamente-verstehen-related-card p {
        font-size: 0.9375rem;
      }
    }

    .marktfundamente-verstehen-related-card-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--color-primary);
      font-weight: 600;
      font-size: 0.875rem;
      text-decoration: none;
      transition: all 0.3s ease;
      margin-top: auto;
    }

    @media (min-width: 768px) {
      .marktfundamente-verstehen-related-card-link {
        font-size: 0.9375rem;
      }
    }

    .marktfundamente-verstehen-related-card-link:hover {
      color: var(--color-primary-hover);
      transform: translateX(4px);
    }

    .marktfundamente-verstehen-related-deco-1 {
      position: absolute;
      top: 50%;
      right: -150px;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(8, 145, 178, 0.08) 0%, transparent 70%);
      border-radius: 50%;
      filter: blur(80px);
      z-index: 1;
      pointer-events: none;
    }

    .marktfundamente-verstehen-related-deco-2 {
      position: absolute;
      bottom: -100px;
      left: 10%;
      width: 300px;
      height: 300px;
      background: rgba(37, 99, 235, 0.05);
      border-radius: 70% 30% 50% 50% / 30% 30% 70% 70%;
      z-index: 1;
      pointer-events: none;
    }

    .marktfundamente-verstehen-divider {
      height: 1px;
      background: linear-gradient(90deg, transparent, #e2e8f0, transparent);
      margin: 2rem 0;
    }

    @media (min-width: 768px) {
      .marktfundamente-verstehen-divider {
        margin: 3rem 0;
      }
    }

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

.post-risikomanagement-strategien {
  background: var(--color-bg-primary);
}

.risikomanagement-strategien-breadcrumbs-section {
  background: var(--color-bg-secondary);
  padding: 1.5rem 0;
}

@media (min-width: 768px) {
  .risikomanagement-strategien-breadcrumbs-section {
    padding: 2rem 0;
  }
}

@media (min-width: 1024px) {
  .risikomanagement-strategien-breadcrumbs-section {
    padding: 2.5rem 0;
  }
}

.risikomanagement-strategien-breadcrumbs {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .risikomanagement-strategien-breadcrumbs {
    font-size: 0.9375rem;
  }
}

.risikomanagement-strategien-breadcrumbs a {
  color: var(--color-primary);
  font-weight: 500;
  transition: all 0.3s ease;
}

.risikomanagement-strategien-breadcrumbs a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.risikomanagement-strategien-breadcrumb-separator {
  color: var(--color-text-muted);
  margin: 0 0.25rem;
}

.risikomanagement-strategien-breadcrumb-current {
  color: var(--color-text-secondary);
  font-weight: 500;
}

.risikomanagement-strategien-hero {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .risikomanagement-strategien-hero {
    padding: 4.5rem 0;
  }
}

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

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

@media (min-width: 1024px) {
  .risikomanagement-strategien-hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.risikomanagement-strategien-hero-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .risikomanagement-strategien-hero-text {
    gap: 1.5rem;
  }
}

.risikomanagement-strategien-hero h1 {
  color: var(--color-text-primary);
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .risikomanagement-strategien-hero h1 {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .risikomanagement-strategien-hero h1 {
    font-size: 3.5rem;
  }
}

.risikomanagement-strategien-hero-lead {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .risikomanagement-strategien-hero-lead {
    font-size: 1.125rem;
  }
}

.risikomanagement-strategien-meta {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1rem;
}

.risikomanagement-strategien-read-time {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  font-weight: 500;
}

.risikomanagement-strategien-hero-image {
  display: none;
}

@media (min-width: 1024px) {
  .risikomanagement-strategien-hero-image {
    display: block;
  }
}

.risikomanagement-strategien-featured-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.risikomanagement-strategien-intro-section {
  background: var(--color-bg-primary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .risikomanagement-strategien-intro-section {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .risikomanagement-strategien-intro-section {
    padding: 5rem 0;
  }
}

.risikomanagement-strategien-intro-content {
  max-width: 900px;
  margin: 0 auto;
}

.risikomanagement-strategien-intro-content p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .risikomanagement-strategien-intro-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

.risikomanagement-strategien-intro-content p:last-child {
  margin-bottom: 0;
}

.risikomanagement-strategien-fundamentals {
  background: var(--color-bg-secondary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .risikomanagement-strategien-fundamentals {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .risikomanagement-strategien-fundamentals {
    padding: 5rem 0;
  }
}

.risikomanagement-strategien-fundamentals-content {
  max-width: 900px;
  margin: 0 auto;
}

.risikomanagement-strategien-fundamentals-content h2 {
  color: var(--color-text-primary);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .risikomanagement-strategien-fundamentals-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .risikomanagement-strategien-fundamentals-content h2 {
    font-size: 2.75rem;
    margin-bottom: 2rem;
  }
}

.risikomanagement-strategien-fundamentals-content p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .risikomanagement-strategien-fundamentals-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

.risikomanagement-strategien-fundamentals-content h3 {
  color: var(--color-text-primary);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .risikomanagement-strategien-fundamentals-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
  }
}

@media (min-width: 1024px) {
  .risikomanagement-strategien-fundamentals-content h3 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
  }
}

.risikomanagement-strategien-image-block-1 {
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .risikomanagement-strategien-image-block-1 {
    margin: 2.5rem 0;
  }
}

@media (min-width: 1024px) {
  .risikomanagement-strategien-image-block-1 {
    margin: 3rem 0;
  }
}

.risikomanagement-strategien-section-image {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.risikomanagement-strategien-highlight-box {
  background: #eff6ff;
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .risikomanagement-strategien-highlight-box {
    padding: 2rem;
    margin: 2.5rem 0;
  }
}

@media (min-width: 1024px) {
  .risikomanagement-strategien-highlight-box {
    margin: 3rem 0;
  }
}

.risikomanagement-strategien-highlight-icon {
  display: flex;
  align-items: flex-start;
  flex-shrink: 0;
  font-size: 1.5rem;
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .risikomanagement-strategien-highlight-icon {
    font-size: 1.75rem;
  }
}

.risikomanagement-strategien-highlight-text {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.risikomanagement-strategien-highlight-text strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

.risikomanagement-strategien-highlight-text p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  margin-bottom: 0;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .risikomanagement-strategien-highlight-text p {
    font-size: 1rem;
  }
}

.risikomanagement-strategien-risk-reward {
  background: var(--color-bg-primary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .risikomanagement-strategien-risk-reward {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .risikomanagement-strategien-risk-reward {
    padding: 5rem 0;
  }
}

.risikomanagement-strategien-risk-reward-content {
  max-width: 900px;
  margin: 0 auto;
}

.risikomanagement-strategien-risk-reward-content h2 {
  color: var(--color-text-primary);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .risikomanagement-strategien-risk-reward-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .risikomanagement-strategien-risk-reward-content h2 {
    font-size: 2.75rem;
    margin-bottom: 2rem;
  }
}

.risikomanagement-strategien-risk-reward-content p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .risikomanagement-strategien-risk-reward-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

.risikomanagement-strategien-risk-reward-content h3 {
  color: var(--color-text-primary);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .risikomanagement-strategien-risk-reward-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
  }
}

@media (min-width: 1024px) {
  .risikomanagement-strategien-risk-reward-content h3 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
  }
}

.risikomanagement-strategien-image-block-2 {
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .risikomanagement-strategien-image-block-2 {
    margin: 2.5rem 0;
  }
}

@media (min-width: 1024px) {
  .risikomanagement-strategien-image-block-2 {
    margin: 3rem 0;
  }
}

.risikomanagement-strategien-diversification {
  background: var(--color-bg-secondary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .risikomanagement-strategien-diversification {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .risikomanagement-strategien-diversification {
    padding: 5rem 0;
  }
}

.risikomanagement-strategien-diversification-content {
  max-width: 900px;
  margin: 0 auto;
}

.risikomanagement-strategien-diversification-content h2 {
  color: var(--color-text-primary);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .risikomanagement-strategien-diversification-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .risikomanagement-strategien-diversification-content h2 {
    font-size: 2.75rem;
    margin-bottom: 2rem;
  }
}

.risikomanagement-strategien-diversification-content p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .risikomanagement-strategien-diversification-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

.risikomanagement-strategien-diversification-content h3 {
  color: var(--color-text-primary);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .risikomanagement-strategien-diversification-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
  }
}

@media (min-width: 1024px) {
  .risikomanagement-strategien-diversification-content h3 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
  }
}

.risikomanagement-strategien-image-block-3 {
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .risikomanagement-strategien-image-block-3 {
    margin: 2.5rem 0;
  }
}

@media (min-width: 1024px) {
  .risikomanagement-strategien-image-block-3 {
    margin: 3rem 0;
  }
}

.risikomanagement-strategien-emotional {
  background: var(--color-bg-primary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .risikomanagement-strategien-emotional {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .risikomanagement-strategien-emotional {
    padding: 5rem 0;
  }
}

.risikomanagement-strategien-emotional-content {
  max-width: 900px;
  margin: 0 auto;
}

.risikomanagement-strategien-emotional-content h2 {
  color: var(--color-text-primary);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .risikomanagement-strategien-emotional-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .risikomanagement-strategien-emotional-content h2 {
    font-size: 2.75rem;
    margin-bottom: 2rem;
  }
}

.risikomanagement-strategien-emotional-content p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .risikomanagement-strategien-emotional-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

.risikomanagement-strategien-emotional-content h3 {
  color: var(--color-text-primary);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .risikomanagement-strategien-emotional-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
  }
}

@media (min-width: 1024px) {
  .risikomanagement-strategien-emotional-content h3 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
  }
}

.risikomanagement-strategien-image-block-4 {
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .risikomanagement-strategien-image-block-4 {
    margin: 2.5rem 0;
  }
}

@media (min-width: 1024px) {
  .risikomanagement-strategien-image-block-4 {
    margin: 3rem 0;
  }
}

.risikomanagement-strategien-advanced {
  background: var(--color-bg-secondary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .risikomanagement-strategien-advanced {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .risikomanagement-strategien-advanced {
    padding: 5rem 0;
  }
}

.risikomanagement-strategien-advanced-content {
  max-width: 900px;
  margin: 0 auto;
}

.risikomanagement-strategien-advanced-content h2 {
  color: var(--color-text-primary);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .risikomanagement-strategien-advanced-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .risikomanagement-strategien-advanced-content h2 {
    font-size: 2.75rem;
    margin-bottom: 2rem;
  }
}

.risikomanagement-strategien-advanced-content p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .risikomanagement-strategien-advanced-content p {
    font-size: 1rem;
    margin-bottom: 2rem;
  }
}

.risikomanagement-strategien-advanced-content h3 {
  color: var(--color-text-primary);
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .risikomanagement-strategien-advanced-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
  }
}

@media (min-width: 1024px) {
  .risikomanagement-strategien-advanced-content h3 {
    font-size: 1.75rem;
    margin-top: 2.5rem;
  }
}

.risikomanagement-strategien-image-block-5 {
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .risikomanagement-strategien-image-block-5 {
    margin: 2.5rem 0;
  }
}

@media (min-width: 1024px) {
  .risikomanagement-strategien-image-block-5 {
    margin: 3rem 0;
  }
}

.risikomanagement-strategien-disclaimer {
  background: #f0f9ff;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .risikomanagement-strategien-disclaimer {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .risikomanagement-strategien-disclaimer {
    padding: 5rem 0;
  }
}

.risikomanagement-strategien-disclaimer-content {
  max-width: 900px;
  margin: 0 auto;
}

.risikomanagement-strategien-disclaimer-box {
  background: var(--color-bg-card);
  border: 1px solid #dbeafe;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .risikomanagement-strategien-disclaimer-box {
    padding: 2rem;
  }
}

@media (min-width: 1024px) {
  .risikomanagement-strategien-disclaimer-box {
    padding: 2.5rem;
  }
}

.risikomanagement-strategien-disclaimer-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.risikomanagement-strategien-disclaimer-header i {
  font-size: 1.25rem;
  color: #0284c7;
  flex-shrink: 0;
}

.risikomanagement-strategien-disclaimer-header span {
  font-weight: 600;
  color: var(--color-text-primary);
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .risikomanagement-strategien-disclaimer-header span {
    font-size: 1rem;
  }
}

.risikomanagement-strategien-disclaimer-box p {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .risikomanagement-strategien-disclaimer-box p {
    font-size: 0.95rem;
  }
}

.risikomanagement-strategien-related {
  background: var(--color-bg-primary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .risikomanagement-strategien-related {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .risikomanagement-strategien-related {
    padding: 5rem 0;
  }
}

.risikomanagement-strategien-related-content {
  max-width: 900px;
  margin: 0 auto;
}

.risikomanagement-strategien-related-content h2 {
  color: var(--color-text-primary);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .risikomanagement-strategien-related-content h2 {
    font-size: 2.25rem;
    margin-bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  .risikomanagement-strategien-related-content h2 {
    font-size: 2.5rem;
  }
}

.risikomanagement-strategien-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .risikomanagement-strategien-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .risikomanagement-strategien-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.risikomanagement-strategien-related-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-bg-card);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .risikomanagement-strategien-related-card {
    padding: 2rem;
    gap: 1.25rem;
  }
}

.risikomanagement-strategien-related-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.risikomanagement-strategien-related-card h3 {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .risikomanagement-strategien-related-card h3 {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .risikomanagement-strategien-related-card h3 {
    font-size: 1.375rem;
  }
}

.risikomanagement-strategien-related-card p {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .risikomanagement-strategien-related-card p {
    font-size: 0.95rem;
  }
}

.risikomanagement-strategien-related-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

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

.risikomanagement-strategien-related-link:hover {
  color: var(--color-primary-hover);
  gap: 0.75rem;
}

.risikomanagement-strategien-related-link i {
  font-size: 0.75rem;
  transition: all 0.3s ease;
}

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

:root {
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f8fafc;
  --color-bg-tertiary: #f1f5f9;
  --color-bg-card: #ffffff;
  
  --color-text-primary: #1e293b;
  --color-text-secondary: #64748b;
  --color-text-muted: #94a3b8;
  
  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-secondary: #0891b2;
  --color-accent: #06b6d4;
  
  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-heading: 'Playfair Display', Georgia, 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-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);
}

.post-fundamentalanalyse-einfuehrung {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  line-height: 1.6;
}

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

.post-fundamentalanalyse-einfuehrung h1,
.post-fundamentalanalyse-einfuehrung h2,
.post-fundamentalanalyse-einfuehrung h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--color-text-primary);
}

.post-fundamentalanalyse-einfuehrung h1 {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .post-fundamentalanalyse-einfuehrung h1 {
    font-size: 2.75rem;
    margin-bottom: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .post-fundamentalanalyse-einfuehrung h1 {
    font-size: 3.5rem;
    margin-bottom: var(--space-lg);
  }
}

.post-fundamentalanalyse-einfuehrung h2 {
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
  margin-top: var(--space-xl);
}

@media (min-width: 768px) {
  .post-fundamentalanalyse-einfuehrung h2 {
    font-size: 2.25rem;
    margin-bottom: var(--space-lg);
  }
}

@media (min-width: 1024px) {
  .post-fundamentalanalyse-einfuehrung h2 {
    font-size: 2.75rem;
  }
}

.post-fundamentalanalyse-einfuehrung h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
  margin-top: var(--space-lg);
}

@media (min-width: 768px) {
  .post-fundamentalanalyse-einfuehrung h3 {
    font-size: 1.5rem;
  }
}

.post-fundamentalanalyse-einfuehrung p {
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.post-fundamentalanalyse-einfuehrung a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-fundamentalanalyse-einfuehrung a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.post-fundamentalanalyse-einfuehrung ul,
.post-fundamentalanalyse-einfuehrung ol {
  margin-bottom: var(--space-lg);
  padding-left: 1.5rem;
}

@media (min-width: 768px) {
  .post-fundamentalanalyse-einfuehrung ul,
  .post-fundamentalanalyse-einfuehrung ol {
    padding-left: 2rem;
  }
}

.post-fundamentalanalyse-einfuehrung li {
  margin-bottom: var(--space-sm);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.post-fundamentalanalyse-einfuehrung figure {
  margin: var(--space-xl) 0;
}

.post-fundamentalanalyse-einfuehrung img {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  display: block;
  object-fit: cover;
}

.fundamentalanalyse-einfuehrung-breadcrumbs {
  padding: var(--space-md) 0;
  border-bottom: 1px solid #e2e8f0;
  background: var(--color-bg-primary);
}

.fundamentalanalyse-einfuehrung-breadcrumbs nav {
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .fundamentalanalyse-einfuehrung-breadcrumbs nav {
    font-size: 0.9375rem;
  }
}

.fundamentalanalyse-einfuehrung-breadcrumbs a {
  color: var(--color-primary);
}

.fundamentalanalyse-einfuehrung-breadcrumbs span {
  margin: 0 0.5rem;
  color: var(--color-text-muted);
}

.fundamentalanalyse-einfuehrung-hero {
  padding: 3rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  overflow: hidden;
}

@media (min-width: 768px) {
  .fundamentalanalyse-einfuehrung-hero {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .fundamentalanalyse-einfuehrung-hero {
    padding: 5rem 0;
  }
}

.fundamentalanalyse-einfuehrung-hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  align-items: center;
}

@media (min-width: 768px) {
  .fundamentalanalyse-einfuehrung-hero .container {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
  }
}

.fundamentalanalyse-einfuehrung-hero-content {
  order: 2;
}

@media (min-width: 768px) {
  .fundamentalanalyse-einfuehrung-hero-content {
    order: 1;
  }
}

.fundamentalanalyse-einfuehrung-lead {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .fundamentalanalyse-einfuehrung-lead {
    font-size: 1.25rem;
  }
}

.fundamentalanalyse-einfuehrung-meta {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  display: flex;
  gap: var(--space-sm);
  align-items: center;
}

.fundamentalanalyse-einfuehrung-hero-image {
  order: 1;
}

@media (min-width: 768px) {
  .fundamentalanalyse-einfuehrung-hero-image {
    order: 2;
  }
}

.fundamentalanalyse-einfuehrung-hero-image img {
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
  max-height: 400px;
}

.fundamentalanalyse-einfuehrung-intro,
.fundamentalanalyse-einfuehrung-what-is,
.fundamentalanalyse-einfuehrung-process,
.fundamentalanalyse-einfuehrung-sources,
.fundamentalanalyse-einfuehrung-common-mistakes,
.fundamentalanalyse-einfuehrung-next-steps {
  padding: 3rem 0;
  background: var(--color-bg-primary);
}

@media (min-width: 768px) {
  .fundamentalanalyse-einfuehrung-intro,
  .fundamentalanalyse-einfuehrung-what-is,
  .fundamentalanalyse-einfuehrung-process,
  .fundamentalanalyse-einfuehrung-sources,
  .fundamentalanalyse-einfuehrung-common-mistakes,
  .fundamentalanalyse-einfuehrung-next-steps {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .fundamentalanalyse-einfuehrung-intro,
  .fundamentalanalyse-einfuehrung-what-is,
  .fundamentalanalyse-einfuehrung-process,
  .fundamentalanalyse-einfuehrung-sources,
  .fundamentalanalyse-einfuehrung-common-mistakes,
  .fundamentalanalyse-einfuehrung-next-steps {
    padding: 5rem 0;
  }
}

.fundamentalanalyse-einfuehrung-what-is,
.fundamentalanalyse-einfuehrung-sources {
  background: var(--color-bg-secondary);
}

.fundamentalanalyse-einfuehrung-intro-content,
.fundamentalanalyse-einfuehrung-what-content,
.fundamentalanalyse-einfuehrung-process-content,
.fundamentalanalyse-einfuehrung-sources-content,
.fundamentalanalyse-einfuehrung-mistakes-content,
.fundamentalanalyse-einfuehrung-next-content {
  max-width: 800px;
}

.fundamentalanalyse-einfuehrung-intro-image {
  margin: var(--space-xl) 0;
  max-width: 100%;
}

@media (min-width: 768px) {
  .fundamentalanalyse-einfuehrung-intro-image {
    margin: var(--space-2xl) 0;
    max-height: 350px;
  }
}

.fundamentalanalyse-einfuehrung-intro-image img {
  max-height: 300px;
}

@media (min-width: 768px) {
  .fundamentalanalyse-einfuehrung-intro-image img {
    max-height: 350px;
  }
}

.fundamentalanalyse-einfuehrung-highlight-box {
  padding: 1.5rem;
  background: #dbeafe;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  margin: var(--space-lg) 0;
}

@media (min-width: 768px) {
  .fundamentalanalyse-einfuehrung-highlight-box {
    padding: 2rem;
  }
}

.fundamentalanalyse-einfuehrung-highlight-box p {
  margin-bottom: 0;
  color: var(--color-text-primary);
}

.fundamentalanalyse-einfuehrung-what-image {
  margin: var(--space-xl) 0;
}

@media (min-width: 768px) {
  .fundamentalanalyse-einfuehrung-what-image {
    margin: var(--space-2xl) 0;
    max-height: 350px;
  }
}

.fundamentalanalyse-einfuehrung-what-image img {
  max-height: 300px;
}

@media (min-width: 768px) {
  .fundamentalanalyse-einfuehrung-what-image img {
    max-height: 350px;
  }
}

.fundamentalanalyse-einfuehrung-metrics-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

@media (min-width: 768px) {
  .fundamentalanalyse-einfuehrung-metrics-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .fundamentalanalyse-einfuehrung-metrics-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.fundamentalanalyse-einfuehrung-metric-item {
  padding: 1.5rem;
  background: var(--color-bg-card);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .fundamentalanalyse-einfuehrung-metric-item {
    padding: 2rem;
  }
}

.fundamentalanalyse-einfuehrung-metric-item:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.fundamentalanalyse-einfuehrung-metric-item h3 {
  font-size: 1.125rem;
  margin-top: 0;
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
}

@media (min-width: 768px) {
  .fundamentalanalyse-einfuehrung-metric-item h3 {
    font-size: 1.25rem;
  }
}

.fundamentalanalyse-einfuehrung-metric-item p {
  margin-bottom: 0;
  font-size: 0.9375rem;
}

.fundamentalanalyse-einfuehrung-metrics-image {
  margin: var(--space-xl) 0;
}

@media (min-width: 768px) {
  .fundamentalanalyse-einfuehrung-metrics-image {
    margin: var(--space-2xl) 0;
    max-height: 350px;
  }
}

.fundamentalanalyse-einfuehrung-metrics-image img {
  max-height: 300px;
}

@media (min-width: 768px) {
  .fundamentalanalyse-einfuehrung-metrics-image img {
    max-height: 350px;
  }
}

.fundamentalanalyse-einfuehrung-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
  margin: var(--space-xl) 0;
}

@media (min-width: 768px) {
  .fundamentalanalyse-einfuehrung-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .fundamentalanalyse-einfuehrung-steps {
    grid-template-columns: repeat(3, 1fr);
  }
}

.fundamentalanalyse-einfuehrung-step {
  padding: 1.5rem;
  background: var(--color-bg-card);
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-lg);
  position: relative;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .fundamentalanalyse-einfuehrung-step {
    padding: 2rem;
  }
}

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

.fundamentalanalyse-einfuehrung-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.125rem;
  margin-bottom: var(--space-md);
}

.fundamentalanalyse-einfuehrung-step h3 {
  font-size: 1.125rem;
  margin-top: 0;
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
}

@media (min-width: 768px) {
  .fundamentalanalyse-einfuehrung-step h3 {
    font-size: 1.25rem;
  }
}

.fundamentalanalyse-einfuehrung-step p {
  margin-bottom: 0;
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
}

.fundamentalanalyse-einfuehrung-process-image {
  margin: var(--space-xl) 0;
}

@media (min-width: 768px) {
  .fundamentalanalyse-einfuehrung-process-image {
    margin: var(--space-2xl) 0;
    max-height: 350px;
  }
}

.fundamentalanalyse-einfuehrung-process-image img {
  max-height: 300px;
}

@media (min-width: 768px) {
  .fundamentalanalyse-einfuehrung-process-image img {
    max-height: 350px;
  }
}

.fundamentalanalyse-einfuehrung-sources-list {
  list-style: none;
  padding: 0;
  margin: var(--space-lg) 0;
}

.fundamentalanalyse-einfuehrung-sources-list li {
  padding: 1rem;
  background: var(--color-bg-tertiary);
  margin-bottom: var(--space-md);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-secondary);
}

@media (min-width: 768px) {
  .fundamentalanalyse-einfuehrung-sources-list li {
    padding: 1.25rem;
  }
}

.fundamentalanalyse-einfuehrung-sources-list li strong {
  color: var(--color-text-primary);
}

.fundamentalanalyse-einfuehrung-tip-box {
  padding: 1.5rem;
  background: #cffafe;
  border-left: 4px solid var(--color-secondary);
  border-radius: var(--radius-md);
  margin: var(--space-lg) 0;
}

@media (min-width: 768px) {
  .fundamentalanalyse-einfuehrung-tip-box {
    padding: 2rem;
  }
}

.fundamentalanalyse-einfuehrung-tip-box p {
  margin-bottom: 0;
  color: var(--color-text-primary);
}

.fundamentalanalyse-einfuehrung-sources-image {
  margin: var(--space-xl) 0;
}

@media (min-width: 768px) {
  .fundamentalanalyse-einfuehrung-sources-image {
    margin: var(--space-2xl) 0;
    max-height: 350px;
  }
}

.fundamentalanalyse-einfuehrung-sources-image img {
  max-height: 300px;
}

@media (min-width: 768px) {
  .fundamentalanalyse-einfuehrung-sources-image img {
    max-height: 350px;
  }
}

.fundamentalanalyse-einfuehrung-mistake-item {
  padding: 1.5rem;
  background: var(--color-bg-card);
  border-left: 4px solid #fbbf24;
  border-radius: var(--radius-md);
  margin-bottom: var(--space-lg);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .fundamentalanalyse-einfuehrung-mistake-item {
    padding: 2rem;
  }
}

.fundamentalanalyse-einfuehrung-mistake-item:hover {
  box-shadow: var(--shadow-md);
}

.fundamentalanalyse-einfuehrung-mistake-item h3 {
  font-size: 1.125rem;
  margin-top: 0;
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
}

@media (min-width: 768px) {
  .fundamentalanalyse-einfuehrung-mistake-item h3 {
    font-size: 1.25rem;
  }
}

.fundamentalanalyse-einfuehrung-mistake-item p {
  margin-bottom: 0;
  color: var(--color-text-secondary);
}

.fundamentalanalyse-einfuehrung-action-list {
  margin: var(--space-lg) 0;
  padding-left: 1.5rem;
}

@media (min-width: 768px) {
  .fundamentalanalyse-einfuehrung-action-list {
    padding-left: 2rem;
  }
}

.fundamentalanalyse-einfuehrung-action-list li {
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.fundamentalanalyse-einfuehrung-action-list strong {
  color: var(--color-text-primary);
}

.fundamentalanalyse-einfuehrung-disclaimer {
  padding: 3rem 0;
  background: #f8fafc;
  border-top: 2px solid #e2e8f0;
  border-bottom: 2px solid #e2e8f0;
}

@media (min-width: 768px) {
  .fundamentalanalyse-einfuehrung-disclaimer {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .fundamentalanalyse-einfuehrung-disclaimer {
    padding: 5rem 0;
  }
}

.fundamentalanalyse-einfuehrung-disclaimer-content {
  max-width: 800px;
  padding: 1.5rem;
  background: var(--color-bg-card);
  border-left: 4px solid #ef4444;
  border-radius: var(--radius-md);
}

@media (min-width: 768px) {
  .fundamentalanalyse-einfuehrung-disclaimer-content {
    padding: 2rem;
  }
}

.fundamentalanalyse-einfuehrung-disclaimer h3 {
  margin-top: 0;
  color: #dc2626;
  font-size: 1.25rem;
}

.fundamentalanalyse-einfuehrung-disclaimer-content p {
  margin-bottom: 0;
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.8;
}

.fundamentalanalyse-einfuehrung-related {
  padding: 3rem 0;
  background: var(--color-bg-primary);
}

@media (min-width: 768px) {
  .fundamentalanalyse-einfuehrung-related {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .fundamentalanalyse-einfuehrung-related {
    padding: 5rem 0;
  }
}

.fundamentalanalyse-einfuehrung-related h2 {
  margin-top: 0;
  margin-bottom: var(--space-xl);
  max-width: 800px;
}

.fundamentalanalyse-einfuehrung-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-lg);
}

@media (min-width: 768px) {
  .fundamentalanalyse-einfuehrung-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-xl);
  }
}

@media (min-width: 1024px) {
  .fundamentalanalyse-einfuehrung-related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.fundamentalanalyse-einfuehrung-related-card {
  padding: 1.5rem;
  background: var(--color-bg-card);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
}

@media (min-width: 768px) {
  .fundamentalanalyse-einfuehrung-related-card {
    padding: 2rem;
  }
}

.fundamentalanalyse-einfuehrung-related-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.fundamentalanalyse-einfuehrung-related-card h3 {
  margin-top: 0;
  margin-bottom: var(--space-md);
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  .fundamentalanalyse-einfuehrung-related-card h3 {
    font-size: 1.375rem;
  }
}

.fundamentalanalyse-einfuehrung-related-card h3 a {
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.fundamentalanalyse-einfuehrung-related-card h3 a:hover {
  color: var(--color-primary);
}

.fundamentalanalyse-einfuehrung-related-card p {
  flex-grow: 1;
  margin-bottom: var(--space-lg);
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
}

.fundamentalanalyse-einfuehrung-read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

.fundamentalanalyse-einfuehrung-read-more:hover {
  color: var(--color-primary-hover);
  transform: translateX(4px);
}

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

.post-intraday-handelsstrategien {
      background: var(--color-bg-primary);
      color: var(--color-text-secondary);
    }

    .intraday-handelsstrategien-breadcrumbs {
      padding: 1.5rem 0;
      font-size: 0.875rem;
    }

    .intraday-handelsstrategien-breadcrumbs a {
      color: var(--color-primary);
      margin-right: 0.5rem;
    }

    .intraday-handelsstrategien-breadcrumbs a:hover {
      color: var(--color-primary-hover);
    }

    .intraday-handelsstrategien-hero {
      padding: 3rem 0;
      background: var(--color-bg-primary);
    }

    @media (min-width: 768px) {
      .intraday-handelsstrategien-hero {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .intraday-handelsstrategien-hero {
        padding: 5rem 0;
      }
    }

    .intraday-handelsstrategien-hero-content {
      position: relative;
      z-index: 10;
    }

    .intraday-handelsstrategien-hero h1 {
      color: var(--color-text-primary);
      margin-bottom: 1rem;
      font-size: 2rem;
    }

    @media (min-width: 768px) {
      .intraday-handelsstrategien-hero h1 {
        font-size: 2.75rem;
      }
    }

    @media (min-width: 1024px) {
      .intraday-handelsstrategien-hero h1 {
        font-size: 3.5rem;
      }
    }

    .intraday-handelsstrategien-hero-meta {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 2rem;
      font-size: 0.875rem;
      color: var(--color-text-muted);
    }

    @media (min-width: 768px) {
      .intraday-handelsstrategien-hero-meta {
        flex-direction: row;
        gap: 2rem;
      }
    }

    .intraday-handelsstrategien-hero-lead {
      font-size: 1.125rem;
      line-height: 1.7;
      color: var(--color-text-secondary);
      margin-bottom: 2rem;
      max-width: 600px;
    }

    @media (min-width: 768px) {
      .intraday-handelsstrategien-hero-lead {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
      }
    }

    .intraday-handelsstrategien-hero-image {
      margin-top: 2rem;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

    @media (min-width: 768px) {
      .intraday-handelsstrategien-hero-image {
        margin-top: 2.5rem;
      }
    }

    .intraday-handelsstrategien-hero-image img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      aspect-ratio: 16 / 9;
    }

    .intraday-handelsstrategien-content-section {
      padding: 3rem 0;
      border-bottom: 1px solid #e2e8f0;
    }

    @media (min-width: 768px) {
      .intraday-handelsstrategien-content-section {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .intraday-handelsstrategien-content-section {
        padding: 5rem 0;
      }
    }

    .intraday-handelsstrategien-content-section:last-of-type {
      border-bottom: none;
    }

    .intraday-handelsstrategien-section-1,
    .intraday-handelsstrategien-section-2,
    .intraday-handelsstrategien-section-3,
    .intraday-handelsstrategien-section-4 {
      position: relative;
      z-index: 10;
    }

    .intraday-handelsstrategien-section-1 h2,
    .intraday-handelsstrategien-section-2 h2,
    .intraday-handelsstrategien-section-3 h2,
    .intraday-handelsstrategien-section-4 h2 {
      color: var(--color-text-primary);
      margin-bottom: 1.5rem;
    }

    .intraday-handelsstrategien-section-1 p,
    .intraday-handelsstrategien-section-2 p,
    .intraday-handelsstrategien-section-3 p,
    .intraday-handelsstrategien-section-4 p {
      color: var(--color-text-secondary);
      margin-bottom: 1.5rem;
      line-height: 1.8;
    }

    .intraday-handelsstrategien-content-grid {
      display: grid;
      gap: 2rem;
      align-items: center;
      margin-bottom: 2rem;
    }

    @media (min-width: 768px) {
      .intraday-handelsstrategien-content-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
      }
    }

    @media (min-width: 1024px) {
      .intraday-handelsstrategien-content-grid {
        gap: 3rem;
      }
    }

    .intraday-handelsstrategien-content-grid-image {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
    }

    .intraday-handelsstrategien-content-grid-image img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
      aspect-ratio: 4 / 3;
    }

    .intraday-handelsstrategien-highlight-box {
      background: #dbeafe;
      border-left: 4px solid var(--color-primary);
      padding: 1.5rem;
      border-radius: var(--radius-md);
      margin: 2rem 0;
    }

    @media (min-width: 768px) {
      .intraday-handelsstrategien-highlight-box {
        padding: 2rem;
      }
    }

    .intraday-handelsstrategien-highlight-box h3 {
      color: var(--color-primary);
      margin-bottom: 0.75rem;
      font-size: 1.125rem;
    }

    .intraday-handelsstrategien-highlight-box p {
      color: #1e40af;
      margin-bottom: 0;
      font-weight: 500;
    }

    .intraday-handelsstrategien-list {
      list-style: none;
      padding: 0;
      margin: 2rem 0;
    }

    .intraday-handelsstrategien-list li {
      padding: 0.75rem 0;
      padding-left: 1.75rem;
      position: relative;
      color: var(--color-text-secondary);
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .intraday-handelsstrategien-list li {
        padding: 1rem 0;
      }
    }

    .intraday-handelsstrategien-list li:before {
      content: "";
      position: absolute;
      left: 0;
      color: var(--color-primary);
      font-weight: 700;
    }

    .intraday-handelsstrategien-quote-section {
      margin: 3rem 0;
      padding: 2rem;
      background: var(--color-bg-secondary);
      border-radius: var(--radius-lg);
      border-left: 4px solid var(--color-secondary);
    }

    @media (min-width: 768px) {
      .intraday-handelsstrategien-quote-section {
        margin: 3rem 0;
        padding: 2.5rem;
      }
    }

    .intraday-handelsstrategien-quote-text {
      font-size: 1.25rem;
      font-style: italic;
      color: var(--color-text-primary);
      margin-bottom: 1rem;
      line-height: 1.7;
    }

    @media (min-width: 768px) {
      .intraday-handelsstrategien-quote-text {
        font-size: 1.375rem;
      }
    }

    .intraday-handelsstrategien-quote-attribution {
      color: var(--color-text-muted);
      font-size: 0.875rem;
    }

    .intraday-handelsstrategien-disclaimer {
      background: #f0f4f8;
      border: 1px solid #cbd5e1;
      border-radius: var(--radius-lg);
      padding: 2rem;
      margin: 3rem 0;
    }

    @media (min-width: 768px) {
      .intraday-handelsstrategien-disclaimer {
        padding: 2.5rem;
      }
    }

    .intraday-handelsstrategien-disclaimer h3 {
      color: var(--color-text-primary);
      margin-bottom: 1rem;
      font-size: 1.125rem;
    }

    .intraday-handelsstrategien-disclaimer p {
      color: var(--color-text-secondary);
      font-size: 0.9375rem;
      line-height: 1.8;
      margin-bottom: 0;
    }

    .intraday-handelsstrategien-related {
      padding: 3rem 0;
    }

    @media (min-width: 768px) {
      .intraday-handelsstrategien-related {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .intraday-handelsstrategien-related {
        padding: 5rem 0;
      }
    }

    .intraday-handelsstrategien-related h2 {
      color: var(--color-text-primary);
      margin-bottom: 2rem;
    }

    .intraday-handelsstrategien-related-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .intraday-handelsstrategien-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .intraday-handelsstrategien-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
      }
    }

    .intraday-handelsstrategien-related-card {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding: 1.5rem;
      background: var(--color-bg-card);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
      text-decoration: none;
    }

    @media (min-width: 768px) {
      .intraday-handelsstrategien-related-card {
        padding: 2rem;
        gap: 1.25rem;
      }
    }

    .intraday-handelsstrategien-related-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }

    .intraday-handelsstrategien-related-card h3 {
      color: var(--color-text-primary);
      margin: 0;
      font-size: 1.125rem;
    }

    @media (min-width: 768px) {
      .intraday-handelsstrategien-related-card h3 {
        font-size: 1.25rem;
      }
    }

    .intraday-handelsstrategien-related-card p {
      color: var(--color-text-secondary);
      margin: 0;
      font-size: 0.9375rem;
      line-height: 1.6;
    }

    .intraday-handelsstrategien-related-card-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;
    }

    .intraday-handelsstrategien-related-card:hover .intraday-handelsstrategien-related-card-link {
      color: var(--color-primary-hover);
    }

.post-kryptowaehrungen-digital-trading {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.kryptowaehrungen-digital-trading-breadcrumbs {
  background: var(--color-bg-secondary);
  padding: 1.5rem 0;
  border-bottom: 1px solid #e2e8f0;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .kryptowaehrungen-digital-trading-breadcrumbs {
    padding: 2rem 0;
  }
}

.kryptowaehrungen-digital-trading-breadcrumbs a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.kryptowaehrungen-digital-trading-breadcrumbs a:hover {
  color: var(--color-primary-hover);
}

.kryptowaehrungen-digital-trading-breadcrumbs span {
  color: var(--color-text-muted);
  margin: 0 0.5rem;
}

.kryptowaehrungen-digital-trading-breadcrumbs [aria-current="page"] {
  color: var(--color-text-secondary);
  font-weight: 500;
}

.kryptowaehrungen-digital-trading-hero {
  background: var(--color-bg-primary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .kryptowaehrungen-digital-trading-hero {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .kryptowaehrungen-digital-trading-hero {
    padding: 6rem 0;
  }
}

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

@media (min-width: 1024px) {
  .kryptowaehrungen-digital-trading-hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.kryptowaehrungen-digital-trading-hero-text h1 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  font-size: 2rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .kryptowaehrungen-digital-trading-hero-text h1 {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .kryptowaehrungen-digital-trading-hero-text h1 {
    font-size: 3.5rem;
  }
}

.kryptowaehrungen-digital-trading-lead {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .kryptowaehrungen-digital-trading-lead {
    font-size: 1.125rem;
  }
}

.kryptowaehrungen-digital-trading-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.kryptowaehrungen-digital-trading-meta-divider {
  color: #cbd5e1;
}

.kryptowaehrungen-digital-trading-hero-image {
  width: 100%;
  height: auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.kryptowaehrungen-digital-trading-featured-image,
.kryptowaehrungen-digital-trading-section-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  object-fit: cover;
}

.kryptowaehrungen-digital-trading-introduction {
  background: var(--color-bg-primary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .kryptowaehrungen-digital-trading-introduction {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .kryptowaehrungen-digital-trading-introduction {
    padding: 6rem 0;
  }
}

.kryptowaehrungen-digital-trading-introduction-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .kryptowaehrungen-digital-trading-introduction-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.kryptowaehrungen-digital-trading-intro-text p {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .kryptowaehrungen-digital-trading-intro-text p {
    font-size: 1.0625rem;
  }
}

.kryptowaehrungen-digital-trading-intro-text p:last-child {
  margin-bottom: 0;
}

.kryptowaehrungen-digital-trading-intro-image {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .kryptowaehrungen-digital-trading-intro-image {
    height: 350px;
  }
}

@media (min-width: 1024px) {
  .kryptowaehrungen-digital-trading-intro-image {
    height: 400px;
  }
}

.kryptowaehrungen-digital-trading-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kryptowaehrungen-digital-trading-fundamentals {
  background: var(--color-bg-secondary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .kryptowaehrungen-digital-trading-fundamentals {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .kryptowaehrungen-digital-trading-fundamentals {
    padding: 6rem 0;
  }
}

.kryptowaehrungen-digital-trading-fundamentals-content h2 {
  color: var(--color-text-primary);
  font-size: 1.75rem;
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .kryptowaehrungen-digital-trading-fundamentals-content h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .kryptowaehrungen-digital-trading-fundamentals-content h2 {
    font-size: 3rem;
  }
}

.kryptowaehrungen-digital-trading-fundamentals-content p {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .kryptowaehrungen-digital-trading-fundamentals-content p {
    font-size: 1.0625rem;
  }
}

.kryptowaehrungen-digital-trading-highlight-box {
  background: #dbeafe;
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  margin: var(--space-lg) 0;
}

@media (min-width: 768px) {
  .kryptowaehrungen-digital-trading-highlight-box {
    padding: 2rem;
  }
}

.kryptowaehrungen-digital-trading-highlight-box p {
  color: #1e40af;
  margin-bottom: 0;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .kryptowaehrungen-digital-trading-highlight-box p {
    font-size: 1.0625rem;
  }
}

.kryptowaehrungen-digital-trading-highlight-box strong {
  color: #1e3a8a;
  font-weight: 600;
}

.kryptowaehrungen-digital-trading-fundamentals-image {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: var(--space-lg) 0;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .kryptowaehrungen-digital-trading-fundamentals-image {
    height: 350px;
  }
}

@media (min-width: 1024px) {
  .kryptowaehrungen-digital-trading-fundamentals-image {
    height: 400px;
  }
}

.kryptowaehrungen-digital-trading-fundamentals-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kryptowaehrungen-digital-trading-types {
  background: var(--color-bg-primary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .kryptowaehrungen-digital-trading-types {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .kryptowaehrungen-digital-trading-types {
    padding: 6rem 0;
  }
}

.kryptowaehrungen-digital-trading-types-content h2 {
  color: var(--color-text-primary);
  font-size: 1.75rem;
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .kryptowaehrungen-digital-trading-types-content h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .kryptowaehrungen-digital-trading-types-content h2 {
    font-size: 3rem;
  }
}

.kryptowaehrungen-digital-trading-types-content > p {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .kryptowaehrungen-digital-trading-types-content > p {
    font-size: 1.0625rem;
  }
}

.kryptowaehrungen-digital-trading-types-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: var(--space-xl) 0;
}

@media (min-width: 768px) {
  .kryptowaehrungen-digital-trading-types-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .kryptowaehrungen-digital-trading-types-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.kryptowaehrungen-digital-trading-type-card {
  background: #f8fafc;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .kryptowaehrungen-digital-trading-type-card {
    padding: 2rem;
  }
}

.kryptowaehrungen-digital-trading-type-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
  border-color: var(--color-primary);
}

.kryptowaehrungen-digital-trading-type-card h3 {
  color: var(--color-text-primary);
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

@media (min-width: 768px) {
  .kryptowaehrungen-digital-trading-type-card h3 {
    font-size: 1.375rem;
  }
}

.kryptowaehrungen-digital-trading-type-card p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .kryptowaehrungen-digital-trading-type-card p {
    font-size: 1rem;
  }
}

.kryptowaehrungen-digital-trading-types-image {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-top: var(--space-xl);
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .kryptowaehrungen-digital-trading-types-image {
    height: 350px;
  }
}

@media (min-width: 1024px) {
  .kryptowaehrungen-digital-trading-types-image {
    height: 400px;
  }
}

.kryptowaehrungen-digital-trading-types-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kryptowaehrungen-digital-trading-mechanics {
  background: var(--color-bg-secondary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .kryptowaehrungen-digital-trading-mechanics {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .kryptowaehrungen-digital-trading-mechanics {
    padding: 6rem 0;
  }
}

.kryptowaehrungen-digital-trading-mechanics-content h2 {
  color: var(--color-text-primary);
  font-size: 1.75rem;
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .kryptowaehrungen-digital-trading-mechanics-content h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .kryptowaehrungen-digital-trading-mechanics-content h2 {
    font-size: 3rem;
  }
}

.kryptowaehrungen-digital-trading-mechanics-content p {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .kryptowaehrungen-digital-trading-mechanics-content p {
    font-size: 1.0625rem;
  }
}

.kryptowaehrungen-digital-trading-mechanics-image {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: var(--space-lg) 0;
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .kryptowaehrungen-digital-trading-mechanics-image {
    height: 350px;
  }
}

@media (min-width: 1024px) {
  .kryptowaehrungen-digital-trading-mechanics-image {
    height: 400px;
  }
}

.kryptowaehrungen-digital-trading-mechanics-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kryptowaehrungen-digital-trading-quote-section {
  margin: var(--space-xl) 0;
  padding: 2rem 0;
  text-align: center;
  border-top: 2px solid #e2e8f0;
  border-bottom: 2px solid #e2e8f0;
}

@media (min-width: 768px) {
  .kryptowaehrungen-digital-trading-quote-section {
    padding: 3rem 0;
  }
}

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

@media (min-width: 768px) {
  .kryptowaehrungen-digital-trading-quote {
    font-size: 1.5rem;
  }
}

.kryptowaehrungen-digital-trading-quote p {
  margin: 0;
  color: var(--color-text-primary);
}

.kryptowaehrungen-digital-trading-considerations {
  background: var(--color-bg-primary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .kryptowaehrungen-digital-trading-considerations {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .kryptowaehrungen-digital-trading-considerations {
    padding: 6rem 0;
  }
}

.kryptowaehrungen-digital-trading-considerations-content h2 {
  color: var(--color-text-primary);
  font-size: 1.75rem;
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .kryptowaehrungen-digital-trading-considerations-content h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .kryptowaehrungen-digital-trading-considerations-content h2 {
    font-size: 3rem;
  }
}

.kryptowaehrungen-digital-trading-considerations-content > p {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .kryptowaehrungen-digital-trading-considerations-content > p {
    font-size: 1.0625rem;
  }
}

.kryptowaehrungen-digital-trading-considerations-image {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin: var(--space-lg) 0;
  box-shadow: var(--shadow-md);
  float: right;
  margin-left: var(--space-lg);
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .kryptowaehrungen-digital-trading-considerations-image {
    width: 45%;
    height: 350px;
  }
}

@media (max-width: 1023px) {
  .kryptowaehrungen-digital-trading-considerations-image {
    float: none;
    margin: var(--space-lg) 0;
  }
}

.kryptowaehrungen-digital-trading-considerations-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.kryptowaehrungen-digital-trading-disclaimer {
  background: #fffbeb;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .kryptowaehrungen-digital-trading-disclaimer {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .kryptowaehrungen-digital-trading-disclaimer {
    padding: 6rem 0;
  }
}

.kryptowaehrungen-digital-trading-disclaimer-box {
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
  .kryptowaehrungen-digital-trading-disclaimer-box {
    padding: 2rem;
  }
}

.kryptowaehrungen-digital-trading-disclaimer-box h3 {
  color: #92400e;
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

@media (min-width: 768px) {
  .kryptowaehrungen-digital-trading-disclaimer-box h3 {
    font-size: 1.375rem;
  }
}

.kryptowaehrungen-digital-trading-disclaimer-box p {
  color: #78350f;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .kryptowaehrungen-digital-trading-disclaimer-box p {
    font-size: 1rem;
  }
}

.kryptowaehrungen-digital-trading-related {
  background: var(--color-bg-secondary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .kryptowaehrungen-digital-trading-related {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .kryptowaehrungen-digital-trading-related {
    padding: 6rem 0;
  }
}

.kryptowaehrungen-digital-trading-related-content h2 {
  color: var(--color-text-primary);
  font-size: 1.75rem;
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .kryptowaehrungen-digital-trading-related-content h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .kryptowaehrungen-digital-trading-related-content h2 {
    font-size: 3rem;
  }
}

.kryptowaehrungen-digital-trading-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .kryptowaehrungen-digital-trading-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .kryptowaehrungen-digital-trading-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.kryptowaehrungen-digital-trading-related-card {
  background: var(--color-bg-card);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

@media (min-width: 768px) {
  .kryptowaehrungen-digital-trading-related-card {
    padding: 2rem;
  }
}

.kryptowaehrungen-digital-trading-related-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--color-primary);
}

.kryptowaehrungen-digital-trading-related-card h3 {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
}

@media (min-width: 768px) {
  .kryptowaehrungen-digital-trading-related-card h3 {
    font-size: 1.25rem;
  }
}

.kryptowaehrungen-digital-trading-related-card h3 a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.kryptowaehrungen-digital-trading-related-card h3 a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.kryptowaehrungen-digital-trading-related-card p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .kryptowaehrungen-digital-trading-related-card p {
    font-size: 1rem;
  }
}

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

.post-trendfolge-momentum-strategien {
      background: #ffffff;
    }

    .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-breadcrumbs {
      background: #f8fafc;
      padding: 1rem 0;
    }

    .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-breadcrumbs-content {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.875rem;
      color: #64748b;
    }

    .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-breadcrumbs-link {
      color: #2563eb;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-breadcrumbs-link:hover {
      color: #1d4ed8;
    }

    .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-breadcrumbs-separator {
      color: #cbd5e1;
    }

    .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-hero {
      background: #ffffff;
      padding: 3rem 0;
    }

    @media (min-width: 768px) {
      .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-hero {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-hero {
        padding: 5rem 0;
      }
    }

    .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-hero-content {
      position: relative;
      z-index: 10;
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-hero h1 {
      color: #1e293b;
      font-size: 2rem;
      margin-bottom: 0;
    }

    @media (min-width: 768px) {
      .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-hero h1 {
        font-size: 2.75rem;
      }
    }

    @media (min-width: 1024px) {
      .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-hero h1 {
        font-size: 3.75rem;
      }
    }

    .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-hero-meta {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-hero-subtitle {
      font-size: 1.125rem;
      color: #64748b;
      line-height: 1.6;
      max-width: 600px;
      margin: 0;
    }

    @media (min-width: 768px) {
      .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-hero-subtitle {
        font-size: 1.25rem;
      }
    }

    .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-hero-info {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      flex-wrap: wrap;
      font-size: 0.875rem;
      color: #94a3b8;
    }

    .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-hero-image {
      width: 100%;
      max-height: 400px;
      border-radius: 12px;
      object-fit: cover;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-content-section {
      background: #f8fafc;
      padding: 3rem 0;
    }

    @media (min-width: 768px) {
      .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-content-section {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-content-section {
        padding: 5rem 0;
      }
    }

    .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-content-section:nth-child(even) {
      background: #ffffff;
    }

    .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-content-wrapper {
      position: relative;
      z-index: 10;
      display: grid;
      gap: 2rem;
    }

    @media (min-width: 1024px) {
      .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-content-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
      }
    }

    .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-content-text {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-content-section h2 {
      color: #1e293b;
      font-size: 1.75rem;
      margin-bottom: 0;
    }

    @media (min-width: 768px) {
      .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-content-section h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-content-section h2 {
        font-size: 2.75rem;
      }
    }

    .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-content-section p {
      color: #64748b;
      font-size: 1rem;
      line-height: 1.8;
      margin-bottom: 0;
    }

    .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-content-list {
      list-style: none;
      padding: 0;
      margin: 0;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-content-list li {
      display: flex;
      gap: 1rem;
      align-items: flex-start;
      color: #64748b;
      margin: 0;
    }

    .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-content-list li:before {
      content: "";
      flex-shrink: 0;
      color: #2563eb;
      font-weight: 700;
      font-size: 1.25rem;
      margin-top: -2px;
    }

    .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-content-image {
      width: 100%;
      max-height: 350px;
      border-radius: 12px;
      object-fit: cover;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    }

    .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-quote-section {
      background: #dbeafe;
      padding: 3rem;
      border-radius: 12px;
      border-left: 4px solid #2563eb;
      margin: 2rem 0;
    }

    @media (min-width: 768px) {
      .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-quote-section {
        padding: 3rem;
      }
    }

    .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-quote-text {
      font-size: 1.125rem;
      color: #1e40af;
      font-weight: 500;
      line-height: 1.6;
      margin: 0;
      font-style: italic;
    }

    .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-highlight-box {
      background: #f0f9ff;
      border: 2px solid #bfdbfe;
      padding: 1.5rem;
      border-radius: 8px;
      margin: 1.5rem 0;
    }

    @media (min-width: 768px) {
      .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-highlight-box {
        padding: 2rem;
      }
    }

    .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-highlight-box p {
      color: #1e40af;
      margin: 0;
      font-size: 0.95rem;
      line-height: 1.7;
    }

    .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-disclaimer {
      background: #fef3c7;
      border-left: 4px solid #f59e0b;
      padding: 2rem;
      border-radius: 8px;
      margin: 3rem 0;
    }

    @media (min-width: 768px) {
      .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-disclaimer {
        padding: 2.5rem;
        margin: 4rem 0;
      }
    }

    .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-disclaimer-title {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-weight: 600;
      color: #92400e;
      margin-bottom: 0.75rem;
      font-size: 1rem;
    }

    .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-disclaimer-text {
      color: #78350f;
      font-size: 0.95rem;
      line-height: 1.7;
      margin: 0;
    }

    .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-related {
      background: #f8fafc;
      padding: 3rem 0;
    }

    @media (min-width: 768px) {
      .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-related {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-related {
        padding: 5rem 0;
      }
    }

    .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-related-content {
      position: relative;
      z-index: 10;
    }

    .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-related h2 {
      color: #1e293b;
      font-size: 1.75rem;
      margin-bottom: 2rem;
    }

    @media (min-width: 768px) {
      .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-related h2 {
        font-size: 2.25rem;
      }
    }

    .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-related-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
      }
    }

    .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-related-card {
      background: #ffffff;
      border-radius: 12px;
      overflow: hidden;
      box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-related-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
    }

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

    .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-related-body {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      flex-grow: 1;
    }

    @media (min-width: 768px) {
      .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-related-body {
        padding: 2rem;
        gap: 1rem;
      }
    }

    .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-related-card h3 {
      color: #1e293b;
      font-size: 1.25rem;
      margin-bottom: 0;
    }

    .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-related-card p {
      color: #64748b;
      font-size: 0.95rem;
      line-height: 1.6;
      margin-bottom: 0;
      flex-grow: 1;
    }

    .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-related-link {
      color: #2563eb;
      font-weight: 600;
      text-decoration: none;
      transition: color 0.3s ease;
      font-size: 0.95rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .post-trendfolge-momentum-strategien .trendfolge-momentum-strategien-related-link:hover {
      color: #1d4ed8;
    }

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

.post-vermoegensallokation-diversifikation {
  background: var(--color-bg-primary);
  overflow: hidden;
}

.vermoegensallokation-diversifikation-breadcrumbs {
  background: var(--color-bg-secondary);
  padding: 1rem 0;
  border-bottom: 1px solid #e2e8f0;
}

@media (min-width: 768px) {
  .vermoegensallokation-diversifikation-breadcrumbs {
    padding: 1.25rem 0;
  }
}

.vermoegensallokation-diversifikation-breadcrumbs nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .vermoegensallokation-diversifikation-breadcrumbs nav {
    font-size: 1rem;
  }
}

.vermoegensallokation-diversifikation-breadcrumb-link {
  color: var(--color-primary);
  font-weight: 500;
}

.vermoegensallokation-diversifikation-breadcrumb-link:hover {
  text-decoration: underline;
}

.vermoegensallokation-diversifikation-breadcrumb-separator {
  color: var(--color-text-secondary);
}

.vermoegensallokation-diversifikation-breadcrumb-current {
  color: var(--color-text-secondary);
  font-weight: 500;
}

.vermoegensallokation-diversifikation-hero {
  position: relative;
  background: var(--color-bg-primary);
  padding: 3rem 0;
  overflow: hidden;
}

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

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

.vermoegensallokation-diversifikation-hero-decoration-glow-1 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 50%;
  filter: blur(80px);
  top: -100px;
  left: -150px;
  z-index: 1;
  pointer-events: none;
}

.vermoegensallokation-diversifikation-hero-decoration-glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(6, 182, 212, 0.06);
  border-radius: 50%;
  filter: blur(70px);
  bottom: -50px;
  right: -100px;
  z-index: 1;
  pointer-events: none;
}

.vermoegensallokation-diversifikation-hero-decoration-shape-1 {
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(37, 99, 235, 0.05);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  top: 10%;
  right: 5%;
  z-index: 2;
  pointer-events: none;
}

.vermoegensallokation-diversifikation-hero-decoration-shape-2 {
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 30% 70% 40% 60% / 70% 30% 60% 40%;
  bottom: 10%;
  left: 3%;
  z-index: 2;
  pointer-events: none;
}

.vermoegensallokation-diversifikation-hero-decoration-accent-1 {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(59, 130, 246, 0.1);
  border-radius: 50%;
  filter: blur(40px);
  top: 20%;
  right: 15%;
  z-index: 1;
  pointer-events: none;
}

.vermoegensallokation-diversifikation-hero-decoration-accent-2 {
  position: absolute;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.15), transparent);
  bottom: 15%;
  left: 10%;
  z-index: 1;
  pointer-events: none;
}

.vermoegensallokation-diversifikation-hero-decoration-line {
  position: absolute;
  width: 1px;
  height: 150px;
  background: linear-gradient(180deg, rgba(6, 182, 212, 0.2), transparent);
  top: 30%;
  right: 8%;
  z-index: 1;
  pointer-events: none;
}

.vermoegensallokation-diversifikation-hero-decoration-float {
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 15px;
  top: 40%;
  left: 5%;
  transform: rotate(-15deg);
  z-index: 1;
  pointer-events: none;
}

.vermoegensallokation-diversifikation-hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .vermoegensallokation-diversifikation-hero-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .vermoegensallokation-diversifikation-hero-content {
    gap: 4rem;
  }
}

.vermoegensallokation-diversifikation-hero-text h1 {
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .vermoegensallokation-diversifikation-hero-text h1 {
    margin-bottom: 1.5rem;
  }
}

.vermoegensallokation-diversifikation-hero-lead {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .vermoegensallokation-diversifikation-hero-lead {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
}

.vermoegensallokation-diversifikation-hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .vermoegensallokation-diversifikation-hero-meta {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.vermoegensallokation-diversifikation-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-secondary);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .vermoegensallokation-diversifikation-meta-item {
    font-size: 0.9375rem;
  }
}

.vermoegensallokation-diversifikation-meta-item .fas {
  color: var(--color-primary);
  font-size: 1rem;
}

.vermoegensallokation-diversifikation-hero-image {
  display: none;
}

@media (min-width: 768px) {
  .vermoegensallokation-diversifikation-hero-image {
    display: block;
  }
}

.vermoegensallokation-diversifikation-hero-img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.vermoegensallokation-diversifikation-intro {
  background: var(--color-bg-secondary);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

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

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

.vermoegensallokation-diversifikation-intro-content {
  position: relative;
  z-index: 5;
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .vermoegensallokation-diversifikation-intro-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .vermoegensallokation-diversifikation-intro-content {
    gap: 4rem;
  }
}

.vermoegensallokation-diversifikation-intro-text h2 {
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
}

.vermoegensallokation-diversifikation-intro-text p {
  color: var(--color-text-secondary);
  margin-bottom: 1.25rem;
  line-height: 1.7;
}

.vermoegensallokation-diversifikation-intro-text p:last-child {
  margin-bottom: 0;
}

.vermoegensallokation-diversifikation-intro-image {
  display: none;
}

@media (min-width: 768px) {
  .vermoegensallokation-diversifikation-intro-image {
    display: block;
  }
}

.vermoegensallokation-diversifikation-intro-img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.vermoegensallokation-diversifikation-principles {
  background: var(--color-bg-primary);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

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

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

.vermoegensallokation-diversifikation-principles-decoration-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 50%;
  filter: blur(80px);
  top: -100px;
  right: -50px;
  z-index: 1;
  pointer-events: none;
}

.vermoegensallokation-diversifikation-principles-decoration-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(37, 99, 235, 0.06);
  border-radius: 50%;
  filter: blur(70px);
  bottom: -80px;
  left: -100px;
  z-index: 1;
  pointer-events: none;
}

.vermoegensallokation-diversifikation-principles-decoration-3 {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  top: 50%;
  left: 5%;
  z-index: 1;
  pointer-events: none;
}

.vermoegensallokation-diversifikation-principles-decoration-4 {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 50%;
  filter: blur(50px);
  top: 30%;
  right: 10%;
  z-index: 1;
  pointer-events: none;
}

.vermoegensallokation-diversifikation-principles-decoration-5 {
  position: absolute;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.12), transparent);
  top: 25%;
  left: 20%;
  z-index: 1;
  pointer-events: none;
}

.vermoegensallokation-diversifikation-principles-content {
  position: relative;
  z-index: 5;
}

.vermoegensallokation-diversifikation-principles-content h2 {
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .vermoegensallokation-diversifikation-principles-content h2 {
    margin-bottom: 3.5rem;
  }
}

.vermoegensallokation-diversifikation-principles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .vermoegensallokation-diversifikation-principles-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
  }
}

@media (min-width: 1024px) {
  .vermoegensallokation-diversifikation-principles-grid {
    gap: 2.5rem;
  }
}

.vermoegensallokation-diversifikation-principle-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .vermoegensallokation-diversifikation-principle-card {
    padding: 2rem;
    gap: 1.25rem;
  }
}

.vermoegensallokation-diversifikation-principle-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.vermoegensallokation-diversifikation-principle-icon {
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  background: #dbeafe;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .vermoegensallokation-diversifikation-principle-icon {
    width: 3.5rem;
    height: 3.5rem;
  }
}

.vermoegensallokation-diversifikation-principle-icon .fas {
  font-size: 1.5rem;
  color: var(--color-primary);
}

.vermoegensallokation-diversifikation-principle-card h3 {
  color: var(--color-text-primary);
  margin: 0;
}

.vermoegensallokation-diversifikation-principle-card p {
  color: var(--color-text-secondary);
  margin: 0;
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .vermoegensallokation-diversifikation-principle-card p {
    font-size: 1rem;
  }
}

.vermoegensallokation-diversifikation-principles-image {
  display: none;
}

@media (min-width: 768px) {
  .vermoegensallokation-diversifikation-principles-image {
    display: block;
  }
}

.vermoegensallokation-diversifikation-principles-img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.vermoegensallokation-diversifikation-strategy {
  background: var(--color-bg-secondary);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

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

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

.vermoegensallokation-diversifikation-strategy-content {
  position: relative;
  z-index: 5;
  display: grid;
  gap: 2rem;
}

@media (min-width: 768px) {
  .vermoegensallokation-diversifikation-strategy-content {
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .vermoegensallokation-diversifikation-strategy-content {
    gap: 4rem;
  }
}

.vermoegensallokation-diversifikation-strategy-content h2 {
  color: var(--color-text-primary);
  grid-column: 1 / -1;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .vermoegensallokation-diversifikation-strategy-content h2 {
    grid-column: 1;
    margin-bottom: 0;
  }
}

.vermoegensallokation-diversifikation-strategy-text h3 {
  color: var(--color-text-primary);
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.vermoegensallokation-diversifikation-strategy-text h3:first-child {
  margin-top: 0;
}

.vermoegensallokation-diversifikation-strategy-text p {
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.vermoegensallokation-diversifikation-strategy-image {
  display: none;
}

@media (min-width: 768px) {
  .vermoegensallokation-diversifikation-strategy-image {
    display: block;
    grid-column: 2;
    grid-row: 1 / 3;
  }
}

.vermoegensallokation-diversifikation-strategy-img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.vermoegensallokation-diversifikation-highlight {
  background: var(--color-bg-primary);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .vermoegensallokation-diversifikation-highlight {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .vermoegensallokation-diversifikation-highlight {
    padding: 5rem 0;
  }
}

.vermoegensallokation-diversifikation-highlight-decoration-1 {
  position: absolute;
  width: 450px;
  height: 450px;
  background: rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  filter: blur(90px);
  top: -100px;
  left: -150px;
  z-index: 1;
  pointer-events: none;
}

.vermoegensallokation-diversifikation-highlight-decoration-2 {
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(6, 182, 212, 0.08);
  border-radius: 50%;
  filter: blur(70px);
  bottom: -80px;
  right: -100px;
  z-index: 1;
  pointer-events: none;
}

.vermoegensallokation-diversifikation-highlight-decoration-3 {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(37, 99, 235, 0.06);
  border-radius: 50%;
  filter: blur(50px);
  top: 50%;
  right: 5%;
  z-index: 1;
  pointer-events: none;
}

.vermoegensallokation-diversifikation-highlight-box {
  position: relative;
  z-index: 10;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.02) 0%, rgba(6, 182, 212, 0.02) 100%);
  border: 2px solid #dbeafe;
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .vermoegensallokation-diversifikation-highlight-box {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .vermoegensallokation-diversifikation-highlight-box {
    padding: 3rem;
  }
}

.vermoegensallokation-diversifikation-highlight-icon {
  width: 3.5rem;
  height: 3.5rem;
  background: #dbeafe;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}

@media (min-width: 768px) {
  .vermoegensallokation-diversifikation-highlight-icon {
    width: 4rem;
    height: 4rem;
    margin-bottom: 1.25rem;
  }
}

.vermoegensallokation-diversifikation-highlight-icon .fas {
  font-size: 1.75rem;
  color: var(--color-primary);
}

.vermoegensallokation-diversifikation-highlight-box h3 {
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.vermoegensallokation-diversifikation-highlight-box p {
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.7;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .vermoegensallokation-diversifikation-highlight-box p {
    font-size: 1.0625rem;
  }
}

.vermoegensallokation-diversifikation-implementation {
  background: var(--color-bg-primary);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

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

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

.vermoegensallokation-diversifikation-implementation-content {
  position: relative;
  z-index: 5;
}

.vermoegensallokation-diversifikation-implementation-content h2 {
  color: var(--color-text-primary);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .vermoegensallokation-diversifikation-implementation-content h2 {
    margin-bottom: 2.5rem;
  }
}

.vermoegensallokation-diversifikation-implementation-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .vermoegensallokation-diversifikation-implementation-steps {
    gap: 2rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .vermoegensallokation-diversifikation-implementation-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

.vermoegensallokation-diversifikation-step {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

@media (min-width: 768px) {
  .vermoegensallokation-diversifikation-step {
    gap: 2rem;
    padding: 2rem;
  }
}

.vermoegensallokation-diversifikation-step-number {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  background: #dbeafe;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-primary);
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  .vermoegensallokation-diversifikation-step-number {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.5rem;
  }
}

.vermoegensallokation-diversifikation-step-content h4 {
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.vermoegensallokation-diversifikation-step-content p {
  color: var(--color-text-secondary);
  margin: 0;
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .vermoegensallokation-diversifikation-step-content p {
    font-size: 1rem;
  }
}

.vermoegensallokation-diversifikation-implementation-image {
  display: none;
}

@media (min-width: 768px) {
  .vermoegensallokation-diversifikation-implementation-image {
    display: block;
  }
}

.vermoegensallokation-diversifikation-implementation-img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.vermoegensallokation-diversifikation-disclaimer {
  background: var(--color-bg-secondary);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .vermoegensallokation-diversifikation-disclaimer {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .vermoegensallokation-diversifikation-disclaimer {
    padding: 5rem 0;
  }
}

.vermoegensallokation-diversifikation-disclaimer-decoration-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(6, 182, 212, 0.06);
  border-radius: 50%;
  filter: blur(80px);
  top: -100px;
  right: -50px;
  z-index: 1;
  pointer-events: none;
}

.vermoegensallokation-diversifikation-disclaimer-decoration-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(37, 99, 235, 0.05);
  border-radius: 50%;
  filter: blur(70px);
  bottom: -50px;
  left: -100px;
  z-index: 1;
  pointer-events: none;
}

.vermoegensallokation-diversifikation-disclaimer-decoration-3 {
  position: absolute;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.1), transparent);
  top: 30%;
  left: 15%;
  z-index: 1;
  pointer-events: none;
}

.vermoegensallokation-diversifikation-disclaimer-box {
  position: relative;
  z-index: 10;
  background: var(--color-bg-primary);
  border-left: 5px solid var(--color-secondary);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .vermoegensallokation-diversifikation-disclaimer-box {
    padding: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .vermoegensallokation-diversifikation-disclaimer-box {
    padding: 3rem;
  }
}

.vermoegensallokation-diversifikation-disclaimer-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.vermoegensallokation-diversifikation-disclaimer-header .fas {
  color: var(--color-secondary);
  font-size: 1.25rem;
  flex-shrink: 0;
}

.vermoegensallokation-diversifikation-disclaimer-header h3 {
  color: var(--color-text-primary);
  margin: 0;
}

.vermoegensallokation-diversifikation-disclaimer-box p {
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.7;
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .vermoegensallokation-diversifikation-disclaimer-box p {
    font-size: 1rem;
  }
}

.vermoegensallokation-diversifikation-related {
  background: var(--color-bg-primary);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

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

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

.vermoegensallokation-diversifikation-related-decoration-1 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 50%;
  filter: blur(80px);
  top: -150px;
  left: -100px;
  z-index: 1;
  pointer-events: none;
}

.vermoegensallokation-diversifikation-related-decoration-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(6, 182, 212, 0.06);
  border-radius: 50%;
  filter: blur(70px);
  bottom: -100px;
  right: -50px;
  z-index: 1;
  pointer-events: none;
}

.vermoegensallokation-diversifikation-related-decoration-3 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(37, 99, 235, 0.05);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  top: 40%;
  right: 5%;
  z-index: 1;
  pointer-events: none;
}

.vermoegensallokation-diversifikation-related-decoration-4 {
  position: absolute;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.12), transparent);
  top: 20%;
  left: 10%;
  z-index: 1;
  pointer-events: none;
}

.vermoegensallokation-diversifikation-related-content {
  position: relative;
  z-index: 10;
}

.vermoegensallokation-diversifikation-related-content h2 {
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .vermoegensallokation-diversifikation-related-content h2 {
    margin-bottom: 3rem;
  }
}

.vermoegensallokation-diversifikation-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .vermoegensallokation-diversifikation-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .vermoegensallokation-diversifikation-related-grid {
    gap: 2.5rem;
  }
}

.vermoegensallokation-diversifikation-related-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .vermoegensallokation-diversifikation-related-card {
    gap: 1.25rem;
  }
}

.vermoegensallokation-diversifikation-related-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.vermoegensallokation-diversifikation-related-card-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

@media (min-width: 768px) {
  .vermoegensallokation-diversifikation-related-card-img {
    height: 220px;
  }
}

.vermoegensallokation-diversifikation-related-card h3 {
  color: var(--color-text-primary);
  padding: 0 1rem;
  margin: 0;
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .vermoegensallokation-diversifikation-related-card h3 {
    padding: 0 1.25rem;
    font-size: 1.25rem;
  }
}

.vermoegensallokation-diversifikation-related-card p {
  color: var(--color-text-secondary);
  padding: 0 1rem;
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .vermoegensallokation-diversifikation-related-card p {
    padding: 0 1.25rem;
    font-size: 1rem;
  }
}

.vermoegensallokation-diversifikation-related-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  padding: 0 1rem 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .vermoegensallokation-diversifikation-related-link {
    padding: 0 1.25rem 1.25rem;
  }
}

.vermoegensallokation-diversifikation-related-link:hover {
  color: var(--color-primary-hover);
  gap: 0.75rem;
}

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

.post-makrooekonomie-handelseinfluesse {
      background: var(--color-bg-primary);
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-breadcrumbs {
      padding: 1rem 0;
      font-size: 0.875rem;
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-breadcrumbs a {
      color: var(--color-primary);
      transition: color 0.3s ease;
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-breadcrumbs a:hover {
      color: var(--color-primary-hover);
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-breadcrumbs span {
      color: var(--color-text-muted);
      margin: 0 0.5rem;
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-hero {
      position: relative;
      overflow: hidden;
      padding: 3rem 0;
      background: linear-gradient(135deg, #f0f4f8 0%, #ffffff 100%);
    }

    @media (min-width: 768px) {
      .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-hero {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-hero {
        padding: 6rem 0;
      }
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-hero-glow-1 {
      position: absolute;
      top: -200px;
      right: -200px;
      width: 500px;
      height: 500px;
      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;
    }

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

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-hero-shape {
      position: absolute;
      top: 10%;
      left: 5%;
      width: 300px;
      height: 300px;
      background: rgba(59, 130, 246, 0.05);
      border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
      z-index: 2;
      pointer-events: none;
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-hero-accent {
      position: absolute;
      bottom: 20%;
      right: 10%;
      width: 200px;
      height: 200px;
      background: rgba(6, 182, 212, 0.06);
      border-radius: 45% 55% 60% 40% / 55% 45% 40% 60%;
      z-index: 1;
      pointer-events: none;
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-hero-content {
      position: relative;
      z-index: 10;
      display: grid;
      gap: 2rem;
      align-items: center;
    }

    @media (min-width: 1024px) {
      .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
      }
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-hero-text h1 {
      color: var(--color-text-primary);
      margin-bottom: 1rem;
    }

    @media (min-width: 1024px) {
      .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-hero-text h1 {
        margin-bottom: 1.5rem;
      }
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-hero-text p {
      color: var(--color-text-secondary);
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 0;
    }

    @media (min-width: 768px) {
      .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-hero-text p {
        font-size: 1.0625rem;
      }
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-hero-image {
      position: relative;
      z-index: 10;
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-hero-image img {
      width: 100%;
      height: auto;
      border-radius: var(--radius-lg);
      box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
      object-fit: cover;
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-content-section {
      padding: 3rem 0;
    }

    @media (min-width: 768px) {
      .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-content-section {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-content-section {
        padding: 5rem 0;
      }
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-content-section:nth-child(odd) {
      background: var(--color-bg-secondary);
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-section-deco-1 {
      position: absolute;
      top: -100px;
      left: 5%;
      width: 350px;
      height: 350px;
      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;
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-section-deco-2 {
      position: absolute;
      bottom: -80px;
      right: 3%;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(6, 182, 212, 0.07) 0%, transparent 70%);
      border-radius: 50%;
      filter: blur(60px);
      z-index: 1;
      pointer-events: none;
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-section-deco-shape {
      position: absolute;
      top: 15%;
      right: 8%;
      width: 250px;
      height: 250px;
      background: rgba(6, 182, 212, 0.05);
      border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
      z-index: 2;
      pointer-events: none;
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-content-wrapper {
      position: relative;
      z-index: 10;
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-content-block {
      display: grid;
      gap: 2rem;
      align-items: center;
      margin-bottom: 2rem;
    }

    @media (min-width: 768px) {
      .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-content-block {
        gap: 2.5rem;
        margin-bottom: 2.5rem;
      }
    }

    @media (min-width: 1024px) {
      .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-content-block {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        margin-bottom: 3rem;
      }
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-content-block.reverse {
      direction: rtl;
    }

    @media (min-width: 1024px) {
      .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-content-block.reverse > * {
        direction: ltr;
      }
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-content-text h2 {
      color: var(--color-text-primary);
      margin-bottom: 1rem;
    }

    @media (min-width: 1024px) {
      .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-content-text h2 {
        margin-bottom: 1.5rem;
      }
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-content-text p {
      color: var(--color-text-secondary);
      margin-bottom: 1rem;
      line-height: 1.7;
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-content-text p:last-child {
      margin-bottom: 0;
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-content-text ul {
      color: var(--color-text-secondary);
      margin-bottom: 0;
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-content-text li {
      color: var(--color-text-secondary);
      margin-bottom: 0.75rem;
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-content-image img {
      width: 100%;
      height: auto;
      border-radius: var(--radius-lg);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
      object-fit: cover;
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-highlight-box {
      background: rgba(59, 130, 246, 0.05);
      border-left: 4px solid var(--color-primary);
      padding: 1.5rem;
      border-radius: var(--radius-md);
      margin: 2rem 0;
    }

    @media (min-width: 768px) {
      .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-highlight-box {
        padding: 2rem;
        margin: 2.5rem 0;
      }
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-highlight-box h3 {
      color: var(--color-primary);
      margin-bottom: 0.75rem;
      font-size: 1.125rem;
    }

    @media (min-width: 768px) {
      .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-highlight-box h3 {
        font-size: 1.25rem;
      }
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-highlight-box p {
      color: var(--color-text-secondary);
      margin-bottom: 0;
      font-size: 0.9375rem;
    }

    @media (min-width: 768px) {
      .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-highlight-box p {
        font-size: 1rem;
      }
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-quote-section {
      padding: 3rem 0;
      background: var(--color-bg-secondary);
      margin: 3rem 0;
      position: relative;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-quote-section {
        padding: 4rem 0;
        margin: 4rem 0;
      }
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-quote-deco {
      position: absolute;
      top: 20%;
      right: 5%;
      width: 250px;
      height: 250px;
      background: radial-gradient(circle, rgba(6, 182, 212, 0.08) 0%, transparent 70%);
      border-radius: 50%;
      filter: blur(60px);
      z-index: 1;
      pointer-events: none;
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-quote-content {
      position: relative;
      z-index: 10;
      text-align: center;
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-quote-content blockquote {
      font-size: 1.5rem;
      color: var(--color-text-primary);
      font-style: italic;
      line-height: 1.6;
      margin: 0;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-quote-content blockquote {
        font-size: 1.875rem;
        margin-bottom: 2rem;
      }
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-disclaimer-section {
      position: relative;
      overflow: hidden;
      padding: 3rem 0;
      background: linear-gradient(135deg, #fef3c7 0%, #fef9e7 100%);
      margin: 3rem 0;
    }

    @media (min-width: 768px) {
      .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-disclaimer-section {
        padding: 4rem 0;
        margin: 4rem 0;
      }
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-disclaimer-deco-1 {
      position: absolute;
      top: -80px;
      left: 5%;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(251, 146, 60, 0.08) 0%, transparent 70%);
      border-radius: 50%;
      filter: blur(60px);
      z-index: 1;
      pointer-events: none;
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-disclaimer-deco-2 {
      position: absolute;
      bottom: -60px;
      right: 3%;
      width: 250px;
      height: 250px;
      background: radial-gradient(circle, rgba(251, 146, 60, 0.06) 0%, transparent 70%);
      border-radius: 50%;
      filter: blur(50px);
      z-index: 1;
      pointer-events: none;
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-disclaimer-content {
      position: relative;
      z-index: 10;
      background: #ffffff;
      padding: 2rem;
      border-radius: var(--radius-lg);
      border-left: 4px solid #f59e0b;
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    }

    @media (min-width: 768px) {
      .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-disclaimer-content {
        padding: 2.5rem;
      }
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-disclaimer-content h3 {
      color: #b45309;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 1.125rem;
    }

    @media (min-width: 768px) {
      .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-disclaimer-content h3 {
        font-size: 1.25rem;
      }
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-disclaimer-content h3 .fas {
      color: #f59e0b;
      font-size: 1.25rem;
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-disclaimer-content p {
      color: #6b7280;
      margin-bottom: 0.75rem;
      font-size: 0.9375rem;
    }

    @media (min-width: 768px) {
      .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-disclaimer-content p {
        font-size: 1rem;
      }
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-disclaimer-content p:last-child {
      margin-bottom: 0;
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-related-section {
      position: relative;
      overflow: hidden;
      padding: 3rem 0;
      background: var(--color-bg-primary);
    }

    @media (min-width: 768px) {
      .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-related-section {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-related-section {
        padding: 5rem 0;
      }
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-related-deco-1 {
      position: absolute;
      top: 5%;
      left: 3%;
      width: 300px;
      height: 300px;
      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;
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-related-deco-2 {
      position: absolute;
      bottom: -100px;
      right: 5%;
      width: 350px;
      height: 350px;
      background: radial-gradient(circle, rgba(6, 182, 212, 0.07) 0%, transparent 70%);
      border-radius: 50%;
      filter: blur(80px);
      z-index: 1;
      pointer-events: none;
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-related-content {
      position: relative;
      z-index: 10;
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-related-title {
      color: var(--color-text-primary);
      text-align: center;
      margin-bottom: 3rem;
    }

    @media (min-width: 768px) {
      .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-related-title {
        margin-bottom: 3.5rem;
      }
    }

    @media (min-width: 1024px) {
      .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-related-title {
        margin-bottom: 4rem;
      }
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-related-grid {
      display: grid;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
      }
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-related-card {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding: 1.5rem;
      background: var(--color-bg-card);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
      text-decoration: none;
    }

    @media (min-width: 768px) {
      .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-related-card {
        padding: 2rem;
        gap: 1.25rem;
      }
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-related-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-related-card h3 {
      color: var(--color-text-primary);
      margin-bottom: 0;
      font-size: 1.125rem;
    }

    @media (min-width: 768px) {
      .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-related-card h3 {
        font-size: 1.25rem;
      }
    }

    .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-related-card p {
      color: var(--color-text-secondary);
      margin-bottom: 0;
      font-size: 0.875rem;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .post-makrooekonomie-handelseinfluesse .makrooekonomie-handelseinfluesse-related-card 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;
      }
    }

.post-optionen-futures-verstaendnis {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.optionen-futures-verstaendnis-breadcrumbs-section {
  padding: 1.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.optionen-futures-verstaendnis-breadcrumbs {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.optionen-futures-verstaendnis-breadcrumbs a {
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.optionen-futures-verstaendnis-breadcrumbs a:hover {
  color: var(--color-primary-hover);
}

.optionen-futures-verstaendnis-breadcrumbs span {
  color: var(--color-text-secondary);
}

.optionen-futures-verstaendnis-hero {
  position: relative;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .optionen-futures-verstaendnis-hero {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .optionen-futures-verstaendnis-hero {
    padding: 6rem 0;
  }
}

.optionen-futures-verstaendnis-hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  z-index: 1;
  pointer-events: none;
}

.optionen-futures-verstaendnis-hero::before {
  content: '';
  position: absolute;
  top: 10%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 2;
  pointer-events: none;
}

.optionen-futures-verstaendnis-hero::after {
  content: '';
  position: absolute;
  bottom: 10%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: rgba(8, 145, 178, 0.06);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 2;
  pointer-events: none;
}

.optionen-futures-verstaendnis-hero .container {
  position: relative;
  z-index: 10;
}

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

@media (min-width: 1024px) {
  .optionen-futures-verstaendnis-hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.optionen-futures-verstaendnis-hero h1 {
  color: var(--color-text-primary);
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .optionen-futures-verstaendnis-hero h1 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .optionen-futures-verstaendnis-hero h1 {
    font-size: 3rem;
  }
}

.optionen-futures-verstaendnis-hero-lead {
  font-size: 1.0625rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .optionen-futures-verstaendnis-hero-lead {
    font-size: 1.125rem;
  }
}

.optionen-futures-verstaendnis-hero-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
}

.optionen-futures-verstaendnis-read-time,
.optionen-futures-verstaendnis-category {
  color: var(--color-text-secondary);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.optionen-futures-verstaendnis-category {
  background: #dbeafe;
  color: #1e40af;
  padding: 0.375rem 0.875rem;
  border-radius: var(--radius-xl);
  font-weight: 600;
}

.optionen-futures-verstaendnis-hero-image {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.optionen-futures-verstaendnis-featured-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  min-height: 300px;
}

@media (min-width: 1024px) {
  .optionen-futures-verstaendnis-featured-image {
    min-height: 400px;
  }
}

.optionen-futures-verstaendnis-introduction {
  padding: 3rem 0;
  background: var(--color-bg-primary);
}

@media (min-width: 768px) {
  .optionen-futures-verstaendnis-introduction {
    padding: 5rem 0;
  }
}

.optionen-futures-verstaendnis-intro-content h2 {
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
}

.optionen-futures-verstaendnis-intro-content > p {
  color: var(--color-text-secondary);
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .optionen-futures-verstaendnis-intro-content > p {
    font-size: 1.125rem;
  }
}

.optionen-futures-verstaendnis-comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .optionen-futures-verstaendnis-comparison-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.optionen-futures-verstaendnis-comparison-card {
  padding: 1.5rem;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .optionen-futures-verstaendnis-comparison-card {
    padding: 2rem;
  }
}

.optionen-futures-verstaendnis-comparison-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.optionen-futures-verstaendnis-comparison-card h3 {
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.optionen-futures-verstaendnis-comparison-card p {
  color: var(--color-text-secondary);
  margin-bottom: 0;
  font-size: 0.9375rem;
}

.optionen-futures-verstaendnis-content-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  margin: 2rem 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

@media (min-width: 768px) {
  .optionen-futures-verstaendnis-content-image {
    margin: 2.5rem 0;
  }
}

@media (min-width: 1024px) {
  .optionen-futures-verstaendnis-content-image {
    margin: 3rem 0;
  }
}

.optionen-futures-verstaendnis-mechanics {
  padding: 3rem 0;
  background: var(--color-bg-secondary);
}

@media (min-width: 768px) {
  .optionen-futures-verstaendnis-mechanics {
    padding: 5rem 0;
  }
}

.optionen-futures-verstaendnis-mechanics h2 {
  color: var(--color-text-primary);
  margin-bottom: 2rem;
}

.optionen-futures-verstaendnis-mechanics-blocks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .optionen-futures-verstaendnis-mechanics-blocks {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

.optionen-futures-verstaendnis-mechanic-block h3 {
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.optionen-futures-verstaendnis-mechanic-block p {
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.optionen-futures-verstaendnis-feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.optionen-futures-verstaendnis-feature-list li {
  padding-left: 1.5rem;
  margin-bottom: 0.75rem;
  color: var(--color-text-secondary);
  position: relative;
}

.optionen-futures-verstaendnis-feature-list li::before {
  content: '';
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.optionen-futures-verstaendnis-strategies {
  position: relative;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .optionen-futures-verstaendnis-strategies {
    padding: 5rem 0;
  }
}

.optionen-futures-verstaendnis-strategies-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #f1f5f9 0%, #ffffff 100%);
  z-index: 1;
  pointer-events: none;
}

.optionen-futures-verstaendnis-strategies::before {
  content: '';
  position: absolute;
  top: 50%;
  right: -10%;
  width: 400px;
  height: 400px;
  background: rgba(37, 99, 235, 0.05);
  border-radius: 50%;
  filter: blur(100px);
  z-index: 2;
  pointer-events: none;
}

.optionen-futures-verstaendnis-strategies-content {
  position: relative;
  z-index: 10;
}

.optionen-futures-verstaendnis-strategies h2 {
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.optionen-futures-verstaendnis-strategies > .container > p {
  color: var(--color-text-secondary);
  font-size: 1.0625rem;
  margin-bottom: 2rem;
}

.optionen-futures-verstaendnis-strategies-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .optionen-futures-verstaendnis-strategies-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .optionen-futures-verstaendnis-strategies-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.optionen-futures-verstaendnis-strategy-item {
  padding: 1.5rem;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  border: 1px solid #e2e8f0;
}

@media (min-width: 768px) {
  .optionen-futures-verstaendnis-strategy-item {
    padding: 2rem;
  }
}

.optionen-futures-verstaendnis-strategy-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.optionen-futures-verstaendnis-strategy-number {
  display: inline-block;
  width: 2.5rem;
  height: 2.5rem;
  background: #dbeafe;
  color: var(--color-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.optionen-futures-verstaendnis-strategy-item h3 {
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.optionen-futures-verstaendnis-strategy-item p {
  color: var(--color-text-secondary);
  margin-bottom: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.optionen-futures-verstaendnis-risks {
  padding: 3rem 0;
  background: var(--color-bg-primary);
}

@media (min-width: 768px) {
  .optionen-futures-verstaendnis-risks {
    padding: 5rem 0;
  }
}

.optionen-futures-verstaendnis-risks h2 {
  color: var(--color-text-primary);
  margin-bottom: 2rem;
}

.optionen-futures-verstaendnis-risk-highlight {
  padding: 1.5rem;
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  border-radius: var(--radius-lg);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .optionen-futures-verstaendnis-risk-highlight {
    padding: 2rem;
  }
}

.optionen-futures-verstaendnis-risk-highlight p {
  color: #78350f;
  margin-bottom: 0;
  line-height: 1.7;
}

.optionen-futures-verstaendnis-risks-list h3 {
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
}

.optionen-futures-verstaendnis-risks-list {
  margin-bottom: 2rem;
}

.optionen-futures-verstaendnis-risk-item {
  padding: 1.25rem;
  margin-bottom: 1rem;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  border-left: 3px solid var(--color-secondary);
}

@media (min-width: 768px) {
  .optionen-futures-verstaendnis-risk-item {
    padding: 1.5rem;
    margin-bottom: 1.25rem;
  }
}

.optionen-futures-verstaendnis-risk-item h4 {
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.optionen-futures-verstaendnis-risk-item p {
  color: var(--color-text-secondary);
  margin-bottom: 0;
  font-size: 0.9375rem;
}

.optionen-futures-verstaendnis-quote-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

@media (min-width: 768px) {
  .optionen-futures-verstaendnis-quote-section {
    padding: 5rem 0;
  }
}

.optionen-futures-verstaendnis-quote {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
  padding: 2rem;
}

@media (min-width: 768px) {
  .optionen-futures-verstaendnis-quote {
    padding: 3rem;
  }
}

.optionen-futures-verstaendnis-quote p {
  font-size: 1.25rem;
  font-style: italic;
  color: var(--color-text-primary);
  line-height: 1.8;
  margin-bottom: 0;
  letter-spacing: -0.3px;
}

@media (min-width: 768px) {
  .optionen-futures-verstaendnis-quote p {
    font-size: 1.5rem;
  }
}

.optionen-futures-verstaendnis-getting-started {
  padding: 3rem 0;
  background: var(--color-bg-secondary);
}

@media (min-width: 768px) {
  .optionen-futures-verstaendnis-getting-started {
    padding: 5rem 0;
  }
}

.optionen-futures-verstaendnis-getting-started h2 {
  color: var(--color-text-primary);
  margin-bottom: 2rem;
}

.optionen-futures-verstaendnis-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .optionen-futures-verstaendnis-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .optionen-futures-verstaendnis-steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.optionen-futures-verstaendnis-step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.optionen-futures-verstaendnis-step-number {
  width: 3rem;
  height: 3rem;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.25rem;
}

.optionen-futures-verstaendnis-step h3 {
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.optionen-futures-verstaendnis-step p {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.optionen-futures-verstaendnis-disclaimer {
  padding: 3rem 0;
  background: var(--color-bg-primary);
}

@media (min-width: 768px) {
  .optionen-futures-verstaendnis-disclaimer {
    padding: 5rem 0;
  }
}

.optionen-futures-verstaendnis-disclaimer-box {
  padding: 1.5rem;
  background: #eff6ff;
  border: 2px solid #bfdbfe;
  border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
  .optionen-futures-verstaendnis-disclaimer-box {
    padding: 2rem;
  }
}

.optionen-futures-verstaendnis-disclaimer-box h3 {
  color: #1e40af;
  margin-bottom: 1rem;
}

.optionen-futures-verstaendnis-disclaimer-box p {
  color: #1e3a8a;
  line-height: 1.8;
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.optionen-futures-verstaendnis-disclaimer-box p:last-child {
  margin-bottom: 0;
}

.optionen-futures-verstaendnis-related {
  padding: 3rem 0;
  background: linear-gradient(135deg, #f1f5f9 0%, #ffffff 100%);
}

@media (min-width: 768px) {
  .optionen-futures-verstaendnis-related {
    padding: 5rem 0;
  }
}

.optionen-futures-verstaendnis-related h2 {
  color: var(--color-text-primary);
  margin-bottom: 2rem;
}

.optionen-futures-verstaendnis-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .optionen-futures-verstaendnis-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .optionen-futures-verstaendnis-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.optionen-futures-verstaendnis-related-card {
  display: flex;
  flex-direction: column;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  text-decoration: none;
  padding: 1.5rem;
  border: 1px solid #e2e8f0;
}

@media (min-width: 768px) {
  .optionen-futures-verstaendnis-related-card {
    padding: 2rem;
  }
}

.optionen-futures-verstaendnis-related-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--color-primary);
}

.optionen-futures-verstaendnis-related-card-inner {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.optionen-futures-verstaendnis-related-card h3 {
  color: var(--color-text-primary);
  margin-bottom: 0;
  line-height: 1.4;
}

.optionen-futures-verstaendnis-related-card p {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 0;
  line-height: 1.6;
}

.optionen-futures-verstaendnis-related-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: #dbeafe;
  border-radius: 50%;
  color: var(--color-primary);
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.optionen-futures-verstaendnis-related-card:hover .optionen-futures-verstaendnis-related-arrow {
  background: var(--color-primary);
  color: #ffffff;
  transform: translateX(4px);
}

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

.post-marktpsychologie-sentiment {
      background: var(--color-bg-primary);
      color: var(--color-text-primary);
    }

    .marktpsychologie-sentiment-breadcrumbs {
      padding: 1.5rem 0;
      font-size: 0.875rem;
    }

    @media (min-width: 768px) {
      .marktpsychologie-sentiment-breadcrumbs {
        padding: 2rem 0;
        font-size: 0.9375rem;
      }
    }

    .marktpsychologie-sentiment-breadcrumbs a {
      color: var(--color-primary);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .marktpsychologie-sentiment-breadcrumbs a:hover {
      color: var(--color-primary-hover);
      text-decoration: underline;
    }

    .marktpsychologie-sentiment-breadcrumbs span {
      color: var(--color-text-muted);
      margin: 0 0.5rem;
    }

    .marktpsychologie-sentiment-hero {
      background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
      padding: 3rem 0;
      margin-bottom: 3rem;
    }

    @media (min-width: 768px) {
      .marktpsychologie-sentiment-hero {
        padding: 4rem 0;
        margin-bottom: 4rem;
      }
    }

    @media (min-width: 1024px) {
      .marktpsychologie-sentiment-hero {
        padding: 5rem 0;
        margin-bottom: 5rem;
      }
    }

    .marktpsychologie-sentiment-hero-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 1024px) {
      .marktpsychologie-sentiment-hero-content {
        flex-direction: row;
        gap: 3rem;
        align-items: center;
      }
    }

    .marktpsychologie-sentiment-hero-text {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .marktpsychologie-sentiment-hero-text {
        gap: 2rem;
      }
    }

    .marktpsychologie-sentiment-hero h1 {
      color: var(--color-text-primary);
      font-size: 2rem;
      line-height: 1.2;
    }

    @media (min-width: 768px) {
      .marktpsychologie-sentiment-hero h1 {
        font-size: 2.75rem;
      }
    }

    @media (min-width: 1024px) {
      .marktpsychologie-sentiment-hero h1 {
        font-size: 3.5rem;
      }
    }

    .marktpsychologie-sentiment-hero-meta {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      font-size: 0.9375rem;
      color: var(--color-text-secondary);
    }

    @media (min-width: 768px) {
      .marktpsychologie-sentiment-hero-meta {
        flex-direction: row;
        gap: 2rem;
      }
    }

    .marktpsychologie-sentiment-hero-badge {
      display: inline-block;
      width: fit-content;
      padding: 0.5rem 1rem;
      background: #dbeafe;
      color: #1e40af;
      border-radius: var(--radius-lg);
      font-weight: 600;
      font-size: 0.75rem;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .marktpsychologie-sentiment-hero-image {
      flex: 1;
      display: none;
    }

    @media (min-width: 1024px) {
      .marktpsychologie-sentiment-hero-image {
        display: block;
      }
    }

    .marktpsychologie-sentiment-hero-image img {
      width: 100%;
      height: auto;
      max-height: 400px;
      object-fit: cover;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
    }

    .marktpsychologie-sentiment-article {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    @media (min-width: 1024px) {
      .marktpsychologie-sentiment-article {
        flex-direction: row;
        gap: 3rem;
      }
    }

    .marktpsychologie-sentiment-article-content {
      flex: 1;
      min-width: 0;
    }

    .marktpsychologie-sentiment-section {
      margin-bottom: 3rem;
      padding-bottom: 3rem;
      border-bottom: 1px solid #e2e8f0;
    }

    @media (min-width: 768px) {
      .marktpsychologie-sentiment-section {
        margin-bottom: 4rem;
        padding-bottom: 4rem;
      }
    }

    .marktpsychologie-sentiment-section:last-of-type {
      border-bottom: none;
      margin-bottom: 0;
      padding-bottom: 0;
    }

    .marktpsychologie-sentiment-section h2 {
      color: var(--color-text-primary);
      font-size: 1.75rem;
      margin-bottom: 1.5rem;
      line-height: 1.2;
    }

    @media (min-width: 768px) {
      .marktpsychologie-sentiment-section h2 {
        font-size: 2.25rem;
        margin-bottom: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .marktpsychologie-sentiment-section h2 {
        font-size: 2.75rem;
      }
    }

    .marktpsychologie-sentiment-section h3 {
      color: var(--color-text-primary);
      font-size: 1.375rem;
      margin: 2rem 0 1rem 0;
      line-height: 1.2;
    }

    @media (min-width: 768px) {
      .marktpsychologie-sentiment-section h3 {
        font-size: 1.625rem;
        margin: 2.5rem 0 1.25rem 0;
      }
    }

    @media (min-width: 1024px) {
      .marktpsychologie-sentiment-section h3 {
        font-size: 2rem;
      }
    }

    .marktpsychologie-sentiment-section h3:first-child {
      margin-top: 0;
    }

    .marktpsychologie-sentiment-section p {
      color: var(--color-text-secondary);
      font-size: 0.875rem;
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .marktpsychologie-sentiment-section p {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 1.75rem;
      }
    }

    .marktpsychologie-sentiment-section p:last-child {
      margin-bottom: 0;
    }

    .marktpsychologie-sentiment-section ul,
    .marktpsychologie-sentiment-section ol {
      margin: 1.5rem 0 2rem 1.5rem;
      color: var(--color-text-secondary);
    }

    @media (min-width: 768px) {
      .marktpsychologie-sentiment-section ul,
      .marktpsychologie-sentiment-section ol {
        margin: 2rem 0 2.5rem 2rem;
      }
    }

    .marktpsychologie-sentiment-section li {
      margin-bottom: 0.75rem;
      color: var(--color-text-secondary);
      font-size: 0.875rem;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .marktpsychologie-sentiment-section li {
        font-size: 1rem;
        margin-bottom: 1rem;
      }
    }

    .marktpsychologie-sentiment-image-wrapper {
      margin: 2rem 0;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
    }

    @media (min-width: 768px) {
      .marktpsychologie-sentiment-image-wrapper {
        margin: 2.5rem 0;
      }
    }

    .marktpsychologie-sentiment-image-wrapper img {
      width: 100%;
      height: auto;
      max-height: 350px;
      object-fit: cover;
      display: block;
    }

    .marktpsychologie-sentiment-image-caption {
      font-size: 0.75rem;
      color: var(--color-text-muted);
      margin-top: 0.75rem;
      font-style: italic;
      text-align: center;
    }

    @media (min-width: 768px) {
      .marktpsychologie-sentiment-image-caption {
        font-size: 0.875rem;
        margin-top: 1rem;
      }
    }

    .marktpsychologie-sentiment-highlight {
      background: #dbeafe;
      border-left: 4px solid var(--color-primary);
      padding: 1.5rem;
      border-radius: var(--radius-md);
      margin: 2rem 0;
      color: #0c4a6e;
      font-size: 0.875rem;
      line-height: 1.7;
    }

    @media (min-width: 768px) {
      .marktpsychologie-sentiment-highlight {
        padding: 2rem;
        font-size: 1rem;
        line-height: 1.8;
        margin: 2.5rem 0;
      }
    }

    .marktpsychologie-sentiment-highlight strong {
      color: #0c4a6e;
      font-weight: 700;
    }

    .marktpsychologie-sentiment-quote {
      border-left: 4px solid var(--color-secondary);
      padding: 1.5rem;
      margin: 2rem 0;
      background: #f0f9fa;
      border-radius: var(--radius-md);
      font-size: 1rem;
      line-height: 1.8;
      color: var(--color-text-primary);
      font-style: italic;
    }

    @media (min-width: 768px) {
      .marktpsychologie-sentiment-quote {
        padding: 2rem;
        font-size: 1.125rem;
        margin: 2.5rem 0;
      }
    }

    .marktpsychologie-sentiment-quote::before {
      content: '"';
      font-size: 2.5rem;
      color: var(--color-secondary);
      line-height: 0;
      margin-right: 0.5rem;
      vertical-align: -0.4em;
    }

    .marktpsychologie-sentiment-sidebar {
      display: none;
    }

    @media (min-width: 1024px) {
      .marktpsychologie-sentiment-sidebar {
        display: block;
        width: 280px;
        flex-shrink: 0;
      }
    }

    .marktpsychologie-sentiment-toc {
      background: var(--color-bg-secondary);
      padding: 1.5rem;
      border-radius: var(--radius-lg);
      position: sticky;
      top: 2rem;
      border: 1px solid #e2e8f0;
    }

    .marktpsychologie-sentiment-toc-title {
      font-size: 0.875rem;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      color: var(--color-text-primary);
      margin-bottom: 1rem;
    }

    .marktpsychologie-sentiment-toc-list {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .marktpsychologie-sentiment-toc-list li {
      margin: 0;
      padding: 0.5rem 0;
    }

    .marktpsychologie-sentiment-toc-list a {
      font-size: 0.875rem;
      color: var(--color-primary);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .marktpsychologie-sentiment-toc-list a:hover {
      color: var(--color-primary-hover);
      text-decoration: underline;
    }

    .marktpsychologie-sentiment-disclaimer {
      background: #f0fdf4;
      border: 1px solid #bbf7d0;
      border-left: 4px solid #22c55e;
      padding: 1.5rem;
      border-radius: var(--radius-lg);
      margin: 3rem 0;
      font-size: 0.875rem;
      color: #166534;
      line-height: 1.7;
    }

    @media (min-width: 768px) {
      .marktpsychologie-sentiment-disclaimer {
        padding: 2rem;
        font-size: 0.9375rem;
        line-height: 1.8;
        margin: 4rem 0;
      }
    }

    .marktpsychologie-sentiment-disclaimer-title {
      font-weight: 700;
      color: #166534;
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .marktpsychologie-sentiment-disclaimer-title::before {
      content: 'ℹ';
      font-size: 1.25rem;
      font-weight: bold;
    }

    .marktpsychologie-sentiment-related {
      margin-top: 4rem;
      padding-top: 3rem;
      border-top: 2px solid #e2e8f0;
    }

    @media (min-width: 768px) {
      .marktpsychologie-sentiment-related {
        margin-top: 5rem;
        padding-top: 4rem;
      }
    }

    .marktpsychologie-sentiment-related-title {
      font-size: 1.75rem;
      color: var(--color-text-primary);
      margin-bottom: 2rem;
      font-weight: 700;
    }

    @media (min-width: 768px) {
      .marktpsychologie-sentiment-related-title {
        font-size: 2.25rem;
        margin-bottom: 2.5rem;
      }
    }

    .marktpsychologie-sentiment-related-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .marktpsychologie-sentiment-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .marktpsychologie-sentiment-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
      }
    }

    .marktpsychologie-sentiment-related-card {
      background: var(--color-bg-card);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      text-decoration: none;
      color: inherit;
    }

    .marktpsychologie-sentiment-related-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }

    .marktpsychologie-sentiment-related-card-content {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      flex: 1;
    }

    @media (min-width: 768px) {
      .marktpsychologie-sentiment-related-card-content {
        padding: 2rem;
        gap: 1.25rem;
      }
    }

    .marktpsychologie-sentiment-related-card-title {
      font-size: 1.125rem;
      font-weight: 700;
      color: var(--color-text-primary);
      line-height: 1.3;
    }

    @media (min-width: 768px) {
      .marktpsychologie-sentiment-related-card-title {
        font-size: 1.375rem;
      }
    }

    .marktpsychologie-sentiment-related-card-desc {
      font-size: 0.875rem;
      color: var(--color-text-secondary);
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .marktpsychologie-sentiment-related-card-desc {
        font-size: 0.9375rem;
        line-height: 1.7;
      }
    }

    .marktpsychologie-sentiment-related-card-link {
      color: var(--color-primary);
      font-weight: 600;
      font-size: 0.875rem;
      margin-top: auto;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      transition: all 0.3s ease;
    }

    .marktpsychologie-sentiment-related-card-link:hover {
      color: var(--color-primary-hover);
      gap: 0.75rem;
    }

:root {
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f8fafc;
  --color-bg-tertiary: #f1f5f9;
  --color-bg-card: #ffffff;
  
  --color-text-primary: #1e293b;
  --color-text-secondary: #64748b;
  --color-text-muted: #94a3b8;
  
  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-secondary: #0891b2;
  
  --color-accent: #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;
  --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.1);
}

.post-erste-schritte-boerse {
  background: var(--color-bg-primary);
  font-family: var(--font-primary);
  color: var(--color-text-primary);
}

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

.post-erste-schritte-boerse section {
  overflow: hidden;
}

.post-erste-schritte-boerse h1,
.post-erste-schritte-boerse h2,
.post-erste-schritte-boerse h3,
.post-erste-schritte-boerse h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
}

.post-erste-schritte-boerse h1 {
  font-size: 2rem;
  margin-bottom: var(--space-lg);
  color: var(--color-text-primary);
}

@media (min-width: 768px) {
  .post-erste-schritte-boerse h1 {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .post-erste-schritte-boerse h1 {
    font-size: 3.5rem;
  }
}

.post-erste-schritte-boerse h2 {
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
  color: var(--color-text-primary);
}

@media (min-width: 768px) {
  .post-erste-schritte-boerse h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-erste-schritte-boerse h2 {
    font-size: 2.75rem;
  }
}

.post-erste-schritte-boerse h3 {
  font-size: 1.375rem;
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
}

@media (min-width: 768px) {
  .post-erste-schritte-boerse h3 {
    font-size: 1.625rem;
  }
}

@media (min-width: 1024px) {
  .post-erste-schritte-boerse h3 {
    font-size: 1.875rem;
  }
}

.post-erste-schritte-boerse h4 {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
  font-weight: 600;
}

.post-erste-schritte-boerse p {
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.post-erste-schritte-boerse p:last-child {
  margin-bottom: 0;
}

.post-erste-schritte-boerse a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-erste-schritte-boerse a:hover {
  color: var(--color-primary-hover);
}

.post-erste-schritte-boerse blockquote {
  margin: 0;
  padding: 0;
}

.erste-schritte-boerse-breadcrumbs-section {
  background: var(--color-bg-primary);
  padding: 1.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.erste-schritte-boerse-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  flex-wrap: wrap;
}

.erste-schritte-boerse-breadcrumb-link {
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.erste-schritte-boerse-breadcrumb-link:hover {
  color: var(--color-primary-hover);
}

.erste-schritte-boerse-breadcrumb-separator {
  color: var(--color-text-muted);
}

.erste-schritte-boerse-breadcrumb-current {
  color: var(--color-text-secondary);
}

.erste-schritte-boerse-hero {
  position: relative;
  background: var(--color-bg-primary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .erste-schritte-boerse-hero {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .erste-schritte-boerse-hero {
    padding: 6rem 0;
  }
}

.erste-schritte-boerse-hero-deco-glow-1 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  top: -100px;
  left: -150px;
  z-index: 1;
  pointer-events: none;
}

.erste-schritte-boerse-hero-deco-gradient {
  position: absolute;
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(8, 145, 178, 0.06) 0%, transparent 60%);
  filter: blur(90px);
  top: 50px;
  right: -200px;
  z-index: 1;
  pointer-events: none;
}

.erste-schritte-boerse-hero-deco-accent-1 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(37, 99, 235, 0.04);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  top: 100px;
  right: 50px;
  z-index: 2;
  pointer-events: none;
}

.erste-schritte-boerse-hero-deco-accent-2 {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  bottom: 100px;
  left: 100px;
  z-index: 2;
  pointer-events: none;
}

.erste-schritte-boerse-hero-deco-shape {
  position: absolute;
  width: 200px;
  height: 150px;
  background: rgba(8, 145, 178, 0.03);
  border-radius: 50% 50% 40% 60% / 60% 40% 50% 50%;
  top: 50%;
  left: 10%;
  z-index: 1;
  pointer-events: none;
}

.erste-schritte-boerse-hero-deco-line {
  position: absolute;
  width: 300px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.15), transparent);
  bottom: 80px;
  right: 10%;
  z-index: 2;
  pointer-events: none;
}

.erste-schritte-boerse-hero-deco-float {
  position: absolute;
  width: 150px;
  height: 120px;
  background: rgba(37, 99, 235, 0.02);
  border: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: 8px;
  top: 20%;
  right: 5%;
  z-index: 1;
  pointer-events: none;
}

.erste-schritte-boerse-hero-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .erste-schritte-boerse-hero-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 3rem;
  }
}

.erste-schritte-boerse-hero-text {
  flex: 1;
}

.erste-schritte-boerse-hero-lead {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .erste-schritte-boerse-hero-lead {
    font-size: 1.25rem;
  }
}

.erste-schritte-boerse-hero-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.erste-schritte-boerse-meta-separator {
  color: #cbd5e1;
}

.erste-schritte-boerse-hero-image {
  flex: 1;
  width: 100%;
}

@media (min-width: 1024px) {
  .erste-schritte-boerse-hero-image {
    width: auto;
  }
}

.erste-schritte-boerse-hero-img,
.erste-schritte-boerse-intro-img,
.erste-schritte-boerse-foundations-img,
.erste-schritte-boerse-tips-img,
.erste-schritte-boerse-common-img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.erste-schritte-boerse-intro-section {
  position: relative;
  background: var(--color-bg-secondary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .erste-schritte-boerse-intro-section {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .erste-schritte-boerse-intro-section {
    padding: 5rem 0;
  }
}

.erste-schritte-boerse-intro-deco-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.07) 0%, transparent 70%);
  filter: blur(80px);
  top: -50px;
  right: -100px;
  z-index: 1;
  pointer-events: none;
}

.erste-schritte-boerse-intro-deco-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(245, 158, 11, 0.04);
  border-radius: 35% 65% 65% 35% / 35% 35% 65% 65%;
  bottom: 100px;
  left: 5%;
  z-index: 1;
  pointer-events: none;
}

.erste-schritte-boerse-intro-deco-3 {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(37, 99, 235, 0.03);
  border-radius: 50% 50% 40% 60% / 60% 40% 50% 50%;
  top: 50%;
  right: 15%;
  z-index: 1;
  pointer-events: none;
}

.erste-schritte-boerse-intro-deco-4 {
  position: absolute;
  width: 150px;
  height: 100px;
  background: rgba(8, 145, 178, 0.02);
  border: 1px solid rgba(8, 145, 178, 0.08);
  border-radius: 6px;
  top: 20%;
  left: 3%;
  z-index: 1;
  pointer-events: none;
}

.erste-schritte-boerse-intro-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .erste-schritte-boerse-intro-content {
    flex-direction: row;
    gap: 3rem;
  }
}

.erste-schritte-boerse-intro-text {
  flex: 1;
}

.erste-schritte-boerse-intro-image {
  flex: 1;
  width: 100%;
}

@media (min-width: 1024px) {
  .erste-schritte-boerse-intro-image {
    width: auto;
  }
}

.erste-schritte-boerse-steps-section {
  position: relative;
  background: var(--color-bg-primary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .erste-schritte-boerse-steps-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .erste-schritte-boerse-steps-section {
    padding: 6rem 0;
  }
}

.erste-schritte-boerse-steps-deco-bg {
  position: absolute;
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.06) 0%, transparent 60%);
  filter: blur(100px);
  top: 0;
  left: -200px;
  z-index: 1;
  pointer-events: none;
}

.erste-schritte-boerse-steps-deco-accent-1 {
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(8, 145, 178, 0.05);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  top: 50%;
  right: -100px;
  z-index: 1;
  pointer-events: none;
}

.erste-schritte-boerse-steps-deco-accent-2 {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(245, 158, 11, 0.04);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  bottom: 200px;
  left: 5%;
  z-index: 1;
  pointer-events: none;
}

.erste-schritte-boerse-steps-deco-shape-1 {
  position: absolute;
  width: 180px;
  height: 140px;
  background: rgba(37, 99, 235, 0.03);
  border-radius: 50% 50% 40% 60% / 60% 40% 50% 50%;
  top: 30%;
  left: 8%;
  z-index: 2;
  pointer-events: none;
}

.erste-schritte-boerse-steps-deco-shape-2 {
  position: absolute;
  width: 160px;
  height: 160px;
  background: rgba(8, 145, 178, 0.03);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  bottom: 50px;
  right: 10%;
  z-index: 1;
  pointer-events: none;
}

.erste-schritte-boerse-steps-deco-shape-3 {
  position: absolute;
  width: 140px;
  height: 100px;
  background: rgba(245, 158, 11, 0.03);
  border-radius: 70% 30% 40% 60% / 30% 70% 60% 40%;
  top: 60%;
  right: 5%;
  z-index: 1;
  pointer-events: none;
}

.erste-schritte-boerse-steps-content {
  position: relative;
  z-index: 10;
}

.erste-schritte-boerse-steps-content h2 {
  margin-bottom: 2rem;
}

@media (min-width: 1024px) {
  .erste-schritte-boerse-steps-content h2 {
    margin-bottom: 3rem;
  }
}

.erste-schritte-boerse-step-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .erste-schritte-boerse-step-card {
    gap: 2rem;
    padding: 2rem;
    margin-bottom: 2rem;
  }
}

.erste-schritte-boerse-step-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
  transform: translateY(-2px);
}

.erste-schritte-boerse-step-number {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  color: #ffffff;
  font-size: 1.75rem;
  font-weight: 700;
  border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
  .erste-schritte-boerse-step-number {
    width: 70px;
    height: 70px;
    font-size: 2rem;
  }
}

.erste-schritte-boerse-step-body h3 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.erste-schritte-boerse-step-body p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
}

.erste-schritte-boerse-step-body p:last-child {
  margin-bottom: 0;
}

.erste-schritte-boerse-foundations-section {
  position: relative;
  background: var(--color-bg-secondary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .erste-schritte-boerse-foundations-section {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .erste-schritte-boerse-foundations-section {
    padding: 5rem 0;
  }
}

.erste-schritte-boerse-foundations-deco-1 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.07) 0%, transparent 70%);
  filter: blur(80px);
  top: -150px;
  right: -200px;
  z-index: 1;
  pointer-events: none;
}

.erste-schritte-boerse-foundations-deco-2 {
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(245, 158, 11, 0.04);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  bottom: -50px;
  left: -100px;
  z-index: 1;
  pointer-events: none;
}

.erste-schritte-boerse-foundations-deco-3 {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(37, 99, 235, 0.03);
  border-radius: 50% 50% 40% 60% / 60% 40% 50% 50%;
  top: 40%;
  left: 10%;
  z-index: 1;
  pointer-events: none;
}

.erste-schritte-boerse-foundations-deco-4 {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(8, 145, 178, 0.02);
  border: 1px solid rgba(8, 145, 178, 0.08);
  border-radius: 8px;
  bottom: 30%;
  right: 5%;
  z-index: 1;
  pointer-events: none;
}

.erste-schritte-boerse-foundations-deco-5 {
  position: absolute;
  width: 180px;
  height: 140px;
  background: rgba(245, 158, 11, 0.03);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  top: 20%;
  right: 8%;
  z-index: 2;
  pointer-events: none;
}

.erste-schritte-boerse-foundations-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .erste-schritte-boerse-foundations-content {
    flex-direction: row;
    gap: 3rem;
  }
}

.erste-schritte-boerse-foundations-text {
  flex: 1;
}

.erste-schritte-boerse-concept {
  margin-bottom: 1.5rem;
  padding: 1.5rem;
  background: var(--color-bg-primary);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-primary);
}

.erste-schritte-boerse-concept h4 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.erste-schritte-boerse-concept p {
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

.erste-schritte-boerse-foundations-image {
  flex: 1;
  width: 100%;
}

@media (min-width: 1024px) {
  .erste-schritte-boerse-foundations-image {
    width: auto;
  }
}

.erste-schritte-boerse-quote-section {
  position: relative;
  background: var(--color-primary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .erste-schritte-boerse-quote-section {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .erste-schritte-boerse-quote-section {
    padding: 5rem 0;
  }
}

.erste-schritte-boerse-quote-deco-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  top: -50px;
  right: -100px;
  z-index: 1;
  pointer-events: none;
}

.erste-schritte-boerse-quote-deco-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  bottom: 50px;
  left: 10%;
  z-index: 1;
  pointer-events: none;
}

.erste-schritte-boerse-quote-deco-3 {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  top: 50%;
  right: 5%;
  z-index: 1;
  pointer-events: none;
}

.erste-schritte-boerse-quote-wrapper {
  position: relative;
  z-index: 10;
}

.erste-schritte-boerse-quote {
  text-align: center;
}

.erste-schritte-boerse-quote p {
  font-size: 1.5rem;
  color: #ffffff;
  font-weight: 500;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .erste-schritte-boerse-quote p {
    font-size: 1.875rem;
  }
}

@media (min-width: 1024px) {
  .erste-schritte-boerse-quote p {
    font-size: 2.25rem;
  }
}

.erste-schritte-boerse-tips-section {
  position: relative;
  background: var(--color-bg-primary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .erste-schritte-boerse-tips-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .erste-schritte-boerse-tips-section {
    padding: 6rem 0;
  }
}

.erste-schritte-boerse-tips-deco-bg {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.06) 0%, transparent 60%);
  filter: blur(100px);
  bottom: -100px;
  left: -200px;
  z-index: 1;
  pointer-events: none;
}

.erste-schritte-boerse-tips-deco-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  top: -100px;
  right: -100px;
  z-index: 1;
  pointer-events: none;
}

.erste-schritte-boerse-tips-deco-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(8, 145, 178, 0.04);
  border-radius: 50% 50% 40% 60% / 60% 40% 50% 50%;
  top: 50%;
  left: 5%;
  z-index: 1;
  pointer-events: none;
}

.erste-schritte-boerse-tips-deco-3 {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(37, 99, 235, 0.03);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  bottom: 100px;
  right: 8%;
  z-index: 1;
  pointer-events: none;
}

.erste-schritte-boerse-tips-deco-4 {
  position: absolute;
  width: 180px;
  height: 140px;
  background: rgba(245, 158, 11, 0.03);
  border-radius: 35% 65% 65% 35% / 35% 35% 65% 65%;
  top: 30%;
  right: 5%;
  z-index: 2;
  pointer-events: none;
}

.erste-schritte-boerse-tips-content {
  position: relative;
  z-index: 10;
}

.erste-schritte-boerse-tips-content h2 {
  margin-bottom: 1rem;
}

.erste-schritte-boerse-tips-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .erste-schritte-boerse-tips-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .erste-schritte-boerse-tips-grid {
    gap: 2.5rem;
  }
}

.erste-schritte-boerse-tip-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .erste-schritte-boerse-tip-card {
    padding: 2rem;
    gap: 1.25rem;
  }
}

.erste-schritte-boerse-tip-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
  transform: translateY(-4px);
}

.erste-schritte-boerse-tip-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--color-primary), var(--color-secondary));
  border-radius: var(--radius-lg);
}

.erste-schritte-boerse-tip-icon .fas {
  color: #ffffff;
  font-size: 1.5rem;
}

.erste-schritte-boerse-tip-card h3 {
  color: var(--color-text-primary);
  margin-bottom: 0;
}

.erste-schritte-boerse-tip-card p {
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

.erste-schritte-boerse-tips-image {
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .erste-schritte-boerse-tips-image {
    margin-top: 3rem;
  }
}

.erste-schritte-boerse-common-section {
  position: relative;
  background: var(--color-bg-secondary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .erste-schritte-boerse-common-section {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .erste-schritte-boerse-common-section {
    padding: 5rem 0;
  }
}

.erste-schritte-boerse-common-deco-1 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
  filter: blur(80px);
  top: -100px;
  left: -150px;
  z-index: 1;
  pointer-events: none;
}

.erste-schritte-boerse-common-deco-2 {
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(245, 158, 11, 0.04);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  bottom: 100px;
  right: 5%;
  z-index: 1;
  pointer-events: none;
}

.erste-schritte-boerse-common-deco-3 {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(8, 145, 178, 0.03);
  border-radius: 50% 50% 40% 60% / 60% 40% 50% 50%;
  top: 50%;
  right: 15%;
  z-index: 1;
  pointer-events: none;
}

.erste-schritte-boerse-common-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column !important;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .erste-schritte-boerse-common-content {
    flex-direction: row;
    gap: 3rem;
  }
}

.erste-schritte-boerse-mistakes-list {
  flex: 1;
}

.erste-schritte-boerse-mistake-item {
  padding: 1.5rem;
  background: var(--color-bg-primary);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--color-accent);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .erste-schritte-boerse-mistake-item {
    padding: 1.75rem;
    margin-bottom: 1.25rem;
  }
}

.erste-schritte-boerse-mistake-item h4 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.erste-schritte-boerse-mistake-item p {
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

.erste-schritte-boerse-common-image {
  flex: 1;
  width: 100%;
}

@media (min-width: 1024px) {
  .erste-schritte-boerse-common-image {
    width: auto;
  }
}

.erste-schritte-boerse-disclaimer-section {
  position: relative;
  background: var(--color-bg-primary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .erste-schritte-boerse-disclaimer-section {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .erste-schritte-boerse-disclaimer-section {
    padding: 5rem 0;
  }
}

.erste-schritte-boerse-disclaimer-deco-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.06) 0%, transparent 70%);
  filter: blur(80px);
  top: 50px;
  right: -100px;
  z-index: 1;
  pointer-events: none;
}

.erste-schritte-boerse-disclaimer-deco-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(245, 158, 11, 0.03);
  border-radius: 50% 50% 40% 60% / 60% 40% 50% 50%;
  bottom: 50px;
  left: 5%;
  z-index: 1;
  pointer-events: none;
}

.erste-schritte-boerse-disclaimer-box {
  position: relative;
  z-index: 10;
  display: flex;
  gap: 1.5rem;
  padding: 2rem;
  background: #f0f9ff;
  border-radius: var(--radius-lg);
  border: 1px solid #e0f2fe;
}

@media (min-width: 768px) {
  .erste-schritte-boerse-disclaimer-box {
    gap: 2rem;
    padding: 2.5rem;
  }
}

.erste-schritte-boerse-disclaimer-icon {
  flex-shrink: 0;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 0.25rem;
}

.erste-schritte-boerse-disclaimer-icon .fas {
  color: var(--color-primary);
  font-size: 1.5rem;
}

.erste-schritte-boerse-disclaimer-text h3 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-sm);
}

.erste-schritte-boerse-disclaimer-text p {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  margin-bottom: var(--space-sm);
}

.erste-schritte-boerse-disclaimer-text p:last-child {
  margin-bottom: 0;
}

.erste-schritte-boerse-related-section {
  position: relative;
  background: var(--color-bg-secondary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .erste-schritte-boerse-related-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .erste-schritte-boerse-related-section {
    padding: 6rem 0;
  }
}

.erste-schritte-boerse-related-deco-1 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.06) 0%, transparent 60%);
  filter: blur(100px);
  top: -100px;
  right: -200px;
  z-index: 1;
  pointer-events: none;
}

.erste-schritte-boerse-related-deco-2 {
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  bottom: -50px;
  left: -100px;
  z-index: 1;
  pointer-events: none;
}

.erste-schritte-boerse-related-deco-3 {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(8, 145, 178, 0.03);
  border-radius: 50% 50% 40% 60% / 60% 40% 50% 50%;
  top: 40%;
  left: 10%;
  z-index: 1;
  pointer-events: none;
}

.erste-schritte-boerse-related-content {
  position: relative;
  z-index: 10;
}

.erste-schritte-boerse-related-content h2 {
  margin-bottom: var(--space-sm);
}

.erste-schritte-boerse-related-intro {
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
  font-size: 1.0625rem;
}

@media (min-width: 768px) {
  .erste-schritte-boerse-related-intro {
    margin-bottom: 2.5rem;
  }
}

.erste-schritte-boerse-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .erste-schritte-boerse-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .erste-schritte-boerse-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.erste-schritte-boerse-related-card {
  display: flex;
  flex-direction: column;
  padding: 1.5rem;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .erste-schritte-boerse-related-card {
    padding: 2rem;
  }
}

.erste-schritte-boerse-related-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: var(--color-primary);
  transform: translateY(-4px);
}

.erste-schritte-boerse-related-card-body {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.erste-schritte-boerse-related-card h3 {
  color: var(--color-text-primary);
  margin-bottom: 0;
}

.erste-schritte-boerse-related-card p {
  color: var(--color-text-secondary);
  margin-bottom: 0;
  font-size: 0.9375rem;
}

.erste-schritte-boerse-related-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  transition: all 0.3s ease;
  align-self: flex-start;
}

.erste-schritte-boerse-related-link:hover {
  color: var(--color-primary-hover);
  transform: translateX(4px);
}

.erste-schritte-boerse-related-link .fas {
  font-size: 0.75rem;
}

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

.post-performance-tracking-journal {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.post-performance-tracking-journal-breadcrumbs {
  background: var(--color-bg-secondary);
  padding: 1rem 0;
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-breadcrumbs {
    padding: 1.25rem 0;
  }
}

.post-performance-tracking-journal-breadcrumb-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-breadcrumb-content {
    font-size: 1rem;
  }
}

.post-performance-tracking-journal-breadcrumb-link {
  color: var(--color-primary);
  font-weight: 500;
  transition: color 0.3s ease;
}

.post-performance-tracking-journal-breadcrumb-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.post-performance-tracking-journal-breadcrumb-separator {
  color: var(--color-text-muted);
}

.post-performance-tracking-journal-breadcrumb-current {
  color: var(--color-text-secondary);
  font-weight: 500;
}

.post-performance-tracking-journal-hero {
  background: var(--color-bg-primary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-hero {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-performance-tracking-journal-hero {
    padding: 6rem 0;
  }
}

.post-performance-tracking-journal-hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .post-performance-tracking-journal-hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.post-performance-tracking-journal-hero-title {
  color: var(--color-text-primary);
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-hero-title {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .post-performance-tracking-journal-hero-title {
    font-size: 3.5rem;
  }
}

.post-performance-tracking-journal-hero-subtitle {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
}

.post-performance-tracking-journal-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-meta {
    font-size: 1rem;
    gap: 2rem;
  }
}

.post-performance-tracking-journal-meta i {
  margin-right: 0.5rem;
  color: var(--color-primary);
}

.post-performance-tracking-journal-featured-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.post-performance-tracking-journal-introduction {
  background: var(--color-bg-secondary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-introduction {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-performance-tracking-journal-introduction {
    padding: 5rem 0;
  }
}

.post-performance-tracking-journal-lead {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
  max-width: 800px;
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-lead {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
  }
}

.post-performance-tracking-journal-highlight-box {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  align-items: flex-start;
  background: var(--color-bg-primary);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-highlight-box {
    gap: 2rem;
    padding: 2rem;
  }
}

.post-performance-tracking-journal-highlight-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dbeafe;
  border-radius: var(--radius-md);
  font-size: 1.25rem;
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-highlight-icon {
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
  }
}

.post-performance-tracking-journal-highlight-text h3 {
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.post-performance-tracking-journal-highlight-text p {
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

.post-performance-tracking-journal-tracking-systems {
  background: var(--color-bg-primary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-tracking-systems {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-performance-tracking-journal-tracking-systems {
    padding: 6rem 0;
  }
}

.post-performance-tracking-journal-section-title {
  color: var(--color-text-primary);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-section-title {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .post-performance-tracking-journal-section-title {
    font-size: 2.75rem;
    margin-bottom: 2rem;
  }
}

.post-performance-tracking-journal-section-intro {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-section-intro {
    font-size: 1.0625rem;
    margin-bottom: 2.5rem;
  }
}

.post-performance-tracking-journal-two-column {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .post-performance-tracking-journal-two-column {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.post-performance-tracking-journal-column-left h3 {
  color: var(--color-text-primary);
  font-size: 1.375rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-column-left h3 {
    font-size: 1.625rem;
  }
}

.post-performance-tracking-journal-metrics-list {
  list-style: none;
  padding: 0;
}

.post-performance-tracking-journal-metrics-list li {
  padding: 1rem;
  margin-bottom: 0.75rem;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-metrics-list li {
    padding: 1.25rem;
    margin-bottom: 1rem;
  }
}

.post-performance-tracking-journal-metrics-list strong {
  color: var(--color-text-primary);
}

.post-performance-tracking-journal-content-image {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.post-performance-tracking-journal-journal-structure {
  background: var(--color-bg-secondary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-journal-structure {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-performance-tracking-journal-journal-structure {
    padding: 6rem 0;
  }
}

.post-performance-tracking-journal-journal-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-journal-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .post-performance-tracking-journal-journal-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 3.5rem;
  }
}

.post-performance-tracking-journal-journal-card {
  background: var(--color-bg-primary);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-journal-card {
    padding: 2rem;
    gap: 1.25rem;
  }
}

.post-performance-tracking-journal-journal-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.post-performance-tracking-journal-card-number {
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  font-family: var(--font-heading);
}

.post-performance-tracking-journal-journal-card h4 {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-journal-card h4 {
    font-size: 1.25rem;
  }
}

.post-performance-tracking-journal-journal-card p {
  color: var(--color-text-secondary);
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.post-performance-tracking-journal-image-section {
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-image-section {
    margin-top: 2rem;
  }
}

.post-performance-tracking-journal-wide-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.post-performance-tracking-journal-analysis-methods {
  background: var(--color-bg-primary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-analysis-methods {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-performance-tracking-journal-analysis-methods {
    padding: 6rem 0;
  }
}

.post-performance-tracking-journal-analysis-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .post-performance-tracking-journal-analysis-wrapper {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.post-performance-tracking-journal-analysis-img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.post-performance-tracking-journal-analysis-text h4 {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-analysis-text h4 {
    font-size: 1.25rem;
    margin-top: 2rem;
  }
}

.post-performance-tracking-journal-analysis-text p {
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.post-performance-tracking-journal-tools-technology {
  background: var(--color-bg-secondary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-tools-technology {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-performance-tracking-journal-tools-technology {
    padding: 6rem 0;
  }
}

.post-performance-tracking-journal-tools-intro {
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-tools-intro {
    margin-bottom: 2.5rem;
  }
}

.post-performance-tracking-journal-tools-comparison {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-tools-comparison {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
  }
}

.post-performance-tracking-journal-tool-option {
  background: var(--color-bg-primary);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-tool-option {
    padding: 2rem;
  }
}

.post-performance-tracking-journal-tool-option:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.post-performance-tracking-journal-tool-option h4 {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-tool-option h4 {
    font-size: 1.25rem;
  }
}

.post-performance-tracking-journal-tool-option h4 i {
  color: var(--color-primary);
  font-size: 1.5rem;
}

.post-performance-tracking-journal-tool-option p {
  color: var(--color-text-secondary);
  margin-bottom: 0;
  line-height: 1.6;
}

.post-performance-tracking-journal-tool-option strong {
  color: var(--color-text-primary);
}

.post-performance-tracking-journal-tools-image {
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-tools-image {
    margin-top: 2rem;
  }
}

.post-performance-tracking-journal-tool-img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.post-performance-tracking-journal-best-practices {
  background: var(--color-bg-primary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-best-practices {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-performance-tracking-journal-best-practices {
    padding: 6rem 0;
  }
}

.post-performance-tracking-journal-practices-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-practices-list {
    gap: 2rem;
  }
}

.post-performance-tracking-journal-practice-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-practice-item {
    gap: 2rem;
    padding: 2rem;
  }
}

.post-performance-tracking-journal-practice-number {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dcfce7;
  color: #166534;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-practice-number {
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
  }
}

.post-performance-tracking-journal-practice-text h4 {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-practice-text h4 {
    font-size: 1.25rem;
  }
}

.post-performance-tracking-journal-practice-text p {
  color: var(--color-text-secondary);
  margin-bottom: 0;
  line-height: 1.6;
}

.post-performance-tracking-journal-conclusion {
  background: var(--color-bg-secondary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-conclusion {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-performance-tracking-journal-conclusion {
    padding: 6rem 0;
  }
}

.post-performance-tracking-journal-conclusion-content p {
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-conclusion-content p {
    margin-bottom: 2rem;
    font-size: 1.0625rem;
  }
}

.post-performance-tracking-journal-quote-box {
  margin: 2rem 0;
  padding: 2rem;
  background: var(--color-bg-primary);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-quote-box {
    margin: 2.5rem 0;
    padding: 2.5rem;
  }
}

.post-performance-tracking-journal-quote {
  font-size: 1.125rem;
  color: var(--color-text-primary);
  font-style: italic;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-quote {
    font-size: 1.25rem;
  }
}

.post-performance-tracking-journal-quote p {
  margin-bottom: 0;
}

.post-performance-tracking-journal-disclaimer {
  background: #fef3c7;
  padding: 2rem 0;
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-disclaimer {
    padding: 3rem 0;
  }
}

@media (min-width: 1024px) {
  .post-performance-tracking-journal-disclaimer {
    padding: 4rem 0;
  }
}

.post-performance-tracking-journal-disclaimer-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-disclaimer-content {
    gap: 2rem;
  }
}

.post-performance-tracking-journal-disclaimer-icon {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fcd34d;
  color: #92400e;
  border-radius: 50%;
  font-size: 1.25rem;
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-disclaimer-icon {
    width: 3rem;
    height: 3rem;
    font-size: 1.5rem;
  }
}

.post-performance-tracking-journal-disclaimer-text h3 {
  color: #92400e;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-disclaimer-text h3 {
    font-size: 1.25rem;
  }
}

.post-performance-tracking-journal-disclaimer-text p {
  color: #78350f;
  margin-bottom: 0;
  line-height: 1.6;
}

.post-performance-tracking-journal-related {
  background: var(--color-bg-primary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-related {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-performance-tracking-journal-related {
    padding: 6rem 0;
  }
}

.post-performance-tracking-journal-related-title {
  color: var(--color-text-primary);
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-related-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-performance-tracking-journal-related-title {
    font-size: 2.75rem;
  }
}

.post-performance-tracking-journal-related-subtitle {
  color: var(--color-text-secondary);
  font-size: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-related-subtitle {
    margin-bottom: 2.5rem;
  }
}

.post-performance-tracking-journal-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-performance-tracking-journal-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.post-performance-tracking-journal-related-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-related-card {
    gap: 1.25rem;
    padding: 2rem;
  }
}

.post-performance-tracking-journal-related-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--color-primary);
}

.post-performance-tracking-journal-related-card-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.post-performance-tracking-journal-related-card h3 {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-performance-tracking-journal-related-card h3 {
    font-size: 1.25rem;
  }
}

.post-performance-tracking-journal-related-card p {
  color: var(--color-text-secondary);
  margin-bottom: 0;
  line-height: 1.6;
}

.post-performance-tracking-journal-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;
}

.post-performance-tracking-journal-related-card:hover .post-performance-tracking-journal-related-link {
  gap: 0.75rem;
  color: var(--color-primary-hover);
}

@media (prefers-reduced-motion: reduce) {
  .post-performance-tracking-journal-journal-card,
  .post-performance-tracking-journal-tool-option,
  .post-performance-tracking-journal-related-card {
    transition: none;
  }
}

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

.post-automatisierte-handelsysteme {
  width: 100%;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-breadcrumbs {
  background: var(--color-bg-primary);
  padding: 1.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-breadcrumbs-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-breadcrumbs-content a {
  color: var(--color-primary);
  font-size: 0.875rem;
  font-weight: 500;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-breadcrumbs-content a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-breadcrumb-separator {
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-breadcrumb-current {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  font-weight: 500;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-hero {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-primary);
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .post-automatisierte-handelsysteme .automatisierte-handelsysteme-hero {
    padding: 6rem 0;
  }
}

@media (min-width: 1024px) {
  .post-automatisierte-handelsysteme .automatisierte-handelsysteme-hero {
    padding: 8rem 0;
  }
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-hero-deco-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  top: -100px;
  left: -150px;
  z-index: 1;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-hero-gradient-field {
  position: absolute;
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse, rgba(6, 182, 212, 0.06) 0%, transparent 65%);
  filter: blur(90px);
  top: 50%;
  right: -200px;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-hero-float-shape-1 {
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  top: 20%;
  right: 10%;
  z-index: 2;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-hero-float-shape-2 {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.04);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  bottom: 10%;
  left: 5%;
  z-index: 2;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-hero-accent-orb {
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(14, 165, 233, 0.07);
  border-radius: 50%;
  filter: blur(60px);
  bottom: -100px;
  right: 20%;
  z-index: 1;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-hero-line-accent {
  position: absolute;
  width: 300px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.15), transparent);
  top: 30%;
  left: 0;
  z-index: 2;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-hero-corner-detail {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  bottom: 5%;
  right: 3%;
  z-index: 2;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-hero-pulse-element {
  position: absolute;
  width: 100px;
  height: 100px;
  background: rgba(37, 99, 235, 0.06);
  border-radius: 50%;
  top: 15%;
  left: 8%;
  z-index: 1;
  pointer-events: none;
}

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

@media (min-width: 1024px) {
  .post-automatisierte-handelsysteme .automatisierte-handelsysteme-hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-hero h1 {
  color: var(--color-text-primary);
  font-size: 2.25rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .post-automatisierte-handelsysteme .automatisierte-handelsysteme-hero h1 {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .post-automatisierte-handelsysteme .automatisierte-handelsysteme-hero h1 {
    font-size: 3.25rem;
  }
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-hero-lead {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .post-automatisierte-handelsysteme .automatisierte-handelsysteme-hero-lead {
    font-size: 1.125rem;
  }
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-hero-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-meta-item {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  font-weight: 500;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-meta-separator {
  color: var(--color-text-muted);
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-hero-image-wrapper {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-introduction {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-secondary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .post-automatisierte-handelsysteme .automatisierte-handelsysteme-introduction {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-automatisierte-handelsysteme .automatisierte-handelsysteme-introduction {
    padding: 6rem 0;
  }
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-intro-deco-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.07) 0%, transparent 70%);
  filter: blur(80px);
  top: -100px;
  right: 10%;
  z-index: 1;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-intro-deco-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(14, 165, 233, 0.05);
  border-radius: 35% 65% 65% 35% / 65% 35% 65% 35%;
  bottom: 5%;
  left: 0;
  z-index: 2;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-intro-deco-3 {
  position: absolute;
  width: 2px;
  height: 150px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.15), transparent);
  top: 20%;
  left: 5%;
  z-index: 2;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-intro-deco-4 {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(139, 92, 246, 0.04);
  border-radius: 50%;
  filter: blur(50px);
  top: 50%;
  right: 5%;
  z-index: 1;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-intro-deco-5 {
  position: absolute;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.12), transparent);
  bottom: 30%;
  right: 10%;
  z-index: 2;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-intro-deco-6 {
  position: absolute;
  width: 100px;
  height: 100px;
  border: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: 20px;
  bottom: 15%;
  left: 10%;
  z-index: 2;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-intro-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .post-automatisierte-handelsysteme .automatisierte-handelsysteme-intro-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-intro-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-intro-text h2 {
  color: var(--color-text-primary);
  font-size: 1.75rem;
}

@media (min-width: 768px) {
  .post-automatisierte-handelsysteme .automatisierte-handelsysteme-intro-text h2 {
    font-size: 2.25rem;
  }
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-intro-text p {
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-highlight-box {
  background: #dbeafe;
  border-left: 4px solid var(--color-primary);
  padding: 1.25rem;
  border-radius: var(--radius-md);
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-highlight-box p {
  margin: 0;
  color: #1e40af;
  font-size: 0.95rem;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-intro-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-content-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-components {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-primary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .post-automatisierte-handelsysteme .automatisierte-handelsysteme-components {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-automatisierte-handelsysteme .automatisierte-handelsysteme-components {
    padding: 6rem 0;
  }
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-comp-deco-gradient {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.07) 0%, transparent 70%);
  filter: blur(90px);
  top: 50%;
  left: -200px;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-comp-deco-shape-1 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 40% 60% 65% 35% / 35% 65% 35% 65%;
  top: 10%;
  right: 5%;
  z-index: 2;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-comp-deco-shape-2 {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(59, 130, 246, 0.04);
  border-radius: 50% 50% 50% 50%;
  bottom: 15%;
  left: 10%;
  z-index: 2;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-comp-deco-glow-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(14, 165, 233, 0.06);
  border-radius: 50%;
  filter: blur(70px);
  bottom: -150px;
  right: 10%;
  z-index: 1;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-comp-deco-glow-2 {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(37, 99, 235, 0.05);
  border-radius: 50%;
  filter: blur(50px);
  top: 30%;
  left: 2%;
  z-index: 1;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-comp-deco-accent {
  position: absolute;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(6, 182, 212, 0.12), transparent);
  top: 40%;
  right: 20%;
  z-index: 2;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-comp-content {
  position: relative;
  z-index: 10;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-comp-content h2 {
  color: var(--color-text-primary);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .post-automatisierte-handelsysteme .automatisierte-handelsysteme-comp-content h2 {
    font-size: 2.25rem;
  }
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-comp-content > p {
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-components-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .post-automatisierte-handelsysteme .automatisierte-handelsysteme-components-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
  }
}

@media (min-width: 1024px) {
  .post-automatisierte-handelsysteme .automatisierte-handelsysteme-components-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-component-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .post-automatisierte-handelsysteme .automatisierte-handelsysteme-component-card {
    padding: 2rem;
    gap: 1.25rem;
  }
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-component-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.08);
  transform: translateY(-4px);
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-component-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: #dbeafe;
  border-radius: var(--radius-md);
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-component-icon .fas {
  font-size: 1.5rem;
  color: var(--color-primary);
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-component-card h3 {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  margin: 0;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-component-card p {
  color: var(--color-text-secondary);
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-image-section {
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .post-automatisierte-handelsysteme .automatisierte-handelsysteme-image-section {
    margin-top: 4rem;
  }
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-content-image-large {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: var(--radius-lg);
  aspect-ratio: 16 / 9;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-strategies {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-secondary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .post-automatisierte-handelsysteme .automatisierte-handelsysteme-strategies {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-automatisierte-handelsysteme .automatisierte-handelsysteme-strategies {
    padding: 6rem 0;
  }
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-strat-deco-mesh {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.08) 0%, transparent 65%);
  filter: blur(100px);
  top: -200px;
  right: -100px;
  z-index: 1;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-strat-deco-blob-1 {
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(14, 165, 233, 0.05);
  border-radius: 45% 55% 50% 50% / 50% 50% 55% 45%;
  bottom: 20%;
  left: 5%;
  z-index: 2;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-strat-deco-blob-2 {
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(139, 92, 246, 0.04);
  border-radius: 65% 35% 40% 60% / 40% 60% 35% 65%;
  top: 15%;
  right: 10%;
  z-index: 2;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-strat-deco-line {
  position: absolute;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.12), transparent);
  bottom: 35%;
  right: 15%;
  z-index: 2;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-strat-deco-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 50%;
  filter: blur(80px);
  bottom: -150px;
  left: 20%;
  z-index: 1;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-strat-deco-accent {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: 50%;
  top: 25%;
  left: 8%;
  z-index: 2;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-strat-content {
  position: relative;
  z-index: 10;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-strat-content h2 {
  color: var(--color-text-primary);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .post-automatisierte-handelsysteme .automatisierte-handelsysteme-strat-content h2 {
    font-size: 2.25rem;
  }
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-strat-content > p {
  color: var(--color-text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-strategy-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e2e8f0;
}

@media (min-width: 768px) {
  .post-automatisierte-handelsysteme .automatisierte-handelsysteme-strategy-item {
    gap: 2.5rem;
    margin-bottom: 3rem;
    padding-bottom: 2.5rem;
  }
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-strategy-item:last-child {
  border-bottom: none;
  margin-bottom: 3rem;
  padding-bottom: 0;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-strategy-number {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--color-primary);
  opacity: 0.3;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-strategy-text {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-strategy-text h3 {
  color: var(--color-text-primary);
  font-size: 1.25rem;
  margin: 0;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-strategy-text p {
  color: var(--color-text-secondary);
  margin: 0;
  line-height: 1.8;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-strategy-image-container {
  margin-top: 4rem;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-development {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-primary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .post-automatisierte-handelsysteme .automatisierte-handelsysteme-development {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-automatisierte-handelsysteme .automatisierte-handelsysteme-development {
    padding: 6rem 0;
  }
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-dev-deco-gradient-1 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.07) 0%, transparent 70%);
  filter: blur(80px);
  top: -150px;
  left: 10%;
  z-index: 1;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-dev-deco-shape-1 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 50% 50% 50% 50%;
  top: 20%;
  right: 5%;
  z-index: 2;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-dev-deco-shape-2 {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(37, 99, 235, 0.04);
  border-radius: 35% 65% 60% 40% / 40% 60% 35% 65%;
  bottom: 10%;
  left: 5%;
  z-index: 2;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-dev-deco-glow-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 50%;
  filter: blur(70px);
  bottom: -120px;
  right: 15%;
  z-index: 1;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-dev-deco-glow-2 {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(14, 165, 233, 0.05);
  border-radius: 50%;
  filter: blur(50px);
  top: 40%;
  right: 10%;
  z-index: 1;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-dev-deco-line-1 {
  position: absolute;
  width: 2px;
  height: 200px;
  background: linear-gradient(180deg, rgba(37, 99, 235, 0.15), transparent);
  top: 30%;
  left: 3%;
  z-index: 2;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-dev-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .post-automatisierte-handelsysteme .automatisierte-handelsysteme-dev-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-dev-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-dev-text h2 {
  color: var(--color-text-primary);
  font-size: 1.75rem;
}

@media (min-width: 768px) {
  .post-automatisierte-handelsysteme .automatisierte-handelsysteme-dev-text h2 {
    font-size: 2.25rem;
  }
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-dev-text p {
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-quote {
  padding: 1.5rem;
  background: #dbeafe;
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}

@media (min-width: 768px) {
  .post-automatisierte-handelsysteme .automatisierte-handelsysteme-quote {
    padding: 2rem;
    margin: 2rem 0;
  }
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-quote p {
  color: #1e40af;
  margin: 0;
  font-size: 1rem;
  line-height: 1.7;
  font-style: italic;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-dev-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-challenges {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-secondary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .post-automatisierte-handelsysteme .automatisierte-handelsysteme-challenges {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-automatisierte-handelsysteme .automatisierte-handelsysteme-challenges {
    padding: 6rem 0;
  }
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-chal-deco-mesh {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(14, 165, 233, 0.08) 0%, transparent 65%);
  filter: blur(100px);
  top: 50%;
  right: -150px;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-chal-deco-blob-1 {
  position: absolute;
  width: 320px;
  height: 320px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 40% 60% 55% 45% / 45% 55% 60% 40%;
  bottom: 15%;
  left: 3%;
  z-index: 2;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-chal-deco-blob-2 {
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(37, 99, 235, 0.04);
  border-radius: 50%;
  top: 10%;
  right: 8%;
  z-index: 2;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-chal-deco-accent-1 {
  position: absolute;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.12), transparent);
  top: 35%;
  left: 10%;
  z-index: 2;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-chal-deco-accent-2 {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(14, 165, 233, 0.08);
  border-radius: 50%;
  bottom: 25%;
  right: 5%;
  z-index: 2;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-chal-deco-line {
  position: absolute;
  width: 2px;
  height: 180px;
  background: linear-gradient(180deg, rgba(14, 165, 233, 0.12), transparent);
  bottom: 20%;
  left: 8%;
  z-index: 2;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-chal-content {
  position: relative;
  z-index: 10;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-chal-content h2 {
  color: var(--color-text-primary);
  font-size: 1.75rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .post-automatisierte-handelsysteme .automatisierte-handelsysteme-chal-content h2 {
    font-size: 2.25rem;
  }
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-challenges-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .post-automatisierte-handelsysteme .automatisierte-handelsysteme-challenges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-automatisierte-handelsysteme .automatisierte-handelsysteme-challenges-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
  }
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-challenge-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
}

@media (min-width: 768px) {
  .post-automatisierte-handelsysteme .automatisierte-handelsysteme-challenge-item {
    padding: 2rem;
  }
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-challenge-item h3 {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  margin: 0;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-challenge-item p {
  color: var(--color-text-secondary);
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-challenge-image {
  margin-top: 3rem;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-conclusion {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-primary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .post-automatisierte-handelsysteme .automatisierte-handelsysteme-conclusion {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-automatisierte-handelsysteme .automatisierte-handelsysteme-conclusion {
    padding: 6rem 0;
  }
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-conc-deco-gradient {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.07) 0%, transparent 70%);
  filter: blur(80px);
  top: 50%;
  left: -200px;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-conc-deco-shape {
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(14, 165, 233, 0.05);
  border-radius: 40% 60% 65% 35% / 35% 65% 40% 60%;
  bottom: 10%;
  right: 5%;
  z-index: 2;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-conc-deco-glow {
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 50%;
  filter: blur(60px);
  top: 30%;
  right: 10%;
  z-index: 1;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-conc-deco-accent {
  position: absolute;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.12), transparent);
  top: 50%;
  left: 5%;
  z-index: 2;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-conc-content {
  position: relative;
  z-index: 10;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-conc-content h2 {
  color: var(--color-text-primary);
  font-size: 1.75rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .post-automatisierte-handelsysteme .automatisierte-handelsysteme-conc-content h2 {
    font-size: 2.25rem;
  }
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-conc-content p {
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-disclaimer {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-secondary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .post-automatisierte-handelsysteme .automatisierte-handelsysteme-disclaimer {
    padding: 4rem 0;
  }
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-disc-deco-accent {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
  filter: blur(80px);
  top: -150px;
  right: 10%;
  z-index: 1;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-disc-deco-shape {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(14, 165, 233, 0.04);
  border-radius: 50%;
  bottom: 5%;
  left: 5%;
  z-index: 2;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-disclaimer-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 2rem;
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

@media (min-width: 768px) {
  .post-automatisierte-handelsysteme .automatisierte-handelsysteme-disclaimer-content {
    padding: 2.5rem;
    gap: 1.25rem;
  }
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-disclaimer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: #dbeafe;
  border-radius: var(--radius-md);
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-disclaimer-icon .fas {
  font-size: 1.25rem;
  color: var(--color-primary);
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-disclaimer-content h3 {
  color: var(--color-text-primary);
  font-size: 1.25rem;
  margin: 0;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-disclaimer-content p {
  color: var(--color-text-secondary);
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-related {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-primary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .post-automatisierte-handelsysteme .automatisierte-handelsysteme-related {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-automatisierte-handelsysteme .automatisierte-handelsysteme-related {
    padding: 6rem 0;
  }
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-related-deco-mesh {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(14, 165, 233, 0.08) 0%, transparent 65%);
  filter: blur(100px);
  bottom: -200px;
  right: -100px;
  z-index: 1;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-related-deco-blob-1 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 50%;
  top: 15%;
  left: 5%;
  z-index: 2;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-related-deco-blob-2 {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(37, 99, 235, 0.04);
  border-radius: 35% 65% 55% 45% / 45% 55% 65% 35%;
  bottom: 10%;
  right: 8%;
  z-index: 2;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-related-deco-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(59, 130, 246, 0.06);
  border-radius: 50%;
  filter: blur(70px);
  top: 50%;
  left: 10%;
  z-index: 1;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-related-deco-accent {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 1px solid rgba(14, 165, 233, 0.08);
  border-radius: 50%;
  top: 20%;
  right: 10%;
  z-index: 2;
  pointer-events: none;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-related-content {
  position: relative;
  z-index: 10;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-related-content h2 {
  color: var(--color-text-primary);
  font-size: 1.75rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .post-automatisierte-handelsysteme .automatisierte-handelsysteme-related-content h2 {
    font-size: 2.25rem;
  }
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-related-content > p {
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-automatisierte-handelsysteme .automatisierte-handelsysteme-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-automatisierte-handelsysteme .automatisierte-handelsysteme-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-related-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
}

@media (min-width: 768px) {
  .post-automatisierte-handelsysteme .automatisierte-handelsysteme-related-card {
    padding: 2rem;
    gap: 1.25rem;
  }
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-related-card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
  transform: translateY(-6px);
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-related-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: #dbeafe;
  border-radius: var(--radius-md);
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-related-card-icon .fas {
  font-size: 1.5rem;
  color: var(--color-primary);
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-related-card h3 {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  margin: 0;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-related-card p {
  color: var(--color-text-secondary);
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
  flex-grow: 1;
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-related-arrow {
  display: inline-flex;
  align-items: center;
  color: var(--color-primary);
  font-size: 1rem;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.post-automatisierte-handelsysteme .automatisierte-handelsysteme-related-card:hover .automatisierte-handelsysteme-related-arrow {
  transform: translateX(4px);
}

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

:root {
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f8fafc;
  --color-bg-tertiary: #f1f5f9;
  --color-bg-card: #ffffff;
  
  --color-text-primary: #1e293b;
  --color-text-secondary: #64748b;
  --color-text-muted: #94a3b8;
  
  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-secondary: #0891b2;
  
  --color-accent-light: #dbeafe;
  --color-accent-dark: #1e40af;
  
  --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.1);
}

.post-digitale-handelsplattformen {
  background: var(--color-bg-primary);
}

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

.post-digitale-handelsplattformen .digitale-handelsplattformen-breadcrumbs {
  background: var(--color-bg-secondary);
  padding: 1rem 0;
  font-size: 0.875rem;
  border-bottom: 1px solid #e2e8f0;
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-breadcrumbs a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-breadcrumbs a:hover {
  color: var(--color-primary-hover);
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-breadcrumbs span {
  color: var(--color-text-muted);
  margin: 0 0.5rem;
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-hero {
  background: var(--color-bg-primary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-hero {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-hero {
    padding: 6rem 0;
  }
}

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

@media (min-width: 768px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-hero-content {
    gap: 4rem;
  }
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-hero-text h1 {
  font-size: 2rem;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-hero-text h1 {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-hero-text h1 {
    font-size: 3.5rem;
  }
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-lead {
  font-size: 1rem;
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-lead {
    font-size: 1.125rem;
  }
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-meta {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

@media (min-width: 768px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-meta {
    flex-direction: row;
    gap: 1.5rem;
  }
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-hero-image {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-featured-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-introduction {
  background: var(--color-bg-secondary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-introduction {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-introduction {
    padding: 6rem 0;
  }
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-intro-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-intro-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-intro-content {
    gap: 4rem;
  }
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-intro-text p {
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
  line-height: 1.8;
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-intro-text p:last-child {
  margin-bottom: 0;
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-intro-image {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-section-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-features {
  background: var(--color-bg-primary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-features {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-features {
    padding: 6rem 0;
  }
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-features-content h2 {
  font-size: 1.75rem;
  color: var(--color-text-primary);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-features-content h2 {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-features-content h2 {
    font-size: 3rem;
  }
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-features-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
  }
}

@media (min-width: 1024px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-feature-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-feature-card {
    padding: 2rem;
    gap: 1.25rem;
  }
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-feature-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-feature-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--color-accent-light);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
  color: var(--color-primary);
}

@media (min-width: 768px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-feature-icon {
    width: 3.5rem;
    height: 3.5rem;
    font-size: 1.75rem;
  }
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-feature-card h3 {
  font-size: 1.25rem;
  color: var(--color-text-primary);
  margin: 0;
}

@media (min-width: 768px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-feature-card h3 {
    font-size: 1.5rem;
  }
}

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

.post-digitale-handelsplattformen .digitale-handelsplattformen-features-image {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-tools {
  background: var(--color-bg-tertiary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-tools {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-tools {
    padding: 6rem 0;
  }
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-tools-content h2 {
  font-size: 1.75rem;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-tools-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-tools-content h2 {
    font-size: 3rem;
  }
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-tools-content > p {
  color: var(--color-text-secondary);
  font-size: 1rem;
  margin-bottom: 2rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-tools-content > p {
    margin-bottom: 2.5rem;
  }
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-tools-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-tools-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
  }
}

@media (min-width: 1024px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-tools-list {
    gap: 2.5rem;
  }
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-tool-item {
  padding: 1.5rem;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

@media (min-width: 768px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-tool-item {
    padding: 2rem;
  }
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-tool-item h4 {
  font-size: 1.125rem;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-tool-item h4 {
    font-size: 1.25rem;
  }
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-tool-item p {
  color: var(--color-text-secondary);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-tools-image {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-considerations {
  background: var(--color-bg-primary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-considerations {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-considerations {
    padding: 6rem 0;
  }
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-considerations-content h2 {
  font-size: 1.75rem;
  color: var(--color-text-primary);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-considerations-content h2 {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-considerations-content h2 {
    font-size: 3rem;
  }
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-quote {
  padding: 2rem;
  margin: 2rem 0;
  border-left: 4px solid var(--color-secondary);
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-quote {
    padding: 2.5rem;
    margin: 3rem 0;
  }
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-quote p {
  font-size: 1.125rem;
  color: var(--color-text-primary);
  margin: 0;
  font-style: italic;
  line-height: 1.8;
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-considerations-content h3 {
  font-size: 1.25rem;
  color: var(--color-text-primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-considerations-content h3 {
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1.25rem;
  }
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-considerations-content p {
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-considerations-image {
  width: 100%;
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-considerations-image {
    margin-top: 3rem;
  }
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-disclaimer {
  background: #fef3c7;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-disclaimer {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-disclaimer {
    padding: 5rem 0;
  }
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-disclaimer-box {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border-left: 4px solid #f59e0b;
}

@media (min-width: 768px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-disclaimer-box {
    gap: 2rem;
    padding: 2rem;
  }
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-disclaimer-icon {
  flex-shrink: 0;
  font-size: 1.5rem;
  color: #f59e0b;
  margin-top: 0.25rem;
}

@media (min-width: 768px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-disclaimer-icon {
    font-size: 1.75rem;
  }
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-disclaimer-text h3 {
  font-size: 1.125rem;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-disclaimer-text h3 {
    font-size: 1.25rem;
  }
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-disclaimer-text p {
  color: var(--color-text-secondary);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-related {
  background: var(--color-bg-secondary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-related {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-related {
    padding: 6rem 0;
  }
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-related-content h2 {
  font-size: 1.75rem;
  color: var(--color-text-primary);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-related-content h2 {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-related-content h2 {
    font-size: 3rem;
  }
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-related-card {
  display: block;
  padding: 1.5rem;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-related-card {
    padding: 2rem;
  }
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-related-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-related-card h3 {
  font-size: 1.125rem;
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .post-digitale-handelsplattformen .digitale-handelsplattformen-related-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-related-card p {
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
  font-size: 0.95rem;
  line-height: 1.6;
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-related-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-related-card:hover .digitale-handelsplattformen-related-link {
  gap: 0.75rem;
  color: var(--color-primary-hover);
}

.post-digitale-handelsplattformen .digitale-handelsplattformen-related-link i {
  font-size: 0.75rem;
}

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

.post-wirtschaftsindikatoren-interpretation {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.wirtschaftsindikatoren-interpretation-breadcrumbs-section {
  background: var(--color-bg-secondary);
  padding: 1rem 0;
}

@media (min-width: 768px) {
  .wirtschaftsindikatoren-interpretation-breadcrumbs-section {
    padding: 1.5rem 0;
  }
}

.wirtschaftsindikatoren-interpretation-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .wirtschaftsindikatoren-interpretation-breadcrumbs {
    font-size: 1rem;
    gap: 1rem;
  }
}

.wirtschaftsindikatoren-interpretation-breadcrumbs a {
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.wirtschaftsindikatoren-interpretation-breadcrumbs a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.wirtschaftsindikatoren-interpretation-breadcrumbs span {
  color: var(--color-text-muted);
}

.wirtschaftsindikatoren-interpretation-hero {
  position: relative;
  padding: 3rem 0;
  background: var(--color-bg-secondary);
  overflow: hidden;
}

@media (min-width: 768px) {
  .wirtschaftsindikatoren-interpretation-hero {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .wirtschaftsindikatoren-interpretation-hero {
    padding: 5rem 0;
  }
}

.wirtschaftsindikatoren-interpretation-hero-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  margin-bottom: 2rem;
  border-radius: var(--radius-lg);
  display: block;
}

@media (min-width: 768px) {
  .wirtschaftsindikatoren-interpretation-hero-image {
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .wirtschaftsindikatoren-interpretation-hero-image {
    margin-bottom: 3rem;
  }
}

.wirtschaftsindikatoren-interpretation-hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.wirtschaftsindikatoren-interpretation-hero-text h1 {
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .wirtschaftsindikatoren-interpretation-hero-text h1 {
    margin-bottom: 1.25rem;
  }
}

.wirtschaftsindikatoren-interpretation-hero-subtitle {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .wirtschaftsindikatoren-interpretation-hero-subtitle {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
}

.wirtschaftsindikatoren-interpretation-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

@media (min-width: 768px) {
  .wirtschaftsindikatoren-interpretation-hero-meta {
    gap: 3rem;
  }
}

.wirtschaftsindikatoren-interpretation-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-text-secondary);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .wirtschaftsindikatoren-interpretation-meta-item {
    font-size: 1rem;
  }
}

.wirtschaftsindikatoren-interpretation-meta-item i {
  color: var(--color-primary);
  font-size: 1.125rem;
}

.wirtschaftsindikatoren-interpretation-introduction {
  padding: 3rem 0;
  background: var(--color-bg-primary);
}

@media (min-width: 768px) {
  .wirtschaftsindikatoren-interpretation-introduction {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .wirtschaftsindikatoren-interpretation-introduction {
    padding: 5rem 0;
  }
}

.wirtschaftsindikatoren-interpretation-intro-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 768px) {
  .wirtschaftsindikatoren-interpretation-intro-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .wirtschaftsindikatoren-interpretation-intro-content {
    gap: 4rem;
  }
}

.wirtschaftsindikatoren-interpretation-intro-text p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .wirtschaftsindikatoren-interpretation-intro-text p {
    font-size: 1rem;
    margin-bottom: 1.75rem;
  }
}

.wirtschaftsindikatoren-interpretation-intro-text p:last-child {
  margin-bottom: 0;
}

.wirtschaftsindikatoren-interpretation-intro-image {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.wirtschaftsindikatoren-interpretation-key-indicators {
  padding: 3rem 0;
  background: var(--color-bg-secondary);
}

@media (min-width: 768px) {
  .wirtschaftsindikatoren-interpretation-key-indicators {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .wirtschaftsindikatoren-interpretation-key-indicators {
    padding: 5rem 0;
  }
}

.wirtschaftsindikatoren-interpretation-section-content h2 {
  color: var(--color-text-primary);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .wirtschaftsindikatoren-interpretation-section-content h2 {
    margin-bottom: 2.5rem;
  }
}

.wirtschaftsindikatoren-interpretation-indicators-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .wirtschaftsindikatoren-interpretation-indicators-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .wirtschaftsindikatoren-interpretation-indicators-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
  }
}

.wirtschaftsindikatoren-interpretation-indicator-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .wirtschaftsindikatoren-interpretation-indicator-card {
    padding: 2rem;
    gap: 1.25rem;
  }
}

.wirtschaftsindikatoren-interpretation-indicator-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.wirtschaftsindikatoren-interpretation-indicator-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: #dbeafe;
  border-radius: var(--radius-md);
}

.wirtschaftsindikatoren-interpretation-indicator-icon i {
  color: var(--color-primary);
  font-size: 1.25rem;
}

.wirtschaftsindikatoren-interpretation-indicator-card h3 {
  color: var(--color-text-primary);
  margin-bottom: 0;
}

.wirtschaftsindikatoren-interpretation-indicator-card p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .wirtschaftsindikatoren-interpretation-indicator-card p {
    font-size: 1rem;
  }
}

.wirtschaftsindikatoren-interpretation-section-image {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .wirtschaftsindikatoren-interpretation-section-image {
    margin-top: 2.5rem;
  }
}

.wirtschaftsindikatoren-interpretation-interpretation-section {
  padding: 3rem 0;
  background: var(--color-bg-primary);
}

@media (min-width: 768px) {
  .wirtschaftsindikatoren-interpretation-interpretation-section {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .wirtschaftsindikatoren-interpretation-interpretation-section {
    padding: 5rem 0;
  }
}

.wirtschaftsindikatoren-interpretation-interpretation-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .wirtschaftsindikatoren-interpretation-interpretation-content {
    gap: 3rem;
  }
}

.wirtschaftsindikatoren-interpretation-interpretation-content h2 {
  color: var(--color-text-primary);
  margin-bottom: 0;
}

.wirtschaftsindikatoren-interpretation-interpretation-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.wirtschaftsindikatoren-interpretation-interpretation-text h3 {
  color: var(--color-text-primary);
  margin-bottom: 0;
  margin-top: 1rem;
}

.wirtschaftsindikatoren-interpretation-interpretation-text h3:first-child {
  margin-top: 0;
}

.wirtschaftsindikatoren-interpretation-interpretation-text p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .wirtschaftsindikatoren-interpretation-interpretation-text p {
    font-size: 1rem;
  }
}

.wirtschaftsindikatoren-interpretation-highlight-box {
  padding: 1.5rem;
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  border-radius: var(--radius-md);
  margin: 1rem 0;
}

@media (min-width: 768px) {
  .wirtschaftsindikatoren-interpretation-highlight-box {
    padding: 2rem;
    margin: 1.5rem 0;
  }
}

.wirtschaftsindikatoren-interpretation-highlight-box h4 {
  color: #78350f;
  margin-bottom: 0.5rem;
}

.wirtschaftsindikatoren-interpretation-highlight-box p {
  color: #92400e;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .wirtschaftsindikatoren-interpretation-highlight-box p {
    font-size: 1rem;
  }
}

.wirtschaftsindikatoren-interpretation-interpretation-image {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.wirtschaftsindikatoren-interpretation-timing-section {
  padding: 3rem 0;
  background: var(--color-bg-secondary);
}

@media (min-width: 768px) {
  .wirtschaftsindikatoren-interpretation-timing-section {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .wirtschaftsindikatoren-interpretation-timing-section {
    padding: 5rem 0;
  }
}

.wirtschaftsindikatoren-interpretation-timing-content h2 {
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .wirtschaftsindikatoren-interpretation-timing-content h2 {
    margin-bottom: 2rem;
  }
}

.wirtschaftsindikatoren-interpretation-timing-content p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .wirtschaftsindikatoren-interpretation-timing-content p {
    font-size: 1rem;
    margin-bottom: 1.75rem;
  }
}

.wirtschaftsindikatoren-interpretation-timing-content p:last-of-type {
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .wirtschaftsindikatoren-interpretation-timing-content p:last-of-type {
    margin-bottom: 2.5rem;
  }
}

.wirtschaftsindikatoren-interpretation-timing-image {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.wirtschaftsindikatoren-interpretation-practical-application {
  padding: 3rem 0;
  background: var(--color-bg-primary);
}

@media (min-width: 768px) {
  .wirtschaftsindikatoren-interpretation-practical-application {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .wirtschaftsindikatoren-interpretation-practical-application {
    padding: 5rem 0;
  }
}

.wirtschaftsindikatoren-interpretation-practical-content h2 {
  color: var(--color-text-primary);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .wirtschaftsindikatoren-interpretation-practical-content h2 {
    margin-bottom: 2.5rem;
  }
}

.wirtschaftsindikatoren-interpretation-practical-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .wirtschaftsindikatoren-interpretation-practical-steps {
    gap: 2.5rem;
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .wirtschaftsindikatoren-interpretation-practical-steps {
    gap: 3rem;
    margin-bottom: 3rem;
  }
}

.wirtschaftsindikatoren-interpretation-step {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

@media (min-width: 768px) {
  .wirtschaftsindikatoren-interpretation-step {
    padding: 2rem;
    gap: 1.25rem;
  }
}

.wirtschaftsindikatoren-interpretation-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.wirtschaftsindikatoren-interpretation-step h3 {
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.wirtschaftsindikatoren-interpretation-step p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .wirtschaftsindikatoren-interpretation-step p {
    font-size: 1rem;
  }
}

.wirtschaftsindikatoren-interpretation-practical-image {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.wirtschaftsindikatoren-interpretation-disclaimer {
  padding: 3rem 0;
  background: var(--color-bg-secondary);
}

@media (min-width: 768px) {
  .wirtschaftsindikatoren-interpretation-disclaimer {
    padding: 4rem 0;
  }
}

.wirtschaftsindikatoren-interpretation-disclaimer-content {
  padding: 2rem;
  background: #f0f9ff;
  border: 2px solid #bfdbfe;
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .wirtschaftsindikatoren-interpretation-disclaimer-content {
    padding: 2.5rem;
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .wirtschaftsindikatoren-interpretation-disclaimer-content {
    padding: 3rem;
  }
}

.wirtschaftsindikatoren-interpretation-disclaimer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: #dbeafe;
  border-radius: var(--radius-md);
}

.wirtschaftsindikatoren-interpretation-disclaimer-icon i {
  color: var(--color-primary);
  font-size: 1.25rem;
}

.wirtschaftsindikatoren-interpretation-disclaimer-content h3 {
  color: var(--color-primary);
  margin-bottom: 0;
}

.wirtschaftsindikatoren-interpretation-disclaimer-content p {
  color: #1e40af;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .wirtschaftsindikatoren-interpretation-disclaimer-content p {
    font-size: 1rem;
  }
}

.wirtschaftsindikatoren-interpretation-related {
  padding: 3rem 0;
  background: var(--color-bg-primary);
}

@media (min-width: 768px) {
  .wirtschaftsindikatoren-interpretation-related {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .wirtschaftsindikatoren-interpretation-related {
    padding: 5rem 0;
  }
}

.wirtschaftsindikatoren-interpretation-related-content h2 {
  color: var(--color-text-primary);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .wirtschaftsindikatoren-interpretation-related-content h2 {
    margin-bottom: 2.5rem;
  }
}

.wirtschaftsindikatoren-interpretation-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .wirtschaftsindikatoren-interpretation-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .wirtschaftsindikatoren-interpretation-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.wirtschaftsindikatoren-interpretation-related-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .wirtschaftsindikatoren-interpretation-related-card {
    padding: 2rem;
    gap: 1.25rem;
  }
}

.wirtschaftsindikatoren-interpretation-related-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.wirtschaftsindikatoren-interpretation-related-card h3 {
  color: var(--color-text-primary);
  margin-bottom: 0;
}

.wirtschaftsindikatoren-interpretation-related-card p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .wirtschaftsindikatoren-interpretation-related-card p {
    font-size: 1rem;
  }
}

.wirtschaftsindikatoren-interpretation-card-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;
}

@media (min-width: 768px) {
  .wirtschaftsindikatoren-interpretation-card-link {
    font-size: 1rem;
  }
}

.wirtschaftsindikatoren-interpretation-card-link:hover {
  color: var(--color-primary-hover);
  gap: 0.75rem;
}

.wirtschaftsindikatoren-interpretation-card-link i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}

.wirtschaftsindikatoren-interpretation-card-link:hover i {
  transform: translateX(3px);
}

.post-devisenhandel-waehrungspaare {
      background: var(--color-bg-primary);
    }

    .devisenhandel-waehrungspaare-breadcrumbs {
      padding: 1rem 0;
      font-size: 0.875rem;
    }

    @media (min-width: 768px) {
      .devisenhandel-waehrungspaare-breadcrumbs {
        padding: 1.5rem 0;
        font-size: 1rem;
      }
    }

    .devisenhandel-waehrungspaare-breadcrumbs a {
      color: var(--color-primary);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .devisenhandel-waehrungspaare-breadcrumbs a:hover {
      color: var(--color-primary-hover);
      text-decoration: underline;
    }

    .devisenhandel-waehrungspaare-breadcrumbs span {
      color: var(--color-text-muted);
      margin: 0 0.5rem;
    }

    .devisenhandel-waehrungspaare-hero-section {
      background: var(--color-bg-primary);
      padding: 3rem 0;
      overflow: hidden;
    }

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

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

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

    @media (min-width: 1024px) {
      .devisenhandel-waehrungspaare-hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
      }
    }

    .devisenhandel-waehrungspaare-hero-text h1 {
      color: var(--color-text-primary);
      margin-bottom: 1rem;
    }

    .devisenhandel-waehrungspaare-hero-text p {
      color: var(--color-text-secondary);
      font-size: 1rem;
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .devisenhandel-waehrungspaare-hero-text p {
        font-size: 1.0625rem;
      }
    }

    .devisenhandel-waehrungspaare-hero-meta {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      margin-bottom: 1.5rem;
      font-size: 0.875rem;
      color: var(--color-text-secondary);
    }

    @media (min-width: 768px) {
      .devisenhandel-waehrungspaare-hero-meta {
        flex-direction: row;
        gap: 2rem;
        font-size: 1rem;
      }
    }

    .devisenhandel-waehrungspaare-hero-image {
      width: 100%;
      height: 350px;
      object-fit: cover;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg);
    }

    @media (min-width: 768px) {
      .devisenhandel-waehrungspaare-hero-image {
        height: 400px;
      }
    }

    @media (min-width: 1024px) {
      .devisenhandel-waehrungspaare-hero-image {
        height: 450px;
      }
    }

    .devisenhandel-waehrungspaare-content-section {
      background: var(--color-bg-secondary);
      padding: 3rem 0;
    }

    @media (min-width: 768px) {
      .devisenhandel-waehrungspaare-content-section {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .devisenhandel-waehrungspaare-content-section {
        padding: 6rem 0;
      }
    }

    .devisenhandel-waehrungspaare-section-1 {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      align-items: center;
    }

    @media (min-width: 1024px) {
      .devisenhandel-waehrungspaare-section-1 {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
      }
    }

    .devisenhandel-waehrungspaare-section-1-text h2 {
      color: var(--color-text-primary);
      margin-bottom: 1rem;
    }

    .devisenhandel-waehrungspaare-section-1-text p {
      color: var(--color-text-secondary);
      margin-bottom: 1rem;
      line-height: 1.8;
    }

    .devisenhandel-waehrungspaare-section-1-text ul {
      margin-bottom: 1.5rem;
      padding-left: 1.5rem;
    }

    .devisenhandel-waehrungspaare-section-1-text li {
      color: var(--color-text-secondary);
      margin-bottom: 0.75rem;
      line-height: 1.6;
    }

    .devisenhandel-waehrungspaare-section-1-image {
      width: 100%;
      height: 350px;
      object-fit: cover;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
    }

    @media (min-width: 768px) {
      .devisenhandel-waehrungspaare-section-1-image {
        height: 400px;
      }
    }

    .devisenhandel-waehrungspaare-highlight-box {
      background: #dbeafe;
      border-left: 4px solid var(--color-primary);
      padding: 1.5rem;
      border-radius: var(--radius-md);
      margin: 2rem 0;
    }

    @media (min-width: 768px) {
      .devisenhandel-waehrungspaare-highlight-box {
        padding: 2rem;
      }
    }

    .devisenhandel-waehrungspaare-highlight-box p {
      color: #1e40af;
      margin-bottom: 0;
      font-weight: 500;
    }

    .devisenhandel-waehrungspaare-content-2-section {
      background: var(--color-bg-primary);
      padding: 3rem 0;
    }

    @media (min-width: 768px) {
      .devisenhandel-waehrungspaare-content-2-section {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .devisenhandel-waehrungspaare-content-2-section {
        padding: 6rem 0;
      }
    }

    .devisenhandel-waehrungspaare-section-2 {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    @media (min-width: 1024px) {
      .devisenhandel-waehrungspaare-section-2 {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
      }
    }

    .devisenhandel-waehrungspaare-section-2-text h2 {
      color: var(--color-text-primary);
      margin-bottom: 1rem;
    }

    .devisenhandel-waehrungspaare-section-2-text p {
      color: var(--color-text-secondary);
      margin-bottom: 1rem;
      line-height: 1.8;
    }

    .devisenhandel-waehrungspaare-section-2-text ul {
      margin-bottom: 1.5rem;
      padding-left: 1.5rem;
    }

    .devisenhandel-waehrungspaare-section-2-text li {
      color: var(--color-text-secondary);
      margin-bottom: 0.75rem;
      line-height: 1.6;
    }

    .devisenhandel-waehrungspaare-section-2-image {
      width: 100%;
      height: 350px;
      object-fit: cover;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
    }

    @media (min-width: 768px) {
      .devisenhandel-waehrungspaare-section-2-image {
        height: 400px;
      }
    }

    .devisenhandel-waehrungspaare-quote-section {
      background: var(--color-bg-secondary);
      padding: 3rem 0;
    }

    @media (min-width: 768px) {
      .devisenhandel-waehrungspaare-quote-section {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .devisenhandel-waehrungspaare-quote-section {
        padding: 6rem 0;
      }
    }

    .devisenhandel-waehrungspaare-quote-content {
      text-align: center;
    }

    .devisenhandel-waehrungspaare-quote {
      font-size: 1.375rem;
      line-height: 1.8;
      color: var(--color-text-primary);
      margin-bottom: 1.5rem;
      font-weight: 500;
    }

    @media (min-width: 768px) {
      .devisenhandel-waehrungspaare-quote {
        font-size: 1.75rem;
        margin-bottom: 2rem;
      }
    }

    .devisenhandel-waehrungspaare-quote::before {
      content: '"';
      color: var(--color-primary);
      font-size: 3rem;
      display: block;
      margin-bottom: 0.5rem;
    }

    .devisenhandel-waehrungspaare-quote-author {
      color: var(--color-text-secondary);
      font-size: 0.875rem;
    }

    @media (min-width: 768px) {
      .devisenhandel-waehrungspaare-quote-author {
        font-size: 1rem;
      }
    }

    .devisenhandel-waehrungspaare-content-3-section {
      background: var(--color-bg-primary);
      padding: 3rem 0;
    }

    @media (min-width: 768px) {
      .devisenhandel-waehrungspaare-content-3-section {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .devisenhandel-waehrungspaare-content-3-section {
        padding: 6rem 0;
      }
    }

    .devisenhandel-waehrungspaare-section-3 {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
    }

    @media (min-width: 1024px) {
      .devisenhandel-waehrungspaare-section-3 {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
      }
    }

    .devisenhandel-waehrungspaare-section-3-image {
      width: 100%;
      height: 350px;
      object-fit: cover;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
      order: -1;
    }

    @media (min-width: 768px) {
      .devisenhandel-waehrungspaare-section-3-image {
        height: 400px;
      }
    }

    @media (min-width: 1024px) {
      .devisenhandel-waehrungspaare-section-3-image {
        order: 1;
      }
    }

    .devisenhandel-waehrungspaare-section-3-text h2 {
      color: var(--color-text-primary);
      margin-bottom: 1rem;
    }

    .devisenhandel-waehrungspaare-section-3-text p {
      color: var(--color-text-secondary);
      margin-bottom: 1rem;
      line-height: 1.8;
    }

    .devisenhandel-waehrungspaare-section-3-text ul {
      margin-bottom: 1.5rem;
      padding-left: 1.5rem;
    }

    .devisenhandel-waehrungspaare-section-3-text li {
      color: var(--color-text-secondary);
      margin-bottom: 0.75rem;
      line-height: 1.6;
    }

    .devisenhandel-waehrungspaare-disclaimer-section {
      background: #fef3c7;
      padding: 3rem 0;
    }

    @media (min-width: 768px) {
      .devisenhandel-waehrungspaare-disclaimer-section {
        padding: 4rem 0;
      }
    }

    .devisenhandel-waehrungspaare-disclaimer-box {
      background: #ffffff;
      border-left: 4px solid #f59e0b;
      padding: 1.5rem;
      border-radius: var(--radius-md);
    }

    @media (min-width: 768px) {
      .devisenhandel-waehrungspaare-disclaimer-box {
        padding: 2rem;
      }
    }

    .devisenhandel-waehrungspaare-disclaimer-title {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1rem;
      font-weight: 600;
      color: var(--color-text-primary);
    }

    .devisenhandel-waehrungspaare-disclaimer-box p {
      color: var(--color-text-secondary);
      font-size: 0.875rem;
      line-height: 1.7;
    }

    @media (min-width: 768px) {
      .devisenhandel-waehrungspaare-disclaimer-box p {
        font-size: 1rem;
      }
    }

    .devisenhandel-waehrungspaare-related-section {
      background: var(--color-bg-secondary);
      padding: 3rem 0;
    }

    @media (min-width: 768px) {
      .devisenhandel-waehrungspaare-related-section {
        padding: 5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .devisenhandel-waehrungspaare-related-section {
        padding: 6rem 0;
      }
    }

    .devisenhandel-waehrungspaare-related-title {
      color: var(--color-text-primary);
      margin-bottom: 2rem;
      text-align: center;
    }

    @media (min-width: 768px) {
      .devisenhandel-waehrungspaare-related-title {
        margin-bottom: 3rem;
      }
    }

    .devisenhandel-waehrungspaare-related-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .devisenhandel-waehrungspaare-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .devisenhandel-waehrungspaare-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
      }
    }

    .devisenhandel-waehrungspaare-related-card {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding: 1.5rem;
      background: var(--color-bg-primary);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
      text-decoration: none;
    }

    @media (min-width: 768px) {
      .devisenhandel-waehrungspaare-related-card {
        padding: 1.75rem;
        gap: 1.25rem;
      }
    }

    .devisenhandel-waehrungspaare-related-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }

    .devisenhandel-waehrungspaare-related-card h3 {
      color: var(--color-text-primary);
      margin-bottom: 0;
      font-size: 1.25rem;
    }

    @media (min-width: 768px) {
      .devisenhandel-waehrungspaare-related-card h3 {
        font-size: 1.375rem;
      }
    }

    .devisenhandel-waehrungspaare-related-card p {
      color: var(--color-text-secondary);
      margin-bottom: 0;
      font-size: 0.875rem;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .devisenhandel-waehrungspaare-related-card p {
        font-size: 1rem;
      }
    }

    .devisenhandel-waehrungspaare-related-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--color-primary);
      font-weight: 500;
      font-size: 0.875rem;
      transition: all 0.3s ease;
    }

    .devisenhandel-waehrungspaare-related-link:hover {
      color: var(--color-primary-hover);
      gap: 0.75rem;
    }

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

.post-rohstoffhandel-terminkontrakte {
      background: var(--color-bg-primary);
    }

    .rohstoffhandel-terminkontrakte-breadcrumbs {
      padding: 1.5rem 0;
      border-bottom: 1px solid #e2e8f0;
    }

    .rohstoffhandel-terminkontrakte-breadcrumbs nav {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.875rem;
    }

    .rohstoffhandel-terminkontrakte-breadcrumbs a {
      color: var(--color-primary);
    }

    .rohstoffhandel-terminkontrakte-breadcrumbs span {
      color: var(--color-text-muted);
    }

    .rohstoffhandel-terminkontrakte-hero {
      padding: 3rem 0;
      background: var(--color-bg-primary);
    }

    @media (min-width: 768px) {
      .rohstoffhandel-terminkontrakte-hero {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .rohstoffhandel-terminkontrakte-hero {
        padding: 5rem 0;
      }
    }

    .rohstoffhandel-terminkontrakte-hero-content {
      position: relative;
      z-index: 10;
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .rohstoffhandel-terminkontrakte-hero h1 {
      color: var(--color-text-primary);
      font-size: 2rem;
      line-height: 1.2;
      margin-bottom: 0;
    }

    @media (min-width: 768px) {
      .rohstoffhandel-terminkontrakte-hero h1 {
        font-size: 2.75rem;
      }
    }

    @media (min-width: 1024px) {
      .rohstoffhandel-terminkontrakte-hero h1 {
        font-size: 3.5rem;
      }
    }

    .rohstoffhandel-terminkontrakte-hero-meta {
      display: flex;
      align-items: center;
      gap: 1.5rem;
      font-size: 0.875rem;
      color: var(--color-text-secondary);
      flex-wrap: wrap;
    }

    .rohstoffhandel-terminkontrakte-hero-meta span {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .rohstoffhandel-terminkontrakte-hero-meta .fas {
      color: var(--color-primary);
      font-size: 1rem;
    }

    .rohstoffhandel-terminkontrakte-hero-image {
      width: 100%;
      height: 300px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

    @media (min-width: 768px) {
      .rohstoffhandel-terminkontrakte-hero-image {
        height: 350px;
      }
    }

    @media (min-width: 1024px) {
      .rohstoffhandel-terminkontrakte-hero-image {
        height: 420px;
      }
    }

    .rohstoffhandel-terminkontrakte-hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .rohstoffhandel-terminkontrakte-lead {
      padding: 2rem 0;
      font-size: 1.125rem;
      color: var(--color-text-secondary);
      line-height: 1.7;
      border-bottom: 2px solid #e2e8f0;
    }

    @media (min-width: 768px) {
      .rohstoffhandel-terminkontrakte-lead {
        padding: 3rem 0;
        font-size: 1.25rem;
      }
    }

    .rohstoffhandel-terminkontrakte-content-section {
      padding: 3rem 0;
      border-bottom: 1px solid #f1f5f9;
    }

    @media (min-width: 768px) {
      .rohstoffhandel-terminkontrakte-content-section {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .rohstoffhandel-terminkontrakte-content-section {
        padding: 5rem 0;
      }
    }

    .rohstoffhandel-terminkontrakte-content-section h2 {
      color: var(--color-text-primary);
      font-size: 1.75rem;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .rohstoffhandel-terminkontrakte-content-section h2 {
        font-size: 2.25rem;
        margin-bottom: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .rohstoffhandel-terminkontrakte-content-section h2 {
        font-size: 2.75rem;
      }
    }

    .rohstoffhandel-terminkontrakte-content-section h3 {
      color: var(--color-text-primary);
      font-size: 1.375rem;
      margin-top: 1.5rem;
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .rohstoffhandel-terminkontrakte-content-section h3 {
        font-size: 1.625rem;
      }
    }

    @media (min-width: 1024px) {
      .rohstoffhandel-terminkontrakte-content-section h3 {
        font-size: 1.875rem;
      }
    }

    .rohstoffhandel-terminkontrakte-content-section p {
      color: var(--color-text-secondary);
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .rohstoffhandel-terminkontrakte-content-section p {
        margin-bottom: 1.75rem;
      }
    }

    .rohstoffhandel-terminkontrakte-content-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      margin: 2rem 0;
    }

    @media (min-width: 768px) {
      .rohstoffhandel-terminkontrakte-content-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
        margin: 2.5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .rohstoffhandel-terminkontrakte-content-grid {
        gap: 3rem;
      }
    }

    .rohstoffhandel-terminkontrakte-content-image {
      width: 100%;
      height: 280px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
    }

    @media (min-width: 768px) {
      .rohstoffhandel-terminkontrakte-content-image {
        height: 320px;
      }
    }

    @media (min-width: 1024px) {
      .rohstoffhandel-terminkontrakte-content-image {
        height: 360px;
      }
    }

    .rohstoffhandel-terminkontrakte-content-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .rohstoffhandel-terminkontrakte-highlight-box {
      background: #dbeafe;
      border-left: 4px solid var(--color-primary);
      padding: 1.5rem;
      border-radius: var(--radius-md);
      margin: 2rem 0;
    }

    @media (min-width: 768px) {
      .rohstoffhandel-terminkontrakte-highlight-box {
        padding: 2rem;
        margin: 2.5rem 0;
      }
    }

    .rohstoffhandel-terminkontrakte-highlight-box h3 {
      color: #1e40af;
      margin-top: 0;
    }

    .rohstoffhandel-terminkontrakte-highlight-box p {
      color: #1e40af;
      margin-bottom: 0;
    }

    .rohstoffhandel-terminkontrakte-list {
      list-style: none;
      padding: 0;
      margin: 1.5rem 0;
    }

    .rohstoffhandel-terminkontrakte-list li {
      padding: 0.75rem 0 0.75rem 2rem;
      color: var(--color-text-secondary);
      position: relative;
      line-height: 1.7;
    }

    @media (min-width: 768px) {
      .rohstoffhandel-terminkontrakte-list li {
        padding: 1rem 0 1rem 2.5rem;
      }
    }

    .rohstoffhandel-terminkontrakte-list li::before {
      content: "";
      position: absolute;
      left: 0;
      color: var(--color-primary);
      font-weight: 700;
      font-size: 1.125rem;
    }

    .rohstoffhandel-terminkontrakte-pull-quote {
      background: #f8fafc;
      border-left: 4px solid var(--color-secondary);
      padding: 2rem;
      margin: 2.5rem 0;
      border-radius: var(--radius-md);
      font-size: 1.125rem;
      color: var(--color-text-primary);
      line-height: 1.7;
      font-style: italic;
    }

    @media (min-width: 768px) {
      .rohstoffhandel-terminkontrakte-pull-quote {
        padding: 2.5rem;
        font-size: 1.25rem;
        margin: 3rem 0;
      }
    }

    .rohstoffhandel-terminkontrakte-divider {
      height: 1px;
      background: #e2e8f0;
      margin: 3rem 0;
      position: relative;
    }

    @media (min-width: 768px) {
      .rohstoffhandel-terminkontrakte-divider {
        margin: 4rem 0;
      }
    }

    .rohstoffhandel-terminkontrakte-disclaimer {
      background: #fef3c7;
      border: 1px solid #fcd34d;
      padding: 1.5rem;
      border-radius: var(--radius-lg);
      margin: 3rem 0;
    }

    @media (min-width: 768px) {
      .rohstoffhandel-terminkontrakte-disclaimer {
        padding: 2rem;
        margin: 4rem 0;
      }
    }

    .rohstoffhandel-terminkontrakte-disclaimer h3 {
      color: #78350f;
      margin-top: 0;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      font-size: 1.125rem;
    }

    .rohstoffhandel-terminkontrakte-disclaimer h3 .fas {
      font-size: 1.25rem;
    }

    .rohstoffhandel-terminkontrakte-disclaimer p {
      color: #78350f;
      margin-bottom: 0;
    }

    .rohstoffhandel-terminkontrakte-related {
      padding: 3rem 0;
      border-top: 2px solid #e2e8f0;
    }

    @media (min-width: 768px) {
      .rohstoffhandel-terminkontrakte-related {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .rohstoffhandel-terminkontrakte-related {
        padding: 5rem 0;
      }
    }

    .rohstoffhandel-terminkontrakte-related h2 {
      color: var(--color-text-primary);
      font-size: 1.75rem;
      margin-bottom: 2rem;
    }

    @media (min-width: 768px) {
      .rohstoffhandel-terminkontrakte-related h2 {
        font-size: 2.25rem;
        margin-bottom: 2.5rem;
      }
    }

    @media (min-width: 1024px) {
      .rohstoffhandel-terminkontrakte-related h2 {
        font-size: 2.5rem;
      }
    }

    .rohstoffhandel-terminkontrakte-related-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .rohstoffhandel-terminkontrakte-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .rohstoffhandel-terminkontrakte-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
      }
    }

    .rohstoffhandel-terminkontrakte-related-card {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding: 1.5rem;
      background: var(--color-bg-card);
      border: 1px solid #e2e8f0;
      border-radius: var(--radius-lg);
      transition: all 0.3s ease;
      text-decoration: none;
    }

    @media (min-width: 768px) {
      .rohstoffhandel-terminkontrakte-related-card {
        padding: 2rem;
        gap: 1.25rem;
      }
    }

    .rohstoffhandel-terminkontrakte-related-card:hover {
      border-color: var(--color-primary);
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }

    .rohstoffhandel-terminkontrakte-related-card h3 {
      color: var(--color-text-primary);
      margin: 0;
      font-size: 1.25rem;
    }

    @media (min-width: 768px) {
      .rohstoffhandel-terminkontrakte-related-card h3 {
        font-size: 1.5rem;
      }
    }

    .rohstoffhandel-terminkontrakte-related-card p {
      color: var(--color-text-secondary);
      margin: 0;
      font-size: 0.9375rem;
      line-height: 1.6;
    }

    .rohstoffhandel-terminkontrakte-related-card::after {
      content: "";
      color: var(--color-primary);
      font-weight: 700;
      font-size: 1.25rem;
      transition: transform 0.3s ease;
    }

    .rohstoffhandel-terminkontrakte-related-card:hover::after {
      transform: translateX(4px);
    }

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

.post-immobilieninvestitionen-reits {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.immobilieninvestitionen-reits-breadcrumbs {
  background: var(--color-bg-secondary);
  padding: 1rem 0;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .immobilieninvestitionen-reits-breadcrumbs {
    padding: 1.25rem 0;
    font-size: 0.9375rem;
  }
}

.immobilieninvestitionen-reits-breadcrumbs a {
  color: var(--color-primary);
}

.immobilieninvestitionen-reits-breadcrumbs span {
  color: var(--color-text-muted);
  margin: 0 var(--space-sm);
}

.immobilieninvestitionen-reits-hero {
  background: var(--color-bg-primary);
  padding: 3rem 0;
  border-bottom: 1px solid #e2e8f0;
}

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

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

.immobilieninvestitionen-reits-hero .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .immobilieninvestitionen-reits-hero .container {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.immobilieninvestitionen-reits-hero-content h1 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.immobilieninvestitionen-reits-lead {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .immobilieninvestitionen-reits-lead {
    font-size: 1.25rem;
  }
}

.immobilieninvestitionen-reits-meta {
  display: flex;
  gap: var(--space-md);
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.immobilieninvestitionen-reits-hero-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 4 / 3;
}

.immobilieninvestitionen-reits-featured-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.immobilieninvestitionen-reits-introduction {
  background: var(--color-bg-primary);
  padding: 3rem 0;
}

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

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

.immobilieninvestitionen-reits-introduction .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .immobilieninvestitionen-reits-introduction .container {
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
  }
}

.immobilieninvestitionen-reits-intro-content p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.immobilieninvestitionen-reits-intro-content p:last-of-type {
  margin-bottom: var(--space-lg);
}

.immobilieninvestitionen-reits-highlight {
  background: #eff6ff;
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin: var(--space-lg) 0;
}

@media (min-width: 768px) {
  .immobilieninvestitionen-reits-highlight {
    padding: 2rem;
    margin: var(--space-xl) 0;
  }
}

.immobilieninvestitionen-reits-highlight p {
  margin: 0;
  color: #1e40af;
}

.immobilieninvestitionen-reits-intro-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 3 / 4;
}

.immobilieninvestitionen-reits-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.immobilieninvestitionen-reits-direct-investing,
.immobilieninvestitionen-reits-reits-overview,
.immobilieninvestitionen-reits-considerations {
  background: var(--color-bg-primary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .immobilieninvestitionen-reits-direct-investing,
  .immobilieninvestitionen-reits-reits-overview,
  .immobilieninvestitionen-reits-considerations {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .immobilieninvestitionen-reits-direct-investing,
  .immobilieninvestitionen-reits-reits-overview,
  .immobilieninvestitionen-reits-considerations {
    padding: 6rem 0;
  }
}

.immobilieninvestitionen-reits-direct-investing .container,
.immobilieninvestitionen-reits-reits-overview .container,
.immobilieninvestitionen-reits-considerations .container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .immobilieninvestitionen-reits-direct-investing .container,
  .immobilieninvestitionen-reits-reits-overview .container,
  .immobilieninvestitionen-reits-considerations .container {
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3rem;
  }
}

.immobilieninvestitionen-reits-direct-investing .container {
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .immobilieninvestitionen-reits-direct-investing .container {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.immobilieninvestitionen-reits-reits-overview .container {
  grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
  .immobilieninvestitionen-reits-reits-overview .container {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

.immobilieninvestitionen-reits-content-block h2 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
}

.immobilieninvestitionen-reits-content-block h3 {
  color: var(--color-text-primary);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-md);
}

.immobilieninvestitionen-reits-content-block p {
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.immobilieninvestitionen-reits-content-image {
  overflow: hidden;
  border-radius: var(--radius-lg);
  aspect-ratio: 3 / 4;
}

.immobilieninvestitionen-reits-content-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.immobilieninvestitionen-reits-comparison {
  background: var(--color-bg-secondary);
  padding: 3rem 0;
}

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

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

.immobilieninvestitionen-reits-comparison h2 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-xl);
  text-align: center;
}

.immobilieninvestitionen-reits-comparison-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .immobilieninvestitionen-reits-comparison-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
  }
}

.immobilieninvestitionen-reits-comparison-item {
  background: var(--color-bg-primary);
  padding: 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .immobilieninvestitionen-reits-comparison-item {
    padding: 2.5rem;
  }
}

.immobilieninvestitionen-reits-comparison-item h3 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-lg);
  border-bottom: 2px solid #e2e8f0;
  padding-bottom: var(--space-md);
}

.immobilieninvestitionen-reits-comparison-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.immobilieninvestitionen-reits-comparison-pro,
.immobilieninvestitionen-reits-comparison-con {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.immobilieninvestitionen-reits-comparison-pro .immobilieninvestitionen-reits-icon {
  color: #10b981;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.immobilieninvestitionen-reits-comparison-con .immobilieninvestitionen-reits-icon {
  color: #ef4444;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.immobilieninvestitionen-reits-comparison-item strong {
  color: var(--color-text-primary);
  display: block;
  margin-bottom: 0.25rem;
}

.immobilieninvestitionen-reits-comparison-item p {
  margin: 0;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.immobilieninvestitionen-reits-disclaimer {
  background: #fef3c7;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .immobilieninvestitionen-reits-disclaimer {
    padding: 4rem 0;
  }
}

.immobilieninvestitionen-reits-disclaimer-content {
  background: #fef9e7;
  border-left: 4px solid #d97706;
  padding: 2rem;
  border-radius: var(--radius-md);
}

@media (min-width: 768px) {
  .immobilieninvestitionen-reits-disclaimer-content {
    padding: 2.5rem;
  }
}

.immobilieninvestitionen-reits-disclaimer h3 {
  color: #92400e;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.immobilieninvestitionen-reits-disclaimer h3 i {
  font-size: 1.25rem;
}

.immobilieninvestitionen-reits-disclaimer p {
  color: #78350f;
  margin: 0;
  line-height: 1.8;
  font-size: 0.9375rem;
}

.immobilieninvestitionen-reits-related {
  background: var(--color-bg-primary);
  padding: 3rem 0;
}

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

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

.immobilieninvestitionen-reits-related h2 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-xl);
}

.immobilieninvestitionen-reits-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .immobilieninvestitionen-reits-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .immobilieninvestitionen-reits-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.immobilieninvestitionen-reits-related-card {
  display: block;
  background: var(--color-bg-secondary);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  transition: all 0.3s ease;
  text-decoration: none;
}

@media (min-width: 768px) {
  .immobilieninvestitionen-reits-related-card {
    padding: 2rem;
  }
}

.immobilieninvestitionen-reits-related-card:hover {
  background: var(--color-bg-primary);
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.immobilieninvestitionen-reits-related-card-content h3 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  margin-top: 0;
}

.immobilieninvestitionen-reits-related-card-content p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
  font-size: 0.9375rem;
  line-height: 1.7;
}

.immobilieninvestitionen-reits-related-cta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  transition: all 0.3s ease;
}

.immobilieninvestitionen-reits-related-card:hover .immobilieninvestitionen-reits-related-cta {
  gap: 0.75rem;
  color: var(--color-primary-hover);
}

@media (max-width: 767px) {
  .immobilieninvestitionen-reits-comparison-grid {
    grid-template-columns: 1fr;
  }
  
  .immobilieninvestitionen-reits-intro-image {
    display: none;
  }
  
  .immobilieninvestitionen-reits-content-image {
    display: none;
  }
}

:root {
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f8fafc;
  --color-bg-tertiary: #f1f5f9;
  --color-bg-card: #ffffff;
  
  --color-text-primary: #1e293b;
  --color-text-secondary: #64748b;
  --color-text-muted: #94a3b8;
  
  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-secondary: #0891b2;
  --color-accent: #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-md: 8px;
  --radius-lg: 12px;
  
  --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);
}

.post-anleihen-festverzinste-wertpapiere {
  font-family: var(--font-primary);
  color: var(--color-text-primary);
}

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

.post-anleihen-festverzinste-wertpapiere section {
  overflow: hidden;
}

.post-anleihen-festverzinste-wertpapiere h1,
.post-anleihen-festverzinste-wertpapiere h2,
.post-anleihen-festverzinste-wertpapiere h3 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: var(--color-text-primary);
}

.post-anleihen-festverzinste-wertpapiere h1 {
  font-size: 2rem;
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .post-anleihen-festverzinste-wertpapiere h1 {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .post-anleihen-festverzinste-wertpapiere h1 {
    font-size: 3.5rem;
  }
}

.post-anleihen-festverzinste-wertpapiere h2 {
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .post-anleihen-festverzinste-wertpapiere h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .post-anleihen-festverzinste-wertpapiere h2 {
    font-size: 2.75rem;
  }
}

.post-anleihen-festverzinste-wertpapiere h3 {
  font-size: 1.25rem;
  margin-bottom: var(--space-sm);
}

@media (min-width: 768px) {
  .post-anleihen-festverzinste-wertpapiere h3 {
    font-size: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .post-anleihen-festverzinste-wertpapiere h3 {
    font-size: 1.75rem;
  }
}

.post-anleihen-festverzinste-wertpapiere p {
  line-height: 1.7;
  margin-bottom: var(--space-md);
  color: var(--color-text-secondary);
}

.post-anleihen-festverzinste-wertpapiere p:last-child {
  margin-bottom: 0;
}

.post-anleihen-festverzinste-wertpapiere a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.post-anleihen-festverzinste-wertpapiere a:hover {
  color: var(--color-primary-hover);
}

.post-anleihen-festverzinste-wertpapiere .fas {
  margin-right: var(--space-xs);
}

.anleihen-festverzinste-wertpapiere-breadcrumbs-section {
  background: var(--color-bg-secondary);
  padding: 1.5rem 0;
}

@media (min-width: 768px) {
  .anleihen-festverzinste-wertpapiere-breadcrumbs-section {
    padding: 2rem 0;
  }
}

.anleihen-festverzinste-wertpapiere-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: var(--space-xs);
  font-size: 0.875rem;
}

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

.anleihen-festverzinste-wertpapiere-breadcrumb-link:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.anleihen-festverzinste-wertpapiere-breadcrumb-separator {
  color: var(--color-text-muted);
  margin: 0 var(--space-xs);
}

.anleihen-festverzinste-wertpapiere-breadcrumb-current {
  color: var(--color-text-secondary);
  font-weight: 500;
}

.anleihen-festverzinste-wertpapiere-hero {
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .anleihen-festverzinste-wertpapiere-hero {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .anleihen-festverzinste-wertpapiere-hero {
    padding: 5rem 0;
  }
}

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

@media (min-width: 1024px) {
  .anleihen-festverzinste-wertpapiere-hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.anleihen-festverzinste-wertpapiere-lead {
  font-size: 1.125rem;
  line-height: 1.8;
  color: var(--color-text-secondary);
  margin-bottom: var(--space-lg);
}

.anleihen-festverzinste-wertpapiere-hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

@media (min-width: 768px) {
  .anleihen-festverzinste-wertpapiere-hero-meta {
    font-size: 1rem;
  }
}

.anleihen-festverzinste-wertpapiere-featured-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
}

.anleihen-festverzinste-wertpapiere-introduction {
  background: var(--color-bg-primary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .anleihen-festverzinste-wertpapiere-introduction {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .anleihen-festverzinste-wertpapiere-introduction {
    padding: 5rem 0;
  }
}

.anleihen-festverzinste-wertpapiere-intro-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .anleihen-festverzinste-wertpapiere-intro-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.anleihen-festverzinste-wertpapiere-section-image {
  width: 100%;
  height: auto;
  max-height: 350px;
  border-radius: var(--radius-lg);
  object-fit: cover;
  box-shadow: var(--shadow-md);
}

.anleihen-festverzinste-wertpapiere-types {
  background: var(--color-bg-secondary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .anleihen-festverzinste-wertpapiere-types {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .anleihen-festverzinste-wertpapiere-types {
    padding: 5rem 0;
  }
}

.anleihen-festverzinste-wertpapiere-types-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .anleihen-festverzinste-wertpapiere-types-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .anleihen-festverzinste-wertpapiere-types-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.anleihen-festverzinste-wertpapiere-type-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .anleihen-festverzinste-wertpapiere-type-card {
    padding: 2rem;
    gap: 1.25rem;
  }
}

.anleihen-festverzinste-wertpapiere-type-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.anleihen-festverzinste-wertpapiere-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-lg);
  background: #dbeafe;
  color: var(--color-primary);
  font-size: 1.5rem;
}

.anleihen-festverzinste-wertpapiere-type-card h3 {
  color: var(--color-text-primary);
  margin-bottom: 0;
}

.anleihen-festverzinste-wertpapiere-type-card p {
  color: var(--color-text-secondary);
  margin-bottom: 0;
  font-size: 0.9375rem;
}

.anleihen-festverzinste-wertpapiere-mechanics {
  background: var(--color-bg-primary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .anleihen-festverzinste-wertpapiere-mechanics {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .anleihen-festverzinste-wertpapiere-mechanics {
    padding: 5rem 0;
  }
}

.anleihen-festverzinste-wertpapiere-mechanics-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .anleihen-festverzinste-wertpapiere-mechanics-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.anleihen-festverzinste-wertpapiere-mechanics-text h3 {
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.anleihen-festverzinste-wertpapiere-mechanics-text h3:first-of-type {
  margin-top: 0;
}

.anleihen-festverzinste-wertpapiere-interest-rates {
  background: var(--color-bg-secondary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .anleihen-festverzinste-wertpapiere-interest-rates {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .anleihen-festverzinste-wertpapiere-interest-rates {
    padding: 5rem 0;
  }
}

.anleihen-festverzinste-wertpapiere-rates-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
  margin-top: 2rem;
}

@media (min-width: 1024px) {
  .anleihen-festverzinste-wertpapiere-rates-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.anleihen-festverzinste-wertpapiere-highlight-box {
  display: block;
  padding: 1.25rem;
  background: #fef3c7;
  border-left: 4px solid var(--color-accent);
  border-radius: var(--radius-md);
  margin: var(--space-lg) 0;
  color: var(--color-text-primary);
}

.anleihen-festverzinste-wertpapiere-risk {
  background: var(--color-bg-primary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .anleihen-festverzinste-wertpapiere-risk {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .anleihen-festverzinste-wertpapiere-risk {
    padding: 5rem 0;
  }
}

.anleihen-festverzinste-wertpapiere-risk-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .anleihen-festverzinste-wertpapiere-risk-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.anleihen-festverzinste-wertpapiere-strategies {
  background: var(--color-bg-secondary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .anleihen-festverzinste-wertpapiere-strategies {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .anleihen-festverzinste-wertpapiere-strategies {
    padding: 5rem 0;
  }
}

.anleihen-festverzinste-wertpapiere-strategies-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .anleihen-festverzinste-wertpapiere-strategies-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .anleihen-festverzinste-wertpapiere-strategies-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
  }
}

.anleihen-festverzinste-wertpapiere-strategy-item {
  padding: 1.5rem;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--color-primary);
}

@media (min-width: 768px) {
  .anleihen-festverzinste-wertpapiere-strategy-item {
    padding: 2rem;
  }
}

.anleihen-festverzinste-wertpapiere-strategy-item h3 {
  margin-bottom: var(--space-sm);
  color: var(--color-text-primary);
}

.anleihen-festverzinste-wertpapiere-strategy-item p {
  color: var(--color-text-secondary);
  margin-bottom: 0;
  font-size: 0.9375rem;
}

.anleihen-festverzinste-wertpapiere-conclusion {
  background: var(--color-bg-primary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .anleihen-festverzinste-wertpapiere-conclusion {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .anleihen-festverzinste-wertpapiere-conclusion {
    padding: 5rem 0;
  }
}

.anleihen-festverzinste-wertpapiere-conclusion-content {
  max-width: 800px;
}

.anleihen-festverzinste-wertpapiere-disclaimer {
  background: #f0f9ff;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .anleihen-festverzinste-wertpapiere-disclaimer {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .anleihen-festverzinste-wertpapiere-disclaimer {
    padding: 5rem 0;
  }
}

.anleihen-festverzinste-wertpapiere-disclaimer-box {
  padding: 2rem;
  background: var(--color-bg-card);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  max-width: 900px;
}

@media (min-width: 768px) {
  .anleihen-festverzinste-wertpapiere-disclaimer-box {
    padding: 2.5rem;
  }
}

.anleihen-festverzinste-wertpapiere-disclaimer-box h3 {
  color: var(--color-primary);
  margin-bottom: var(--space-md);
}

.anleihen-festverzinste-wertpapiere-disclaimer-box p {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
}

.anleihen-festverzinste-wertpapiere-related {
  background: var(--color-bg-secondary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .anleihen-festverzinste-wertpapiere-related {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .anleihen-festverzinste-wertpapiere-related {
    padding: 5rem 0;
  }
}

.anleihen-festverzinste-wertpapiere-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .anleihen-festverzinste-wertpapiere-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .anleihen-festverzinste-wertpapiere-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.anleihen-festverzinste-wertpapiere-related-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 1.5rem;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  text-decoration: none;
}

@media (min-width: 768px) {
  .anleihen-festverzinste-wertpapiere-related-card {
    padding: 1.75rem;
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .anleihen-festverzinste-wertpapiere-related-card {
    padding: 2rem;
  }
}

.anleihen-festverzinste-wertpapiere-related-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

.anleihen-festverzinste-wertpapiere-related-image {
  width: 100%;
  height: 200px;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.anleihen-festverzinste-wertpapiere-related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.anleihen-festverzinste-wertpapiere-related-card h3 {
  color: var(--color-text-primary);
  margin-bottom: 0;
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .anleihen-festverzinste-wertpapiere-related-card h3 {
    font-size: 1.25rem;
  }
}

.anleihen-festverzinste-wertpapiere-related-card p {
  color: var(--color-text-secondary);
  margin-bottom: var(--space-md);
  font-size: 0.875rem;
  flex-grow: 1;
}

.anleihen-festverzinste-wertpapiere-related-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-primary);
  font-weight: 500;
  text-decoration: none;
  font-size: 0.875rem;
  transition: all 0.3s ease;
}

.anleihen-festverzinste-wertpapiere-related-link:hover {
  color: var(--color-primary-hover);
  gap: var(--space-sm);
}

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

@media (max-width: 767px) {
  .post-anleihen-festverzinste-wertpapiere {
    line-height: 1.6;
  }
  
  .post-anleihen-festverzinste-wertpapiere h1 {
    font-size: 1.75rem;
  }
  
  .post-anleihen-festverzinste-wertpapiere h2 {
    font-size: 1.5rem;
  }
  
  .post-anleihen-festverzinste-wertpapiere p {
    font-size: 0.9375rem;
  }
}

.post-steuereffizienz-handelsberechnungen {
      background: var(--color-bg-primary);
    }

    .steuereffizienz-handelsberechnungen-breadcrumbs {
      padding: 1.5rem 0;
      margin-bottom: 2rem;
    }

    @media (min-width: 768px) {
      .steuereffizienz-handelsberechnungen-breadcrumbs {
        padding: 2rem 0;
        margin-bottom: 3rem;
      }
    }

    .steuereffizienz-handelsberechnungen-breadcrumbs nav {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      font-size: 0.875rem;
      color: var(--color-text-secondary);
    }

    @media (min-width: 768px) {
      .steuereffizienz-handelsberechnungen-breadcrumbs nav {
        font-size: 0.9375rem;
      }
    }

    .steuereffizienz-handelsberechnungen-breadcrumbs a {
      color: var(--color-primary);
      font-weight: 500;
    }

    .steuereffizienz-handelsberechnungen-breadcrumbs a:hover {
      text-decoration: underline;
    }

    .steuereffizienz-handelsberechnungen-hero {
      position: relative;
      overflow: hidden;
      padding: 3rem 0;
      background: linear-gradient(135deg, var(--color-bg-secondary) 0%, var(--color-bg-tertiary) 100%);
    }

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

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

    .steuereffizienz-handelsberechnungen-hero-content {
      position: relative;
      z-index: 10;
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .steuereffizienz-handelsberechnungen-hero-content {
        gap: 2.5rem;
      }
    }

    @media (min-width: 1024px) {
      .steuereffizienz-handelsberechnungen-hero-content {
        gap: 3rem;
      }
    }

    .steuereffizienz-handelsberechnungen-hero h1 {
      color: var(--color-text-primary);
      font-size: 2rem;
      line-height: 1.2;
      margin: 0 0 0.5rem 0;
    }

    @media (min-width: 768px) {
      .steuereffizienz-handelsberechnungen-hero h1 {
        font-size: 2.75rem;
      }
    }

    @media (min-width: 1024px) {
      .steuereffizienz-handelsberechnungen-hero h1 {
        font-size: 3.5rem;
      }
    }

    .steuereffizienz-handelsberechnungen-hero-subtitle {
      font-size: 1rem;
      color: var(--color-text-secondary);
      margin: 0 0 1rem 0;
      max-width: 90%;
    }

    @media (min-width: 768px) {
      .steuereffizienz-handelsberechnungen-hero-subtitle {
        font-size: 1.125rem;
      }
    }

    .steuereffizienz-handelsberechnungen-hero-meta {
      display: flex;
      align-items: center;
      gap: 2rem;
      font-size: 0.875rem;
      color: var(--color-text-muted);
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .steuereffizienz-handelsberechnungen-hero-meta {
        font-size: 0.9375rem;
        gap: 2.5rem;
      }
    }

    .steuereffizienz-handelsberechnungen-hero-image-wrapper {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-lg);
      height: 280px;
      background: var(--color-bg-card);
      box-shadow: var(--shadow-md);
    }

    @media (min-width: 768px) {
      .steuereffizienz-handelsberechnungen-hero-image-wrapper {
        height: 350px;
      }
    }

    @media (min-width: 1024px) {
      .steuereffizienz-handelsberechnungen-hero-image-wrapper {
        height: 420px;
      }
    }

    .steuereffizienz-handelsberechnungen-hero-image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .steuereffizienz-handelsberechnungen-lead-section {
      padding: 3rem 0;
      background: var(--color-bg-primary);
      border-bottom: 1px solid #e2e8f0;
    }

    @media (min-width: 768px) {
      .steuereffizienz-handelsberechnungen-lead-section {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .steuereffizienz-handelsberechnungen-lead-section {
        padding: 5rem 0;
      }
    }

    .steuereffizienz-handelsberechnungen-lead-content {
      position: relative;
      z-index: 10;
      max-width: 900px;
    }

    .steuereffizienz-handelsberechnungen-lead-content p {
      font-size: 1.0625rem;
      line-height: 1.8;
      color: var(--color-text-secondary);
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .steuereffizienz-handelsberechnungen-lead-content p {
        font-size: 1.125rem;
        margin-bottom: 1.75rem;
      }
    }

    .steuereffizienz-handelsberechnungen-lead-content p:last-child {
      margin-bottom: 0;
    }

    .steuereffizienz-handelsberechnungen-content-section {
      padding: 3rem 0;
      background: var(--color-bg-primary);
    }

    @media (min-width: 768px) {
      .steuereffizienz-handelsberechnungen-content-section {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .steuereffizienz-handelsberechnungen-content-section {
        padding: 5rem 0;
      }
    }

    .steuereffizienz-handelsberechnungen-content-section:nth-child(even) {
      background: var(--color-bg-secondary);
    }

    .steuereffizienz-handelsberechnungen-content-wrapper {
      position: relative;
      z-index: 10;
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .steuereffizienz-handelsberechnungen-content-wrapper {
        gap: 2.5rem;
      }
    }

    @media (min-width: 1024px) {
      .steuereffizienz-handelsberechnungen-content-wrapper {
        gap: 3rem;
      }
    }

    .steuereffizienz-handelsberechnungen-content-wrapper h2 {
      color: var(--color-text-primary);
      font-size: 1.75rem;
      line-height: 1.2;
      margin: 0 0 1rem 0;
    }

    @media (min-width: 768px) {
      .steuereffizienz-handelsberechnungen-content-wrapper h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .steuereffizienz-handelsberechnungen-content-wrapper h2 {
        font-size: 2.75rem;
      }
    }

    .steuereffizienz-handelsberechnungen-text-block {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    @media (min-width: 768px) {
      .steuereffizienz-handelsberechnungen-text-block {
        gap: 1.25rem;
      }
    }

    .steuereffizienz-handelsberechnungen-text-block p {
      color: var(--color-text-secondary);
      font-size: 1rem;
      line-height: 1.7;
      margin: 0;
    }

    @media (min-width: 768px) {
      .steuereffizienz-handelsberechnungen-text-block p {
        font-size: 1.0625rem;
        line-height: 1.8;
      }
    }

    .steuereffizienz-handelsberechnungen-image-wrapper {
      position: relative;
      overflow: hidden;
      border-radius: var(--radius-lg);
      background: var(--color-bg-card);
      box-shadow: var(--shadow-md);
      height: 280px;
    }

    @media (min-width: 768px) {
      .steuereffizienz-handelsberechnungen-image-wrapper {
        height: 340px;
      }
    }

    @media (min-width: 1024px) {
      .steuereffizienz-handelsberechnungen-image-wrapper {
        height: 400px;
      }
    }

    .steuereffizienz-handelsberechnungen-image-wrapper img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .steuereffizienz-handelsberechnungen-highlight-box {
      background: #dbeafe;
      border-left: 4px solid var(--color-primary);
      padding: 1.5rem;
      border-radius: var(--radius-md);
      margin: 1.5rem 0;
    }

    @media (min-width: 768px) {
      .steuereffizienz-handelsberechnungen-highlight-box {
        padding: 2rem;
        margin: 2rem 0;
      }
    }

    .steuereffizienz-handelsberechnungen-highlight-box h3 {
      color: var(--color-text-primary);
      font-size: 1.125rem;
      margin: 0 0 0.75rem 0;
    }

    @media (min-width: 768px) {
      .steuereffizienz-handelsberechnungen-highlight-box h3 {
        font-size: 1.25rem;
      }
    }

    .steuereffizienz-handelsberechnungen-highlight-box p {
      color: #1e40af;
      font-size: 0.9375rem;
      margin: 0;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .steuereffizienz-handelsberechnungen-highlight-box p {
        font-size: 1rem;
      }
    }

    .steuereffizienz-handelsberechnungen-list-block {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin: 1.5rem 0;
    }

    @media (min-width: 768px) {
      .steuereffizienz-handelsberechnungen-list-block {
        gap: 1.25rem;
        margin: 2rem 0;
      }
    }

    .steuereffizienz-handelsberechnungen-list-block li {
      display: flex;
      gap: 0.75rem;
      align-items: flex-start;
      color: var(--color-text-secondary);
      font-size: 1rem;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .steuereffizienz-handelsberechnungen-list-block li {
        font-size: 1.0625rem;
        gap: 1rem;
      }
    }

    .steuereffizienz-handelsberechnungen-list-block li::before {
      content: "";
      color: var(--color-primary);
      font-weight: 700;
      flex-shrink: 0;
      margin-top: 2px;
    }

    .steuereffizienz-handelsberechnungen-disclaimer-section {
      padding: 3rem 0;
      background: var(--color-bg-secondary);
      border-top: 1px solid #e2e8f0;
      border-bottom: 1px solid #e2e8f0;
    }

    @media (min-width: 768px) {
      .steuereffizienz-handelsberechnungen-disclaimer-section {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .steuereffizienz-handelsberechnungen-disclaimer-section {
        padding: 5rem 0;
      }
    }

    .steuereffizienz-handelsberechnungen-disclaimer-content {
      position: relative;
      z-index: 10;
      max-width: 900px;
      background: var(--color-bg-card);
      border-left: 4px solid #f59e0b;
      padding: 1.5rem;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-sm);
    }

    @media (min-width: 768px) {
      .steuereffizienz-handelsberechnungen-disclaimer-content {
        padding: 2rem;
      }
    }

    .steuereffizienz-handelsberechnungen-disclaimer-header {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .steuereffizienz-handelsberechnungen-disclaimer-header {
        gap: 1rem;
        margin-bottom: 1.25rem;
      }
    }

    .steuereffizienz-handelsberechnungen-disclaimer-icon {
      font-size: 1.25rem;
      color: #f59e0b;
      flex-shrink: 0;
    }

    .steuereffizienz-handelsberechnungen-disclaimer-title {
      color: var(--color-text-primary);
      font-weight: 600;
      font-size: 1.0625rem;
      margin: 0;
    }

    @media (min-width: 768px) {
      .steuereffizienz-handelsberechnungen-disclaimer-title {
        font-size: 1.125rem;
      }
    }

    .steuereffizienz-handelsberechnungen-disclaimer-text {
      color: var(--color-text-secondary);
      font-size: 0.9375rem;
      line-height: 1.7;
      margin: 0;
    }

    @media (min-width: 768px) {
      .steuereffizienz-handelsberechnungen-disclaimer-text {
        font-size: 1rem;
      }
    }

    .steuereffizienz-handelsberechnungen-related-section {
      padding: 3rem 0;
      background: var(--color-bg-primary);
    }

    @media (min-width: 768px) {
      .steuereffizienz-handelsberechnungen-related-section {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .steuereffizienz-handelsberechnungen-related-section {
        padding: 5rem 0;
      }
    }

    .steuereffizienz-handelsberechnungen-related-content {
      position: relative;
      z-index: 10;
    }

    .steuereffizienz-handelsberechnungen-related-title {
      color: var(--color-text-primary);
      font-size: 1.75rem;
      margin: 0 0 2rem 0;
      text-align: center;
    }

    @media (min-width: 768px) {
      .steuereffizienz-handelsberechnungen-related-title {
        font-size: 2.25rem;
        margin-bottom: 2.5rem;
      }
    }

    @media (min-width: 1024px) {
      .steuereffizienz-handelsberechnungen-related-title {
        font-size: 2.75rem;
        margin-bottom: 3rem;
      }
    }

    .steuereffizienz-handelsberechnungen-related-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .steuereffizienz-handelsberechnungen-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .steuereffizienz-handelsberechnungen-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
      }
    }

    .steuereffizienz-handelsberechnungen-related-card {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding: 1.5rem;
      background: var(--color-bg-card);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      text-decoration: none;
    }

    @media (min-width: 768px) {
      .steuereffizienz-handelsberechnungen-related-card {
        padding: 1.75rem;
        gap: 1.25rem;
      }
    }

    @media (min-width: 1024px) {
      .steuereffizienz-handelsberechnungen-related-card {
        padding: 2rem;
        gap: 1.5rem;
      }
    }

    .steuereffizienz-handelsberechnungen-related-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-6px);
    }

    .steuereffizienz-handelsberechnungen-related-card:focus-visible {
      outline: 2px solid var(--color-primary);
      outline-offset: 3px;
    }

    .steuereffizienz-handelsberechnungen-related-card h3 {
      color: var(--color-text-primary);
      font-size: 1.125rem;
      margin: 0;
      line-height: 1.3;
    }

    @media (min-width: 768px) {
      .steuereffizienz-handelsberechnungen-related-card h3 {
        font-size: 1.25rem;
      }
    }

    .steuereffizienz-handelsberechnungen-related-card p {
      color: var(--color-text-secondary);
      font-size: 0.9375rem;
      margin: 0;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .steuereffizienz-handelsberechnungen-related-card p {
        font-size: 1rem;
      }
    }

    .steuereffizienz-handelsberechnungen-related-card:hover h3 {
      color: var(--color-primary);
    }

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

.post-absicherungsstrategien-versicherung {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.absicherungsstrategien-versicherung-breadcrumbs-section {
  background: var(--color-bg-secondary);
  padding: 1.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.absicherungsstrategien-versicherung-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.absicherungsstrategien-versicherung-breadcrumbs a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.absicherungsstrategien-versicherung-breadcrumbs a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.absicherungsstrategien-versicherung-separator {
  color: #cbd5e1;
}

.absicherungsstrategien-versicherung-current {
  color: var(--color-text-secondary);
}

.absicherungsstrategien-versicherung-hero {
  padding: 3rem 0;
  background: var(--color-bg-primary);
}

@media (min-width: 768px) {
  .absicherungsstrategien-versicherung-hero {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .absicherungsstrategien-versicherung-hero {
    padding: 5rem 0;
  }
}

.absicherungsstrategien-versicherung-hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: stretch;
}

@media (min-width: 1024px) {
  .absicherungsstrategien-versicherung-hero-content {
    flex-direction: row;
    gap: 3rem;
    align-items: center;
  }
}

.absicherungsstrategien-versicherung-hero-text {
  flex: 1;
}

@media (min-width: 1024px) {
  .absicherungsstrategien-versicherung-hero-text {
    max-width: 55%;
  }
}

.absicherungsstrategien-versicherung-hero h1 {
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.absicherungsstrategien-versicherung-hero-lead {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .absicherungsstrategien-versicherung-hero-lead {
    font-size: 1.25rem;
  }
}

.absicherungsstrategien-versicherung-hero-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.absicherungsstrategien-versicherung-meta-divider {
  color: #cbd5e1;
}

.absicherungsstrategien-versicherung-hero-image {
  flex: 1;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.absicherungsstrategien-versicherung-hero-image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

.absicherungsstrategien-versicherung-intro {
  padding: 3rem 0;
  background: var(--color-bg-secondary);
}

@media (min-width: 768px) {
  .absicherungsstrategien-versicherung-intro {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .absicherungsstrategien-versicherung-intro {
    padding: 5rem 0;
  }
}

.absicherungsstrategien-versicherung-intro-content {
  max-width: 900px;
  margin: 0 auto;
}

.absicherungsstrategien-versicherung-intro-content p {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .absicherungsstrategien-versicherung-intro-content p {
    font-size: 1.0625rem;
  }
}

.absicherungsstrategien-versicherung-intro-content p:last-child {
  margin-bottom: 0;
}

.absicherungsstrategien-versicherung-image-inline {
  margin: 2rem 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

@media (min-width: 768px) {
  .absicherungsstrategien-versicherung-image-inline {
    margin: 2.5rem 0;
  }
}

@media (min-width: 1024px) {
  .absicherungsstrategien-versicherung-image-inline {
    margin: 3rem 0;
  }
}

.absicherungsstrategien-versicherung-image-inline img {
  width: 100%;
  height: auto;
  max-height: 380px;
  object-fit: cover;
  display: block;
}

.absicherungsstrategien-versicherung-fundamentals {
  padding: 3rem 0;
  background: var(--color-bg-primary);
}

@media (min-width: 768px) {
  .absicherungsstrategien-versicherung-fundamentals {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .absicherungsstrategien-versicherung-fundamentals {
    padding: 5rem 0;
  }
}

.absicherungsstrategien-versicherung-fundamentals-content {
  max-width: 900px;
  margin: 0 auto;
}

.absicherungsstrategien-versicherung-fundamentals h2 {
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .absicherungsstrategien-versicherung-fundamentals h2 {
    margin-bottom: 2rem;
  }
}

.absicherungsstrategien-versicherung-fundamentals p {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .absicherungsstrategien-versicherung-fundamentals p {
    font-size: 1.0625rem;
  }
}

.absicherungsstrategien-versicherung-highlight-box {
  background: #dbeafe;
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .absicherungsstrategien-versicherung-highlight-box {
    padding: 1.75rem;
    margin: 2.5rem 0;
  }
}

.absicherungsstrategien-versicherung-highlight-box p {
  margin: 0;
  color: #0c4a6e;
  font-weight: 500;
}

.absicherungsstrategien-versicherung-list {
  list-style: none;
  padding: 0;
  margin: 1.5rem 0;
}

@media (min-width: 768px) {
  .absicherungsstrategien-versicherung-list {
    margin: 2rem 0;
  }
}

.absicherungsstrategien-versicherung-list li {
  padding-left: 1.75rem;
  margin-bottom: 1rem;
  position: relative;
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .absicherungsstrategien-versicherung-list li {
    font-size: 1.0625rem;
    margin-bottom: 1.25rem;
  }
}

.absicherungsstrategien-versicherung-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-primary);
  font-weight: bold;
  font-size: 1.25rem;
}

.absicherungsstrategien-versicherung-strategies {
  padding: 3rem 0;
  background: var(--color-bg-secondary);
}

@media (min-width: 768px) {
  .absicherungsstrategien-versicherung-strategies {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .absicherungsstrategien-versicherung-strategies {
    padding: 5rem 0;
  }
}

.absicherungsstrategien-versicherung-strategies-content {
  max-width: 900px;
  margin: 0 auto;
}

.absicherungsstrategien-versicherung-strategies h2 {
  color: var(--color-text-primary);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .absicherungsstrategien-versicherung-strategies h2 {
    margin-bottom: 2.5rem;
  }
}

.absicherungsstrategien-versicherung-strategy-card {
  background: var(--color-bg-card);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .absicherungsstrategien-versicherung-strategy-card {
    padding: 2rem;
    margin-bottom: 2rem;
  }
}

.absicherungsstrategien-versicherung-strategy-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-md);
}

.absicherungsstrategien-versicherung-strategy-card h3 {
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  margin-top: 0;
}

.absicherungsstrategien-versicherung-strategy-card p {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .absicherungsstrategien-versicherung-strategy-card p {
    font-size: 1.0625rem;
  }
}

.absicherungsstrategien-versicherung-strategy-card p:last-child {
  margin-bottom: 0;
}

.absicherungsstrategien-versicherung-costs {
  padding: 3rem 0;
  background: var(--color-bg-primary);
}

@media (min-width: 768px) {
  .absicherungsstrategien-versicherung-costs {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .absicherungsstrategien-versicherung-costs {
    padding: 5rem 0;
  }
}

.absicherungsstrategien-versicherung-costs-content {
  max-width: 900px;
  margin: 0 auto;
}

.absicherungsstrategien-versicherung-costs h2 {
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .absicherungsstrategien-versicherung-costs h2 {
    margin-bottom: 2rem;
  }
}

.absicherungsstrategien-versicherung-costs p {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .absicherungsstrategien-versicherung-costs p {
    font-size: 1.0625rem;
  }
}

.absicherungsstrategien-versicherung-quote {
  border-left: 4px solid var(--color-secondary);
  padding: 1.5rem;
  padding-left: 2rem;
  margin: 2rem 0;
  font-size: 1.125rem;
  color: var(--color-text-primary);
  font-style: italic;
  line-height: 1.8;
}

@media (min-width: 768px) {
  .absicherungsstrategien-versicherung-quote {
    padding: 2rem;
    padding-left: 2.5rem;
    margin: 2.5rem 0;
    font-size: 1.25rem;
  }
}

.absicherungsstrategien-versicherung-implementation {
  padding: 3rem 0;
  background: var(--color-bg-secondary);
}

@media (min-width: 768px) {
  .absicherungsstrategien-versicherung-implementation {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .absicherungsstrategien-versicherung-implementation {
    padding: 5rem 0;
  }
}

.absicherungsstrategien-versicherung-implementation-content {
  max-width: 900px;
  margin: 0 auto;
}

.absicherungsstrategien-versicherung-implementation h2 {
  color: var(--color-text-primary);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .absicherungsstrategien-versicherung-implementation h2 {
    margin-bottom: 2.5rem;
  }
}

.absicherungsstrategien-versicherung-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .absicherungsstrategien-versicherung-steps {
    gap: 2rem;
    margin: 2.5rem 0;
  }
}

.absicherungsstrategien-versicherung-step {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
}

@media (min-width: 768px) {
  .absicherungsstrategien-versicherung-step {
    gap: 2rem;
    padding: 1.75rem;
  }
}

.absicherungsstrategien-versicherung-step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--color-primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.absicherungsstrategien-versicherung-step-content h4 {
  color: var(--color-text-primary);
  margin: 0 0 0.75rem 0;
}

.absicherungsstrategien-versicherung-step-content p {
  color: var(--color-text-secondary);
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

@media (min-width: 768px) {
  .absicherungsstrategien-versicherung-step-content p {
    font-size: 1.0625rem;
  }
}

.absicherungsstrategien-versicherung-disclaimer {
  padding: 3rem 0;
  background: #f0f9ff;
  border-top: 2px solid #dbeafe;
  border-bottom: 2px solid #dbeafe;
}

@media (min-width: 768px) {
  .absicherungsstrategien-versicherung-disclaimer {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .absicherungsstrategien-versicherung-disclaimer {
    padding: 5rem 0;
  }
}

.absicherungsstrategien-versicherung-disclaimer-content {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .absicherungsstrategien-versicherung-disclaimer-content {
    gap: 2rem;
  }
}

.absicherungsstrategien-versicherung-disclaimer-icon {
  flex-shrink: 0;
  font-size: 1.75rem;
  color: var(--color-primary);
  margin-top: 0.25rem;
}

.absicherungsstrategien-versicherung-disclaimer-text h3 {
  color: #0c4a6e;
  margin: 0 0 0.75rem 0;
}

.absicherungsstrategien-versicherung-disclaimer-text p {
  color: #0c4a6e;
  font-size: 0.9375rem;
  line-height: 1.7;
  margin: 0;
}

@media (min-width: 768px) {
  .absicherungsstrategien-versicherung-disclaimer-text p {
    font-size: 1rem;
  }
}

.absicherungsstrategien-versicherung-related {
  padding: 3rem 0;
  background: var(--color-bg-primary);
}

@media (min-width: 768px) {
  .absicherungsstrategien-versicherung-related {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .absicherungsstrategien-versicherung-related {
    padding: 5rem 0;
  }
}

.absicherungsstrategien-versicherung-related-content {
  max-width: 1200px;
  margin: 0 auto;
}

.absicherungsstrategien-versicherung-related h2 {
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.absicherungsstrategien-versicherung-related-subtitle {
  color: var(--color-text-secondary);
  font-size: 1.0625rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .absicherungsstrategien-versicherung-related-subtitle {
    margin-bottom: 2.5rem;
  }
}

.absicherungsstrategien-versicherung-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .absicherungsstrategien-versicherung-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .absicherungsstrategien-versicherung-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.absicherungsstrategien-versicherung-related-card {
  background: var(--color-bg-card);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.35s ease;
}

.absicherungsstrategien-versicherung-related-card:hover {
  border-color: var(--color-primary);
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.absicherungsstrategien-versicherung-related-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: var(--color-bg-secondary);
}

.absicherungsstrategien-versicherung-related-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.absicherungsstrategien-versicherung-related-card:hover .absicherungsstrategien-versicherung-related-card-image img {
  transform: scale(1.05);
}

.absicherungsstrategien-versicherung-related-card-content {
  padding: 1.5rem;
}

@media (min-width: 768px) {
  .absicherungsstrategien-versicherung-related-card-content {
    padding: 1.75rem;
  }
}

.absicherungsstrategien-versicherung-related-card h3 {
  margin: 0 0 0.75rem 0;
  color: var(--color-text-primary);
}

.absicherungsstrategien-versicherung-related-card h3 a {
  color: var(--color-text-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.absicherungsstrategien-versicherung-related-card h3 a:hover {
  color: var(--color-primary);
}

.absicherungsstrategien-versicherung-related-card p {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .absicherungsstrategien-versicherung-related-card p {
    font-size: 1rem;
  }
}

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

.post-emotionale-kontrolle-handelspsychologie {
      background: var(--color-bg-primary);
    }

    .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-breadcrumbs {
      padding: 1.5rem 0 1rem;
      font-size: 0.875rem;
    }

    .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-breadcrumbs a {
      color: var(--color-primary);
      margin-right: 0.5rem;
    }

    .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-breadcrumbs span {
      color: var(--color-text-muted);
      margin: 0 0.5rem;
    }

    .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-hero {
      padding: 3rem 0;
      background: var(--color-bg-primary);
    }

    @media (min-width: 768px) {
      .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-hero {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-hero {
        padding: 5rem 0;
      }
    }

    .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-hero-content {
      display: grid;
      gap: 2rem;
    }

    @media (min-width: 1024px) {
      .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-hero-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
      }
    }

    .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-hero-text h1 {
      color: var(--color-text-primary);
      font-size: 2rem;
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-hero-text h1 {
        font-size: 2.5rem;
      }
    }

    @media (min-width: 1024px) {
      .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-hero-text h1 {
        font-size: 3rem;
      }
    }

    .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-hero-text p {
      color: var(--color-text-secondary);
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-hero-text p {
        font-size: 1.0625rem;
      }
    }

    .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-hero-meta {
      display: flex;
      gap: 2rem;
      flex-wrap: wrap;
      margin-bottom: 1.5rem;
      font-size: 0.875rem;
      color: var(--color-text-muted);
    }

    .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-hero-meta-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-hero-image {
      position: relative;
      width: 100%;
      height: 300px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-lg);
    }

    @media (min-width: 768px) {
      .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-hero-image {
        height: 350px;
      }
    }

    @media (min-width: 1024px) {
      .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-hero-image {
        height: 400px;
      }
    }

    .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-content-section {
      padding: 3rem 0;
      border-bottom: 1px solid var(--color-bg-tertiary);
    }

    @media (min-width: 768px) {
      .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-content-section {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-content-section {
        padding: 5rem 0;
      }
    }

    .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-content-section:last-of-type {
      border-bottom: none;
    }

    .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-content-wrapper {
      display: grid;
      gap: 2rem;
    }

    @media (min-width: 1024px) {
      .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-content-wrapper {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
        align-items: center;
      }
    }

    .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-content-wrapper.reversed {
      direction: rtl;
    }

    @media (min-width: 1024px) {
      .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-content-wrapper.reversed > * {
        direction: ltr;
      }
    }

    .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-section-title {
      color: var(--color-text-primary);
      font-size: 1.75rem;
      line-height: 1.2;
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-section-title {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-section-title {
        font-size: 2.5rem;
      }
    }

    .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-section-text {
      color: var(--color-text-secondary);
      line-height: 1.8;
      margin-bottom: 1.5rem;
    }

    .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-section-text p {
      margin-bottom: 1rem;
      color: var(--color-text-secondary);
    }

    .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-section-text ul {
      margin: 1.5rem 0 1.5rem 2rem;
      padding: 0;
    }

    .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-section-text li {
      margin-bottom: 0.75rem;
      color: var(--color-text-secondary);
    }

    .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-content-image {
      position: relative;
      width: 100%;
      height: 280px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
    }

    @media (min-width: 768px) {
      .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-content-image {
        height: 320px;
      }
    }

    @media (min-width: 1024px) {
      .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-content-image {
        height: 350px;
      }
    }

    .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-content-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-highlight-box {
      background: #dbeafe;
      border-left: 4px solid var(--color-primary);
      padding: 1.5rem;
      border-radius: var(--radius-md);
      margin: 2rem 0;
    }

    @media (min-width: 768px) {
      .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-highlight-box {
        padding: 2rem;
        margin: 2.5rem 0;
      }
    }

    .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-highlight-box h4 {
      color: var(--color-text-primary);
      margin-bottom: 0.5rem;
    }

    .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-highlight-box p {
      color: var(--color-text-secondary);
      margin-bottom: 0;
    }

    .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-quote {
      font-size: 1.25rem;
      font-style: italic;
      color: var(--color-primary);
      border-left: 4px solid var(--color-primary);
      padding-left: 1.5rem;
      margin: 2rem 0;
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-quote {
        font-size: 1.375rem;
        padding-left: 2rem;
        margin: 2.5rem 0;
      }
    }

    .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-disclaimer {
      background: #f8fafc;
      border: 1px solid var(--color-bg-tertiary);
      padding: 2rem;
      border-radius: var(--radius-lg);
      margin: 3rem 0;
    }

    @media (min-width: 768px) {
      .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-disclaimer {
        padding: 2.5rem;
        margin: 4rem 0;
      }
    }

    .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-disclaimer-title {
      color: var(--color-text-primary);
      font-weight: 600;
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-disclaimer-text {
      color: var(--color-text-secondary);
      font-size: 0.9375rem;
      line-height: 1.7;
      margin: 0;
    }

    .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-related-section {
      padding: 3rem 0;
      background: var(--color-bg-secondary);
    }

    @media (min-width: 768px) {
      .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-related-section {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-related-section {
        padding: 5rem 0;
      }
    }

    .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-related-title {
      color: var(--color-text-primary);
      font-size: 1.75rem;
      margin-bottom: 2rem;
      text-align: center;
    }

    @media (min-width: 768px) {
      .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-related-title {
        font-size: 2.25rem;
        margin-bottom: 2.5rem;
      }
    }

    .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-related-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
      }
    }

    .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-related-card {
      background: var(--color-bg-card);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-related-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }

    .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-related-card-image {
      width: 100%;
      height: 200px;
      overflow: hidden;
      background: var(--color-bg-tertiary);
    }

    .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-related-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-related-card-content {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      flex-grow: 1;
    }

    @media (min-width: 768px) {
      .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-related-card-content {
        padding: 1.75rem;
      }
    }

    .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-related-card-title {
      color: var(--color-text-primary);
      font-size: 1.125rem;
      font-weight: 600;
      margin-bottom: 0.75rem;
      line-height: 1.3;
    }

    @media (min-width: 768px) {
      .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-related-card-title {
        font-size: 1.25rem;
      }
    }

    .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-related-card-desc {
      color: var(--color-text-secondary);
      font-size: 0.9375rem;
      line-height: 1.6;
      flex-grow: 1;
      margin-bottom: 1rem;
    }

    .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-related-card-link {
      color: var(--color-primary);
      font-weight: 600;
      font-size: 0.875rem;
      transition: all 0.3s ease;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .post-emotionale-kontrolle-handelspsychologie .emotionale-kontrolle-handelspsychologie-related-card-link:hover {
      color: var(--color-primary-hover);
      gap: 0.75rem;
    }

.post-vermoegensschutz-nachlassplanung {
      background: var(--color-bg-primary);
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-breadcrumbs {
      padding: 1.5rem 0 1rem 0;
      font-size: 0.875rem;
      color: var(--color-text-secondary);
    }

    @media (min-width: 768px) {
      .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-breadcrumbs {
        padding: 2rem 0 1.5rem 0;
        font-size: 0.9375rem;
      }
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-breadcrumbs a {
      color: var(--color-primary);
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-breadcrumbs a:hover {
      text-decoration: underline;
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-hero {
      position: relative;
      overflow: hidden;
      background: var(--color-bg-secondary);
      padding: 3rem 0;
    }

    @media (min-width: 768px) {
      .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-hero {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-hero {
        padding: 5rem 0;
      }
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-hero-glow-1 {
      position: absolute;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
      filter: blur(80px);
      top: -100px;
      left: -100px;
      z-index: 1;
      pointer-events: none;
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-hero-glow-2 {
      position: absolute;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(8, 145, 178, 0.06) 0%, transparent 70%);
      filter: blur(70px);
      bottom: -80px;
      right: -80px;
      z-index: 1;
      pointer-events: none;
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-hero-shape-1 {
      position: absolute;
      width: 300px;
      height: 300px;
      background: rgba(37, 99, 235, 0.05);
      border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
      top: 10%;
      right: 5%;
      z-index: 2;
      pointer-events: none;
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-hero-shape-2 {
      position: absolute;
      width: 250px;
      height: 250px;
      background: rgba(8, 145, 178, 0.04);
      border-radius: 30% 70% 40% 60% / 60% 30% 70% 40%;
      bottom: 15%;
      left: 8%;
      z-index: 2;
      pointer-events: none;
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-hero-accent-line {
      position: absolute;
      width: 200px;
      height: 2px;
      background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.2), transparent);
      top: 20%;
      right: 15%;
      z-index: 2;
      pointer-events: none;
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-hero-content {
      position: relative;
      z-index: 10;
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-hero h1 {
      color: var(--color-text-primary);
      margin-bottom: var(--space-md);
      font-size: 2rem;
    }

    @media (min-width: 768px) {
      .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-hero h1 {
        font-size: 2.75rem;
        margin-bottom: var(--space-lg);
      }
    }

    @media (min-width: 1024px) {
      .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-hero h1 {
        font-size: 3.5rem;
        margin-bottom: var(--space-xl);
      }
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-hero-desc {
      color: var(--color-text-secondary);
      font-size: 1rem;
      line-height: 1.6;
      margin-bottom: var(--space-lg);
      max-width: 600px;
    }

    @media (min-width: 768px) {
      .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-hero-desc {
        font-size: 1.125rem;
        margin-bottom: var(--space-xl);
      }
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: var(--radius-lg);
      margin-top: var(--space-lg);
      object-fit: cover;
      box-shadow: var(--shadow-md);
    }

    @media (min-width: 768px) {
      .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-hero-image {
        margin-top: var(--space-xl);
        box-shadow: var(--shadow-lg);
      }
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-content-section {
      padding: 3rem 0;
    }

    @media (min-width: 768px) {
      .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-content-section {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-content-section {
        padding: 5rem 0;
      }
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-content-intro {
      background: var(--color-bg-primary);
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-content-intro h2 {
      color: var(--color-text-primary);
      margin-bottom: var(--space-md);
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-content-intro p {
      color: var(--color-text-secondary);
      line-height: 1.8;
      margin-bottom: var(--space-md);
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-content-intro-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: var(--radius-lg);
      margin: var(--space-lg) 0;
      object-fit: cover;
      box-shadow: var(--shadow-md);
    }

    @media (min-width: 768px) {
      .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-content-intro-image {
        margin: var(--space-xl) 0;
        box-shadow: var(--shadow-lg);
      }
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-content-1 {
      background: var(--color-bg-tertiary);
      padding: 3rem 0;
    }

    @media (min-width: 768px) {
      .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-content-1 {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-content-1 {
        padding: 5rem 0;
      }
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-content-1 h2 {
      color: var(--color-text-primary);
      margin-bottom: var(--space-md);
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-content-1 p {
      color: var(--color-text-secondary);
      line-height: 1.8;
      margin-bottom: var(--space-md);
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-content-1 ul {
      color: var(--color-text-secondary);
      margin-bottom: var(--space-lg);
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-content-1 li {
      color: var(--color-text-secondary);
      margin-bottom: var(--space-sm);
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-content-1-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: var(--radius-lg);
      margin: var(--space-lg) 0;
      object-fit: cover;
      box-shadow: var(--shadow-md);
    }

    @media (min-width: 768px) {
      .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-content-1-image {
        margin: var(--space-xl) 0;
        box-shadow: var(--shadow-lg);
      }
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-content-2 {
      background: var(--color-bg-primary);
      padding: 3rem 0;
    }

    @media (min-width: 768px) {
      .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-content-2 {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-content-2 {
        padding: 5rem 0;
      }
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-content-2 h2 {
      color: var(--color-text-primary);
      margin-bottom: var(--space-md);
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-content-2 p {
      color: var(--color-text-secondary);
      line-height: 1.8;
      margin-bottom: var(--space-md);
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-content-2-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: var(--radius-lg);
      margin: var(--space-lg) 0;
      object-fit: cover;
      box-shadow: var(--shadow-md);
    }

    @media (min-width: 768px) {
      .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-content-2-image {
        margin: var(--space-xl) 0;
        box-shadow: var(--shadow-lg);
      }
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-content-3 {
      background: var(--color-bg-tertiary);
      padding: 3rem 0;
    }

    @media (min-width: 768px) {
      .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-content-3 {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-content-3 {
        padding: 5rem 0;
      }
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-content-3 h2 {
      color: var(--color-text-primary);
      margin-bottom: var(--space-md);
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-content-3 p {
      color: var(--color-text-secondary);
      line-height: 1.8;
      margin-bottom: var(--space-md);
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-highlight-box {
      background: #dbeafe;
      border-left: 4px solid var(--color-primary);
      padding: 1.5rem;
      border-radius: var(--radius-md);
      margin: var(--space-lg) 0;
    }

    @media (min-width: 768px) {
      .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-highlight-box {
        padding: 2rem;
        margin: var(--space-xl) 0;
      }
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-highlight-box p {
      color: #1e40af;
      margin-bottom: 0;
      font-weight: 500;
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-content-3-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: var(--radius-lg);
      margin: var(--space-lg) 0;
      object-fit: cover;
      box-shadow: var(--shadow-md);
    }

    @media (min-width: 768px) {
      .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-content-3-image {
        margin: var(--space-xl) 0;
        box-shadow: var(--shadow-lg);
      }
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-disclaimer {
      background: var(--color-bg-primary);
      padding: 3rem 0;
    }

    @media (min-width: 768px) {
      .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-disclaimer {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-disclaimer {
        padding: 5rem 0;
      }
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-disclaimer-content {
      background: #f0f4f8;
      border-radius: var(--radius-lg);
      padding: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-disclaimer-content {
        padding: 2rem;
      }
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-disclaimer-title {
      color: var(--color-text-primary);
      font-weight: 600;
      margin-bottom: var(--space-sm);
      display: flex;
      align-items: center;
      gap: var(--space-sm);
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-disclaimer-title .fas {
      color: var(--color-primary);
      font-size: 1.25rem;
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-disclaimer-text {
      color: var(--color-text-secondary);
      font-size: 0.9375rem;
      line-height: 1.7;
      margin-bottom: 0;
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-related {
      background: var(--color-bg-tertiary);
      padding: 3rem 0;
    }

    @media (min-width: 768px) {
      .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-related {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-related {
        padding: 5rem 0;
      }
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-related-title {
      color: var(--color-text-primary);
      margin-bottom: var(--space-lg);
      font-size: 1.75rem;
    }

    @media (min-width: 768px) {
      .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-related-title {
        font-size: 2rem;
        margin-bottom: var(--space-xl);
      }
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-related-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
      }
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-related-card {
      background: var(--color-bg-card);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-related-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-related-card h3 {
      color: var(--color-text-primary);
      padding: 1.5rem;
      margin-bottom: 0;
      font-size: 1.25rem;
    }

    @media (min-width: 768px) {
      .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-related-card h3 {
        padding: 2rem;
        font-size: 1.375rem;
      }
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-related-card-desc {
      color: var(--color-text-secondary);
      font-size: 0.9375rem;
      line-height: 1.6;
      padding: 0 1.5rem 1.5rem 1.5rem;
      flex-grow: 1;
    }

    @media (min-width: 768px) {
      .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-related-card-desc {
        padding: 0 2rem 2rem 2rem;
      }
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-related-card-link {
      display: inline-flex;
      align-items: center;
      gap: var(--space-sm);
      color: var(--color-primary);
      font-weight: 600;
      padding: 0 1.5rem 1.5rem 1.5rem;
      text-decoration: none;
    }

    @media (min-width: 768px) {
      .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-related-card-link {
        padding: 0 2rem 2rem 2rem;
      }
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-related-card-link:hover {
      color: var(--color-primary-hover);
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-related-card-link .fas {
      font-size: 0.875rem;
      transition: transform 0.3s ease;
    }

    .post-vermoegensschutz-nachlassplanung .vermoegensschutz-nachlassplanung-related-card-link:hover .fas {
      transform: translateX(4px);
    }

.post-langfristige-investitionsstrategien {
      background: var(--color-bg-primary);
      color: var(--color-text-primary);
    }

    .post-langfristige-investitionsstrategien .container {
      padding: 0 20px;
    }

    .langfristige-investitionsstrategien-breadcrumbs {
      padding: 1.5rem 0 1rem 0;
      font-size: 0.875rem;
    }

    @media (min-width: 768px) {
      .langfristige-investitionsstrategien-breadcrumbs {
        padding: 2rem 0 1.5rem 0;
        font-size: 0.9375rem;
      }
    }

    .langfristige-investitionsstrategien-breadcrumbs a {
      color: var(--color-primary);
      transition: color 0.3s ease;
    }

    .langfristige-investitionsstrategien-breadcrumbs a:hover {
      color: var(--color-primary-hover);
    }

    .langfristige-investitionsstrategien-breadcrumbs span {
      color: var(--color-text-muted);
      margin: 0 0.5rem;
    }

    .langfristige-investitionsstrategien-hero {
      padding: 3rem 0 2rem 0;
      background: var(--color-bg-primary);
    }

    @media (min-width: 768px) {
      .langfristige-investitionsstrategien-hero {
        padding: 4rem 0 3rem 0;
      }
    }

    @media (min-width: 1024px) {
      .langfristige-investitionsstrategien-hero {
        padding: 5rem 0 4rem 0;
      }
    }

    .langfristige-investitionsstrategien-hero h1 {
      color: var(--color-text-primary);
      margin-bottom: 1rem;
      line-height: 1.2;
    }

    @media (min-width: 1024px) {
      .langfristige-investitionsstrategien-hero h1 {
        margin-bottom: 1.5rem;
      }
    }

    .langfristige-investitionsstrategien-hero-meta {
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
      margin-bottom: 2rem;
      color: var(--color-text-secondary);
      font-size: 0.9375rem;
    }

    @media (min-width: 768px) {
      .langfristige-investitionsstrategien-hero-meta {
        flex-direction: row;
        align-items: center;
        gap: 1.5rem;
        margin-bottom: 2.5rem;
        font-size: 1rem;
      }
    }

    .langfristige-investitionsstrategien-hero-image {
      width: 100%;
      height: 280px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      margin-bottom: 1.5rem;
      background: var(--color-bg-secondary);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    @media (min-width: 768px) {
      .langfristige-investitionsstrategien-hero-image {
        height: 350px;
        margin-bottom: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .langfristige-investitionsstrategien-hero-image {
        height: 420px;
        margin-bottom: 2.5rem;
      }
    }

    .langfristige-investitionsstrategien-hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .langfristige-investitionsstrategien-lead {
      font-size: 1.125rem;
      line-height: 1.8;
      color: var(--color-text-secondary);
      max-width: 700px;
    }

    @media (min-width: 768px) {
      .langfristige-investitionsstrategien-lead {
        font-size: 1.25rem;
      }
    }

    .langfristige-investitionsstrategien-content {
      padding: 0 0 3rem 0;
    }

    @media (min-width: 768px) {
      .langfristige-investitionsstrategien-content {
        padding: 0 0 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .langfristige-investitionsstrategien-content {
        padding: 0 0 5rem 0;
      }
    }

    .langfristige-investitionsstrategien-section {
      margin-bottom: 3rem;
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .langfristige-investitionsstrategien-section {
        margin-bottom: 4rem;
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .langfristige-investitionsstrategien-section {
        margin-bottom: 5rem;
        gap: 2.5rem;
      }
    }

    .langfristige-investitionsstrategien-section h2 {
      color: var(--color-text-primary);
      margin-bottom: 0;
    }

    .langfristige-investitionsstrategien-section-image {
      width: 100%;
      height: 300px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: var(--color-bg-secondary);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    @media (min-width: 768px) {
      .langfristige-investitionsstrategien-section-image {
        height: 350px;
      }
    }

    @media (min-width: 1024px) {
      .langfristige-investitionsstrategien-section-image {
        height: 400px;
      }
    }

    .langfristige-investitionsstrategien-section-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .langfristige-investitionsstrategien-text-block {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    @media (min-width: 768px) {
      .langfristige-investitionsstrategien-text-block {
        gap: 1.25rem;
      }
    }

    .langfristige-investitionsstrategien-text-block p {
      color: var(--color-text-secondary);
      margin-bottom: 0;
      line-height: 1.8;
    }

    .langfristige-investitionsstrategien-highlight {
      background: #dbeafe;
      border-left: 4px solid var(--color-primary);
      padding: 1.25rem 1.5rem;
      border-radius: var(--radius-md);
      margin: 1.5rem 0;
    }

    @media (min-width: 768px) {
      .langfristige-investitionsstrategien-highlight {
        padding: 1.5rem 2rem;
        margin: 2rem 0;
      }
    }

    .langfristige-investitionsstrategien-highlight p {
      color: #1e40af;
      margin-bottom: 0;
      font-weight: 500;
    }

    .langfristige-investitionsstrategien-quote {
      border-left: 4px solid var(--color-primary);
      padding: 1.5rem 1.5rem 1.5rem 2rem;
      background: var(--color-bg-secondary);
      border-radius: var(--radius-md);
      margin: 2rem 0;
      font-style: italic;
      color: var(--color-text-primary);
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .langfristige-investitionsstrategien-quote {
        padding: 2rem 2rem 2rem 2.5rem;
        margin: 2.5rem 0;
      }
    }

    .langfristige-investitionsstrategien-list {
      list-style: none;
      padding: 0;
      display: flex;
      flex-direction: column;
      gap: 0.75rem;
    }

    @media (min-width: 768px) {
      .langfristige-investitionsstrategien-list {
        gap: 1rem;
      }
    }

    .langfristige-investitionsstrategien-list li {
      display: flex;
      gap: 1rem;
      color: var(--color-text-secondary);
      line-height: 1.7;
      margin: 0;
    }

    .langfristige-investitionsstrategien-list li::before {
      content: "";
      color: var(--color-primary);
      font-weight: bold;
      flex-shrink: 0;
      min-width: 1.5rem;
    }

    .langfristige-investitionsstrategien-disclaimer {
      background: #f1f5f9;
      border: 1px solid #e2e8f0;
      border-radius: var(--radius-lg);
      padding: 1.5rem 1.5rem;
      margin: 3rem 0;
    }

    @media (min-width: 768px) {
      .langfristige-investitionsstrategien-disclaimer {
        padding: 2rem 2rem;
        margin: 4rem 0;
      }
    }

    .langfristige-investitionsstrategien-disclaimer-title {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      color: var(--color-text-primary);
      font-weight: 600;
      margin-bottom: 1rem;
      font-size: 1rem;
    }

    .langfristige-investitionsstrategien-disclaimer-title::before {
      content: "";
      font-size: 1.25rem;
      flex-shrink: 0;
    }

    .langfristige-investitionsstrategien-disclaimer p {
      color: var(--color-text-secondary);
      margin: 0;
      font-size: 0.9375rem;
      line-height: 1.7;
    }

    .langfristige-investitionsstrategien-related {
      padding: 3rem 0;
      border-top: 1px solid #e2e8f0;
    }

    @media (min-width: 768px) {
      .langfristige-investitionsstrategien-related {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .langfristige-investitionsstrategien-related {
        padding: 5rem 0;
      }
    }

    .langfristige-investitionsstrategien-related h2 {
      color: var(--color-text-primary);
      margin-bottom: 2rem;
    }

    @media (min-width: 768px) {
      .langfristige-investitionsstrategien-related h2 {
        margin-bottom: 2.5rem;
      }
    }

    .langfristige-investitionsstrategien-related-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .langfristige-investitionsstrategien-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .langfristige-investitionsstrategien-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
      }
    }

    .langfristige-investitionsstrategien-related-card {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding: 1.5rem;
      background: var(--color-bg-card);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
      text-decoration: none;
    }

    @media (min-width: 768px) {
      .langfristige-investitionsstrategien-related-card {
        padding: 1.75rem;
        gap: 1.25rem;
      }
    }

    @media (min-width: 1024px) {
      .langfristige-investitionsstrategien-related-card {
        padding: 2rem;
        gap: 1.5rem;
      }
    }

    .langfristige-investitionsstrategien-related-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }

    .langfristige-investitionsstrategien-related-card h3 {
      color: var(--color-text-primary);
      margin: 0;
      line-height: 1.3;
    }

    .langfristige-investitionsstrategien-related-card p {
      color: var(--color-text-secondary);
      margin: 0;
      font-size: 0.9375rem;
      line-height: 1.6;
    }

    .langfristige-investitionsstrategien-back-link {
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
      color: var(--color-primary);
      text-decoration: none;
      font-size: 0.9375rem;
      font-weight: 500;
      transition: all 0.3s ease;
    }

    .langfristige-investitionsstrategien-back-link:hover {
      color: var(--color-primary-hover);
      transform: translateX(-3px);
    }

    @media (min-width: 768px) {
      .langfristige-investitionsstrategien-back-link {
        font-size: 1rem;
      }
    }

    .langfristige-investitionsstrategien-two-column {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 1024px) {
      .langfristige-investitionsstrategien-two-column {
        flex-direction: row;
        gap: 2.5rem;
        align-items: flex-start;
      }
    }

    .langfristige-investitionsstrategien-two-column-text {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    @media (min-width: 768px) {
      .langfristige-investitionsstrategien-two-column-text {
        gap: 1.25rem;
      }
    }

    @media (min-width: 1024px) {
      .langfristige-investitionsstrategien-two-column-text {
        gap: 1.5rem;
      }
    }

    .langfristige-investitionsstrategien-two-column-image {
      flex: 1;
      width: 100%;
      height: 300px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: var(--color-bg-secondary);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    @media (min-width: 768px) {
      .langfristige-investitionsstrategien-two-column-image {
        height: 350px;
      }
    }

    @media (min-width: 1024px) {
      .langfristige-investitionsstrategien-two-column-image {
        height: 400px;
      }
    }

    .langfristige-investitionsstrategien-two-column-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

.post-nachrichtengetriebenes-handeln-ereignisse {
  width: 100%;
}

.nachrichtengetriebenes-handeln-ereignisse-breadcrumbs-section {
  background: var(--color-bg-secondary);
  padding: 1.5rem 0;
}

@media (min-width: 768px) {
  .nachrichtengetriebenes-handeln-ereignisse-breadcrumbs-section {
    padding: 2rem 0;
  }
}

.nachrichtengetriebenes-handeln-ereignisse-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .nachrichtengetriebenes-handeln-ereignisse-breadcrumbs {
    font-size: 1rem;
  }
}

.nachrichtengetriebenes-handeln-ereignisse-breadcrumbs a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.nachrichtengetriebenes-handeln-ereignisse-breadcrumbs a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.nachrichtengetriebenes-handeln-ereignisse-breadcrumbs span {
  color: var(--color-text-muted);
}

.nachrichtengetriebenes-handeln-ereignisse-hero {
  background: var(--color-bg-primary);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .nachrichtengetriebenes-handeln-ereignisse-hero {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .nachrichtengetriebenes-handeln-ereignisse-hero {
    padding: 6rem 0;
  }
}

.nachrichtengetriebenes-handeln-ereignisse-hero-deco-1 {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.nachrichtengetriebenes-handeln-ereignisse-hero-deco-2 {
  position: absolute;
  bottom: 50px;
  left: -150px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.nachrichtengetriebenes-handeln-ereignisse-hero-deco-3 {
  position: absolute;
  top: 100px;
  left: 10%;
  width: 280px;
  height: 280px;
  background: rgba(37, 99, 235, 0.04);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.nachrichtengetriebenes-handeln-ereignisse-hero-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 1024px) {
  .nachrichtengetriebenes-handeln-ereignisse-hero-content {
    flex-direction: row;
    align-items: flex-start;
    gap: 4rem;
  }
}

.nachrichtengetriebenes-handeln-ereignisse-hero-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 1024px) {
  .nachrichtengetriebenes-handeln-ereignisse-hero-text {
    gap: 2rem;
  }
}

.post-nachrichtengetriebenes-handeln-ereignisse .nachrichtengetriebenes-handeln-ereignisse-hero h1 {
  color: var(--color-text-primary);
  margin-bottom: 0;
}

.nachrichtengetriebenes-handeln-ereignisse-lead {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .nachrichtengetriebenes-handeln-ereignisse-lead {
    font-size: 1.125rem;
  }
}

.nachrichtengetriebenes-handeln-ereignisse-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .nachrichtengetriebenes-handeln-ereignisse-meta {
    font-size: 1rem;
  }
}

.nachrichtengetriebenes-handeln-ereignisse-hero-image {
  flex: 1;
  width: 100%;
}

@media (min-width: 1024px) {
  .nachrichtengetriebenes-handeln-ereignisse-hero-image {
    width: auto;
  }
}

.nachrichtengetriebenes-handeln-ereignisse-featured-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.nachrichtengetriebenes-handeln-ereignisse-introduction {
  background: var(--color-bg-secondary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .nachrichtengetriebenes-handeln-ereignisse-introduction {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .nachrichtengetriebenes-handeln-ereignisse-introduction {
    padding: 6rem 0;
  }
}

.nachrichtengetriebenes-handeln-ereignisse-intro-content {
  max-width: 800px;
  margin: 0 auto;
}

.post-nachrichtengetriebenes-handeln-ereignisse .nachrichtengetriebenes-handeln-ereignisse-intro-content p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .post-nachrichtengetriebenes-handeln-ereignisse .nachrichtengetriebenes-handeln-ereignisse-intro-content p {
    font-size: 1rem;
  }
}

.nachrichtengetriebenes-handeln-ereignisse-highlight-box {
  background: var(--color-bg-primary);
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  margin: 2rem 0;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .nachrichtengetriebenes-handeln-ereignisse-highlight-box {
    padding: 2rem;
    margin: 2.5rem 0;
  }
}

.post-nachrichtengetriebenes-handeln-ereignisse .nachrichtengetriebenes-handeln-ereignisse-highlight-box p {
  color: var(--color-text-primary);
  margin-bottom: 0;
}

.nachrichtengetriebenes-handeln-ereignisse-content-image {
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .nachrichtengetriebenes-handeln-ereignisse-content-image {
    margin: 2.5rem 0;
  }
}

.nachrichtengetriebenes-handeln-ereignisse-section-image {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.nachrichtengetriebenes-handeln-ereignisse-types {
  background: var(--color-bg-primary);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .nachrichtengetriebenes-handeln-ereignisse-types {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .nachrichtengetriebenes-handeln-ereignisse-types {
    padding: 6rem 0;
  }
}

.nachrichtengetriebenes-handeln-ereignisse-types-deco-1 {
  position: absolute;
  top: 50%;
  right: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(100px);
  z-index: 1;
  pointer-events: none;
  transform: translateY(-50%);
}

.post-nachrichtengetriebenes-handeln-ereignisse .nachrichtengetriebenes-handeln-ereignisse-types h2 {
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .post-nachrichtengetriebenes-handeln-ereignisse .nachrichtengetriebenes-handeln-ereignisse-types h2 {
    margin-bottom: 1.5rem;
  }
}

.nachrichtengetriebenes-handeln-ereignisse-types-content > p {
  color: var(--color-text-secondary);
  text-align: center;
  margin-bottom: 2rem;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .nachrichtengetriebenes-handeln-ereignisse-types-content > p {
    margin-bottom: 2.5rem;
  }
}

.nachrichtengetriebenes-handeln-ereignisse-event-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 10;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .nachrichtengetriebenes-handeln-ereignisse-event-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .nachrichtengetriebenes-handeln-ereignisse-event-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.nachrichtengetriebenes-handeln-ereignisse-event-card {
  background: var(--color-bg-secondary);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .nachrichtengetriebenes-handeln-ereignisse-event-card {
    padding: 2rem;
  }
}

.nachrichtengetriebenes-handeln-ereignisse-event-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--color-primary);
}

.post-nachrichtengetriebenes-handeln-ereignisse .nachrichtengetriebenes-handeln-ereignisse-event-card h3 {
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.post-nachrichtengetriebenes-handeln-ereignisse .nachrichtengetriebenes-handeln-ereignisse-event-card p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-nachrichtengetriebenes-handeln-ereignisse .nachrichtengetriebenes-handeln-ereignisse-event-card p {
    font-size: 1rem;
  }
}

.nachrichtengetriebenes-handeln-ereignisse-strategies {
  background: var(--color-bg-secondary);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .nachrichtengetriebenes-handeln-ereignisse-strategies {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .nachrichtengetriebenes-handeln-ereignisse-strategies {
    padding: 6rem 0;
  }
}

.nachrichtengetriebenes-handeln-ereignisse-strategies-deco-1 {
  position: absolute;
  top: -100px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.post-nachrichtengetriebenes-handeln-ereignisse .nachrichtengetriebenes-handeln-ereignisse-strategies h2 {
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .post-nachrichtengetriebenes-handeln-ereignisse .nachrichtengetriebenes-handeln-ereignisse-strategies h2 {
    margin-bottom: 1.5rem;
  }
}

.nachrichtengetriebenes-handeln-ereignisse-strategies-content > p {
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .nachrichtengetriebenes-handeln-ereignisse-strategies-content > p {
    margin-bottom: 2.5rem;
  }
}

.nachrichtengetriebenes-handeln-ereignisse-strategy-block {
  background: var(--color-bg-primary);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 10;
  border: 1px solid #e2e8f0;
}

@media (min-width: 768px) {
  .nachrichtengetriebenes-handeln-ereignisse-strategy-block {
    padding: 2rem;
    margin-bottom: 2rem;
  }
}

.post-nachrichtengetriebenes-handeln-ereignisse .nachrichtengetriebenes-handeln-ereignisse-strategy-block h3 {
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.post-nachrichtengetriebenes-handeln-ereignisse .nachrichtengetriebenes-handeln-ereignisse-strategy-block p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .post-nachrichtengetriebenes-handeln-ereignisse .nachrichtengetriebenes-handeln-ereignisse-strategy-block p {
    font-size: 1rem;
  }
}

.post-nachrichtengetriebenes-handeln-ereignisse .nachrichtengetriebenes-handeln-ereignisse-strategy-block p:last-child {
  margin-bottom: 0;
}

.nachrichtengetriebenes-handeln-ereignisse-quote-section {
  background: var(--color-bg-primary);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .nachrichtengetriebenes-handeln-ereignisse-quote-section {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .nachrichtengetriebenes-handeln-ereignisse-quote-section {
    padding: 5rem 0;
  }
}

.nachrichtengetriebenes-handeln-ereignisse-quote-deco-1 {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: rgba(37, 99, 235, 0.04);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.nachrichtengetriebenes-handeln-ereignisse-quote-deco-2 {
  position: absolute;
  bottom: -50px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.nachrichtengetriebenes-handeln-ereignisse-quote {
  max-width: 700px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--color-bg-secondary);
  border-left: 5px solid var(--color-primary);
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 10;
  text-align: center;
}

@media (min-width: 768px) {
  .nachrichtengetriebenes-handeln-ereignisse-quote {
    padding: 2.5rem 3rem;
  }
}

.post-nachrichtengetriebenes-handeln-ereignisse .nachrichtengetriebenes-handeln-ereignisse-quote p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--color-text-primary);
  font-style: italic;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-nachrichtengetriebenes-handeln-ereignisse .nachrichtengetriebenes-handeln-ereignisse-quote p {
    font-size: 1.25rem;
  }
}

.nachrichtengetriebenes-handeln-ereignisse-quote-attribution {
  font-size: 0.9rem;
  color: var(--color-text-secondary);
  font-style: normal;
  margin-top: 1rem;
}

@media (min-width: 768px) {
  .nachrichtengetriebenes-handeln-ereignisse-quote-attribution {
    font-size: 1rem;
    margin-top: 1.25rem;
  }
}

.nachrichtengetriebenes-handeln-ereignisse-risk-management {
  background: var(--color-bg-secondary);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .nachrichtengetriebenes-handeln-ereignisse-risk-management {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .nachrichtengetriebenes-handeln-ereignisse-risk-management {
    padding: 6rem 0;
  }
}

.nachrichtengetriebenes-handeln-ereignisse-risk-deco-1 {
  position: absolute;
  top: 50%;
  right: -200px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
  transform: translateY(-50%);
}

.post-nachrichtengetriebenes-handeln-ereignisse .nachrichtengetriebenes-handeln-ereignisse-risk-management h2 {
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .post-nachrichtengetriebenes-handeln-ereignisse .nachrichtengetriebenes-handeln-ereignisse-risk-management h2 {
    margin-bottom: 1.5rem;
  }
}

.nachrichtengetriebenes-handeln-ereignisse-risk-content > p {
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .nachrichtengetriebenes-handeln-ereignisse-risk-content > p {
    margin-bottom: 2.5rem;
  }
}

.nachrichtengetriebenes-handeln-ereignisse-risk-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 10;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .nachrichtengetriebenes-handeln-ereignisse-risk-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
  }
}

.nachrichtengetriebenes-handeln-ereignisse-risk-item {
  background: var(--color-bg-primary);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
}

@media (min-width: 768px) {
  .nachrichtengetriebenes-handeln-ereignisse-risk-item {
    padding: 2rem;
  }
}

.post-nachrichtengetriebenes-handeln-ereignisse .nachrichtengetriebenes-handeln-ereignisse-risk-item h4 {
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.post-nachrichtengetriebenes-handeln-ereignisse .nachrichtengetriebenes-handeln-ereignisse-risk-item p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-nachrichtengetriebenes-handeln-ereignisse .nachrichtengetriebenes-handeln-ereignisse-risk-item p {
    font-size: 1rem;
  }
}

.nachrichtengetriebenes-handeln-ereignisse-tools {
  background: var(--color-bg-primary);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .nachrichtengetriebenes-handeln-ereignisse-tools {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .nachrichtengetriebenes-handeln-ereignisse-tools {
    padding: 6rem 0;
  }
}

.nachrichtengetriebenes-handeln-ereignisse-tools-deco-1 {
  position: absolute;
  top: -100px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.nachrichtengetriebenes-handeln-ereignisse-tools-deco-2 {
  position: absolute;
  bottom: 50px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: rgba(37, 99, 235, 0.04);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  z-index: 1;
  pointer-events: none;
}

.post-nachrichtengetriebenes-handeln-ereignisse .nachrichtengetriebenes-handeln-ereignisse-tools h2 {
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .post-nachrichtengetriebenes-handeln-ereignisse .nachrichtengetriebenes-handeln-ereignisse-tools h2 {
    margin-bottom: 1.5rem;
  }
}

.nachrichtengetriebenes-handeln-ereignisse-tools-content > p {
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .nachrichtengetriebenes-handeln-ereignisse-tools-content > p {
    margin-bottom: 2.5rem;
  }
}

.nachrichtengetriebenes-handeln-ereignisse-tools-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .nachrichtengetriebenes-handeln-ereignisse-tools-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .nachrichtengetriebenes-handeln-ereignisse-tools-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.nachrichtengetriebenes-handeln-ereignisse-tool-item {
  background: var(--color-bg-secondary);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .nachrichtengetriebenes-handeln-ereignisse-tool-item {
    padding: 2rem;
  }
}

.nachrichtengetriebenes-handeln-ereignisse-tool-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.post-nachrichtengetriebenes-handeln-ereignisse .nachrichtengetriebenes-handeln-ereignisse-tool-item h3 {
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

.post-nachrichtengetriebenes-handeln-ereignisse .nachrichtengetriebenes-handeln-ereignisse-tool-item p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-nachrichtengetriebenes-handeln-ereignisse .nachrichtengetriebenes-handeln-ereignisse-tool-item p {
    font-size: 1rem;
  }
}

.nachrichtengetriebenes-handeln-ereignisse-disclaimer-section {
  background: var(--color-bg-secondary);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .nachrichtengetriebenes-handeln-ereignisse-disclaimer-section {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .nachrichtengetriebenes-handeln-ereignisse-disclaimer-section {
    padding: 5rem 0;
  }
}

.nachrichtengetriebenes-handeln-ereignisse-disclaimer-deco-1 {
  position: absolute;
  top: 50%;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
  transform: translateY(-50%);
}

.nachrichtengetriebenes-handeln-ereignisse-disclaimer {
  max-width: 800px;
  margin: 0 auto;
  background: #fff5f5;
  border-left: 4px solid #ef4444;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .nachrichtengetriebenes-handeln-ereignisse-disclaimer {
    padding: 2rem;
  }
}

.post-nachrichtengetriebenes-handeln-ereignisse .nachrichtengetriebenes-handeln-ereignisse-disclaimer h2 {
  color: #991b1b;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

@media (min-width: 768px) {
  .post-nachrichtengetriebenes-handeln-ereignisse .nachrichtengetriebenes-handeln-ereignisse-disclaimer h2 {
    font-size: 1.75rem;
  }
}

.post-nachrichtengetriebenes-handeln-ereignisse .nachrichtengetriebenes-handeln-ereignisse-disclaimer p {
  color: #7f1d1d;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .post-nachrichtengetriebenes-handeln-ereignisse .nachrichtengetriebenes-handeln-ereignisse-disclaimer p {
    font-size: 1rem;
  }
}

.post-nachrichtengetriebenes-handeln-ereignisse .nachrichtengetriebenes-handeln-ereignisse-disclaimer p:last-child {
  margin-bottom: 0;
}

.nachrichtengetriebenes-handeln-ereignisse-related {
  background: var(--color-bg-primary);
  padding: 3rem 0;
  position: relative;
  overflow: hidden;
}

@media (min-width: 768px) {
  .nachrichtengetriebenes-handeln-ereignisse-related {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .nachrichtengetriebenes-handeln-ereignisse-related {
    padding: 6rem 0;
  }
}

.nachrichtengetriebenes-handeln-ereignisse-related-deco-1 {
  position: absolute;
  top: -100px;
  right: -150px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  filter: blur(90px);
  z-index: 1;
  pointer-events: none;
}

.post-nachrichtengetriebenes-handeln-ereignisse .nachrichtengetriebenes-handeln-ereignisse-related h2 {
  color: var(--color-text-primary);
  text-align: center;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .post-nachrichtengetriebenes-handeln-ereignisse .nachrichtengetriebenes-handeln-ereignisse-related h2 {
    margin-bottom: 2.5rem;
  }
}

.nachrichtengetriebenes-handeln-ereignisse-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  position: relative;
  z-index: 10;
}

@media (min-width: 768px) {
  .nachrichtengetriebenes-handeln-ereignisse-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.nachrichtengetriebenes-handeln-ereignisse-related-card {
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nachrichtengetriebenes-handeln-ereignisse-related-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.nachrichtengetriebenes-handeln-ereignisse-related-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.nachrichtengetriebenes-handeln-ereignisse-related-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.nachrichtengetriebenes-handeln-ereignisse-related-card:hover .nachrichtengetriebenes-handeln-ereignisse-related-image img {
  transform: scale(1.05);
}

.post-nachrichtengetriebenes-handeln-ereignisse .nachrichtengetriebenes-handeln-ereignisse-related-card h3 {
  color: var(--color-text-primary);
  padding: 1.5rem 1.5rem 0.75rem;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .post-nachrichtengetriebenes-handeln-ereignisse .nachrichtengetriebenes-handeln-ereignisse-related-card h3 {
    padding: 1.5rem 1.5rem 0.75rem;
  }
}

.post-nachrichtengetriebenes-handeln-ereignisse .nachrichtengetriebenes-handeln-ereignisse-related-card p {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  padding: 0 1.5rem;
  margin-bottom: 0;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .post-nachrichtengetriebenes-handeln-ereignisse .nachrichtengetriebenes-handeln-ereignisse-related-card p {
    font-size: 0.95rem;
    padding: 0 1.5rem;
  }
}

.nachrichtengetriebenes-handeln-ereignisse-read-more {
  color: var(--color-primary);
  padding: 1.5rem;
  font-weight: 600;
  display: inline-block;
  transition: color 0.3s ease;
  text-decoration: none;
}

.nachrichtengetriebenes-handeln-ereignisse-read-more:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

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

.post-swing-trading-positionshandel {
  width: 100%;
}

.post-swing-trading-positionshandel section {
  position: relative;
  overflow: hidden;
}

.swing-trading-positionshandel-breadcrumbs {
  background: #ffffff;
  padding: 1.5rem 0;
}

@media (min-width: 768px) {
  .swing-trading-positionshandel-breadcrumbs {
    padding: 2rem 0;
  }
}

.swing-trading-positionshandel-breadcrumb-content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #64748b;
}

.swing-trading-positionshandel-breadcrumb-content a {
  color: #2563eb;
  text-decoration: none;
  transition: color 0.3s ease;
}

.swing-trading-positionshandel-breadcrumb-content a:hover {
  color: #1d4ed8;
}

.swing-trading-positionshandel-separator {
  color: #cbd5e1;
}

.swing-trading-positionshandel-current {
  color: #1e293b;
  font-weight: 600;
}

.swing-trading-positionshandel-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1a2b4a 100%);
  padding: 4rem 0;
  position: relative;
}

@media (min-width: 768px) {
  .swing-trading-positionshandel-hero {
    padding: 6rem 0;
  }
}

@media (min-width: 1024px) {
  .swing-trading-positionshandel-hero {
    padding: 8rem 0;
  }
}

.swing-trading-positionshandel-hero-glow-1 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  top: -100px;
  left: -200px;
  z-index: 1;
  pointer-events: none;
}

.swing-trading-positionshandel-hero-glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
  filter: blur(70px);
  bottom: -50px;
  right: -100px;
  z-index: 1;
  pointer-events: none;
}

.swing-trading-positionshandel-hero-shape-1 {
  position: absolute;
  width: 300px;
  height: 350px;
  background: rgba(139, 92, 246, 0.08);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  top: 10%;
  right: 5%;
  z-index: 2;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

.swing-trading-positionshandel-hero-shape-2 {
  position: absolute;
  width: 250px;
  height: 280px;
  background: rgba(34, 211, 238, 0.07);
  border-radius: 30% 70% 40% 60% / 70% 30% 60% 40%;
  bottom: 15%;
  left: 10%;
  z-index: 2;
  pointer-events: none;
  animation: float 8s ease-in-out infinite reverse;
}

.swing-trading-positionshandel-hero-accent-1 {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(249, 115, 22, 0.06);
  border-radius: 50%;
  top: 20%;
  left: 15%;
  z-index: 1;
  pointer-events: none;
  filter: blur(40px);
}

.swing-trading-positionshandel-hero-accent-2 {
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(236, 72, 153, 0.05);
  border-radius: 50%;
  top: 60%;
  right: 10%;
  z-index: 1;
  pointer-events: none;
  filter: blur(50px);
}

.swing-trading-positionshandel-hero-line {
  position: absolute;
  width: 300px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.3), transparent);
  bottom: 20%;
  left: 10%;
  z-index: 2;
  pointer-events: none;
}

@keyframes float {
  0%, 100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-20px);
  }
}

.swing-trading-positionshandel-hero-content {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .swing-trading-positionshandel-hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.swing-trading-positionshandel-hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .swing-trading-positionshandel-hero-text h1 {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .swing-trading-positionshandel-hero-text h1 {
    font-size: 3.5rem;
  }
}

.swing-trading-positionshandel-hero-lead {
  font-size: 1rem;
  color: #cbd5e1;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .swing-trading-positionshandel-hero-lead {
    font-size: 1.125rem;
  }
}

.swing-trading-positionshandel-hero-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.875rem;
  color: #94a3b8;
}

.swing-trading-positionshandel-hero-meta i {
  font-size: 0.75rem;
  margin-right: 0.35rem;
}

.swing-trading-positionshandel-meta-divider {
  color: #475569;
}

.swing-trading-positionshandel-hero-image {
  position: relative;
  width: 100%;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (min-width: 768px) {
  .swing-trading-positionshandel-hero-image {
    height: 400px;
  }
}

@media (min-width: 1024px) {
  .swing-trading-positionshandel-hero-image {
    height: 450px;
  }
}

.swing-trading-positionshandel-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swing-trading-positionshandel-introduction {
  background: #ffffff;
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .swing-trading-positionshandel-introduction {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .swing-trading-positionshandel-introduction {
    padding: 6rem 0;
  }
}

.swing-trading-positionshandel-intro-paragraph {
  font-size: 1rem;
  color: #64748b;
  line-height: 1.8;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .swing-trading-positionshandel-intro-paragraph {
    font-size: 1.0625rem;
    margin-bottom: 2.5rem;
  }
}

.swing-trading-positionshandel-intro-highlight {
  display: flex;
  gap: 1.5rem;
  background: #f0f9ff;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
}

@media (min-width: 768px) {
  .swing-trading-positionshandel-intro-highlight {
    gap: 2rem;
    padding: 2rem;
  }
}

.swing-trading-positionshandel-highlight-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dbeafe;
  border-radius: 8px;
}

.swing-trading-positionshandel-highlight-icon i {
  font-size: 1.5rem;
  color: #2563eb;
}

.swing-trading-positionshandel-highlight-text h3 {
  font-size: 1.25rem;
  color: #1e293b;
  margin-bottom: 0.5rem;
}

.swing-trading-positionshandel-highlight-text p {
  color: #475569;
  margin-bottom: 0;
  font-size: 0.95rem;
}

.swing-trading-positionshandel-content-1 {
  background: #f8fafc;
  padding: 3rem 0;
  position: relative;
}

@media (min-width: 768px) {
  .swing-trading-positionshandel-content-1 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .swing-trading-positionshandel-content-1 {
    padding: 6rem 0;
  }
}

.swing-trading-positionshandel-content-1-deco-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  filter: blur(60px);
  top: -50px;
  right: -100px;
  z-index: 1;
  pointer-events: none;
}

.swing-trading-positionshandel-content-1-deco-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(34, 211, 238, 0.06);
  border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
  bottom: 10%;
  left: 5%;
  z-index: 2;
  pointer-events: none;
}

.swing-trading-positionshandel-content-1-deco-3 {
  position: absolute;
  width: 2px;
  height: 150px;
  background: linear-gradient(180deg, transparent, rgba(37, 99, 235, 0.2), transparent);
  top: 50%;
  right: 20%;
  z-index: 1;
  pointer-events: none;
}

.swing-trading-positionshandel-content-1-inner {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .swing-trading-positionshandel-content-1-inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.swing-trading-positionshandel-content-1-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .swing-trading-positionshandel-content-1-text h2 {
    font-size: 2.25rem;
  }
}

.swing-trading-positionshandel-content-1-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  color: #1e293b;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .swing-trading-positionshandel-content-1-text h3 {
    font-size: 1.625rem;
  }
}

.swing-trading-positionshandel-content-1-text p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .swing-trading-positionshandel-content-1-text p {
    font-size: 1rem;
  }
}

.swing-trading-positionshandel-content-1-image {
  width: 100%;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .swing-trading-positionshandel-content-1-image {
    height: 400px;
  }
}

.swing-trading-positionshandel-content-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swing-trading-positionshandel-content-2 {
  background: #ffffff;
  padding: 3rem 0;
  position: relative;
}

@media (min-width: 768px) {
  .swing-trading-positionshandel-content-2 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .swing-trading-positionshandel-content-2 {
    padding: 6rem 0;
  }
}

.swing-trading-positionshandel-content-2-deco-1 {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
  filter: blur(70px);
  top: 100px;
  left: -100px;
  z-index: 1;
  pointer-events: none;
}

.swing-trading-positionshandel-content-2-deco-2 {
  position: absolute;
  width: 250px;
  height: 280px;
  background: rgba(6, 182, 212, 0.07);
  border-radius: 70% 30% 60% 40% / 30% 70% 40% 60%;
  bottom: 50px;
  right: 10%;
  z-index: 2;
  pointer-events: none;
}

.swing-trading-positionshandel-content-2-deco-3 {
  position: absolute;
  width: 120px;
  height: 120px;
  background: rgba(249, 115, 22, 0.05);
  border-radius: 50%;
  top: 40%;
  right: 5%;
  z-index: 1;
  pointer-events: none;
  filter: blur(40px);
}

.swing-trading-positionshandel-content-2-deco-4 {
  position: absolute;
  width: 2px;
  height: 200px;
  background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.15), transparent);
  bottom: 30%;
  left: 15%;
  z-index: 1;
  pointer-events: none;
}

.swing-trading-positionshandel-content-2-inner {
  position: relative;
  z-index: 10;
  display: grid;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .swing-trading-positionshandel-content-2-inner {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.swing-trading-positionshandel-content-2-image {
  width: 100%;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  order: -1;
}

@media (min-width: 768px) {
  .swing-trading-positionshandel-content-2-image {
    height: 400px;
    order: 1;
  }
}

@media (min-width: 1024px) {
  .swing-trading-positionshandel-content-2-image {
    order: 1;
  }
}

.swing-trading-positionshandel-content-2-text h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .swing-trading-positionshandel-content-2-text h2 {
    font-size: 2.25rem;
  }
}

.swing-trading-positionshandel-content-2-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.375rem;
  color: #1e293b;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
}

.swing-trading-positionshandel-content-2-text p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .swing-trading-positionshandel-content-2-text p {
    font-size: 1rem;
  }
}

.swing-trading-positionshandel-quote-section {
  background: linear-gradient(135deg, #0f172a 0%, #1a2b4a 100%);
  padding: 3rem 0;
  position: relative;
}

@media (min-width: 768px) {
  .swing-trading-positionshandel-quote-section {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .swing-trading-positionshandel-quote-section {
    padding: 6rem 0;
  }
}

.swing-trading-positionshandel-quote-deco-1 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.12) 0%, transparent 70%);
  filter: blur(70px);
  top: -100px;
  left: 10%;
  z-index: 1;
  pointer-events: none;
}

.swing-trading-positionshandel-quote-deco-2 {
  position: absolute;
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.1) 0%, transparent 70%);
  filter: blur(60px);
  bottom: -50px;
  right: 5%;
  z-index: 1;
  pointer-events: none;
}

.swing-trading-positionshandel-quote-deco-3 {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(236, 72, 153, 0.06);
  border-radius: 50%;
  top: 50%;
  right: 15%;
  z-index: 1;
  pointer-events: none;
  filter: blur(40px);
}

.swing-trading-positionshandel-quote-content {
  position: relative;
  z-index: 10;
}

.swing-trading-positionshandel-quote {
  text-align: center;
  margin: 0;
}

.swing-trading-positionshandel-quote p {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .swing-trading-positionshandel-quote p {
    font-size: 2rem;
  }
}

.swing-trading-positionshandel-quote-footer {
  color: #94a3b8;
  font-size: 0.95rem;
  font-style: italic;
}

.swing-trading-positionshandel-content-3 {
  background: #f8fafc;
  padding: 3rem 0;
  position: relative;
}

@media (min-width: 768px) {
  .swing-trading-positionshandel-content-3 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .swing-trading-positionshandel-content-3 {
    padding: 6rem 0;
  }
}

.swing-trading-positionshandel-content-3-deco-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(34, 211, 238, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  top: -100px;
  right: -150px;
  z-index: 1;
  pointer-events: none;
}

.swing-trading-positionshandel-content-3-deco-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(139, 92, 246, 0.07);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  bottom: 50px;
  left: 5%;
  z-index: 2;
  pointer-events: none;
}

.swing-trading-positionshandel-content-3-deco-3 {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(249, 115, 22, 0.06);
  border-radius: 50%;
  top: 50%;
  left: 20%;
  z-index: 1;
  pointer-events: none;
  filter: blur(50px);
}

.swing-trading-positionshandel-content-3-deco-4 {
  position: absolute;
  width: 2px;
  height: 250px;
  background: linear-gradient(180deg, transparent, rgba(34, 211, 238, 0.2), transparent);
  top: 20%;
  right: 30%;
  z-index: 1;
  pointer-events: none;
}

.swing-trading-positionshandel-content-3-deco-5 {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(236, 72, 153, 0.05);
  border-radius: 50%;
  bottom: 30%;
  right: 10%;
  z-index: 1;
  pointer-events: none;
  filter: blur(45px);
}

.swing-trading-positionshandel-content-3-inner {
  position: relative;
  z-index: 10;
}

.swing-trading-positionshandel-content-3-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .swing-trading-positionshandel-content-3-inner h2 {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
  }
}

.swing-trading-positionshandel-content-3-grid {
  display: grid;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .swing-trading-positionshandel-content-3-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
  }
}

@media (min-width: 1024px) {
  .swing-trading-positionshandel-content-3-grid {
    gap: 2.5rem;
  }
}

.swing-trading-positionshandel-strategy-card {
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .swing-trading-positionshandel-strategy-card {
    padding: 2rem;
  }
}

.swing-trading-positionshandel-strategy-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

.swing-trading-positionshandel-strategy-icon {
  width: 48px;
  height: 48px;
  background: #dbeafe;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.swing-trading-positionshandel-strategy-icon i {
  font-size: 1.5rem;
  color: #2563eb;
}

.swing-trading-positionshandel-strategy-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #1e293b;
  margin-bottom: 0.75rem;
}

.swing-trading-positionshandel-strategy-card p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.swing-trading-positionshandel-content-3-image {
  width: 100%;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .swing-trading-positionshandel-content-3-image {
    height: 400px;
    margin-top: 2.5rem;
  }
}

.swing-trading-positionshandel-content-4 {
  background: #ffffff;
  padding: 3rem 0;
  position: relative;
}

@media (min-width: 768px) {
  .swing-trading-positionshandel-content-4 {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .swing-trading-positionshandel-content-4 {
    padding: 6rem 0;
  }
}

.swing-trading-positionshandel-content-4-deco-1 {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  top: 50px;
  left: -100px;
  z-index: 1;
  pointer-events: none;
}

.swing-trading-positionshandel-content-4-deco-2 {
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(139, 92, 246, 0.07);
  border-radius: 40% 60% 30% 70% / 60% 30% 70% 40%;
  bottom: 10%;
  right: 8%;
  z-index: 2;
  pointer-events: none;
}

.swing-trading-positionshandel-content-4-deco-3 {
  position: absolute;
  width: 2px;
  height: 200px;
  background: linear-gradient(180deg, transparent, rgba(249, 115, 22, 0.15), transparent);
  top: 30%;
  right: 25%;
  z-index: 1;
  pointer-events: none;
}

.swing-trading-positionshandel-content-4-inner {
  position: relative;
  z-index: 10;
}

.swing-trading-positionshandel-content-4-inner h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .swing-trading-positionshandel-content-4-inner h2 {
    font-size: 2.25rem;
  }
}

.swing-trading-positionshandel-content-4-inner > p {
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .swing-trading-positionshandel-content-4-inner > p {
    font-size: 1rem;
    margin-bottom: 2.5rem;
  }
}

.swing-trading-positionshandel-checklist {
  background: #f0f9ff;
  padding: 1.5rem;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .swing-trading-positionshandel-checklist {
    padding: 2rem;
    margin-bottom: 2.5rem;
  }
}

.swing-trading-positionshandel-checklist h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #1e293b;
  margin-bottom: 1rem;
}

.swing-trading-positionshandel-checklist-items {
  list-style: none;
  padding: 0;
  margin: 0;
}

.swing-trading-positionshandel-checklist-items li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.75rem;
  color: #475569;
  font-size: 0.95rem;
  line-height: 1.6;
}

.swing-trading-positionshandel-checklist-items li:last-child {
  margin-bottom: 0;
}

.swing-trading-positionshandel-check-icon {
  flex-shrink: 0;
  color: #10b981;
  font-size: 1.25rem;
  margin-top: 0.1rem;
}

.swing-trading-positionshandel-content-4-image {
  width: 100%;
  height: 350px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .swing-trading-positionshandel-content-4-image {
    height: 400px;
    margin-top: 2.5rem;
  }
}

.swing-trading-positionshandel-disclaimer {
  background: linear-gradient(135deg, #0f172a 0%, #1a2b4a 100%);
  padding: 3rem 0;
  position: relative;
}

@media (min-width: 768px) {
  .swing-trading-positionshandel-disclaimer {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .swing-trading-positionshandel-disclaimer {
    padding: 6rem 0;
  }
}

.swing-trading-positionshandel-disclaimer-deco-1 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
  filter: blur(70px);
  top: -50px;
  right: -100px;
  z-index: 1;
  pointer-events: none;
}

.swing-trading-positionshandel-disclaimer-deco-2 {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(34, 211, 238, 0.08);
  border-radius: 50% 50%;
  bottom: 50px;
  left: 10%;
  z-index: 1;
  pointer-events: none;
  filter: blur(60px);
}

.swing-trading-positionshandel-disclaimer-content {
  position: relative;
  z-index: 10;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .swing-trading-positionshandel-disclaimer-content {
    gap: 2rem;
  }
}

.swing-trading-positionshandel-disclaimer-icon {
  flex-shrink: 0;
  font-size: 1.75rem;
  color: #f59e0b;
  margin-top: 0.25rem;
}

.swing-trading-positionshandel-disclaimer-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.swing-trading-positionshandel-disclaimer-text p {
  color: #cbd5e1;
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .swing-trading-positionshandel-disclaimer-text p {
    font-size: 1rem;
  }
}

.swing-trading-positionshandel-related {
  background: #ffffff;
  padding: 3rem 0;
  position: relative;
}

@media (min-width: 768px) {
  .swing-trading-positionshandel-related {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .swing-trading-positionshandel-related {
    padding: 6rem 0;
  }
}

.swing-trading-positionshandel-related-deco-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  top: -100px;
  right: -150px;
  z-index: 1;
  pointer-events: none;
}

.swing-trading-positionshandel-related-deco-2 {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(34, 211, 238, 0.07);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  bottom: 100px;
  left: 5%;
  z-index: 2;
  pointer-events: none;
}

.swing-trading-positionshandel-related-deco-3 {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(249, 115, 22, 0.06);
  border-radius: 50%;
  top: 40%;
  left: 15%;
  z-index: 1;
  pointer-events: none;
  filter: blur(50px);
}

.swing-trading-positionshandel-related-deco-4 {
  position: absolute;
  width: 2px;
  height: 250px;
  background: linear-gradient(180deg, transparent, rgba(139, 92, 246, 0.15), transparent);
  bottom: 20%;
  right: 20%;
  z-index: 1;
  pointer-events: none;
}

.swing-trading-positionshandel-related-content {
  position: relative;
  z-index: 10;
}

.swing-trading-positionshandel-related-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .swing-trading-positionshandel-related-content h2 {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
  }
}

.swing-trading-positionshandel-related-grid {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .swing-trading-positionshandel-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.swing-trading-positionshandel-related-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .swing-trading-positionshandel-related-card {
    padding: 2rem;
    gap: 1.25rem;
  }
}

.swing-trading-positionshandel-related-card:hover {
  background: #ffffff;
  border-color: #2563eb;
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
  transform: translateY(-4px);
}

.swing-trading-positionshandel-related-card-icon {
  font-size: 2rem;
  color: #2563eb;
  margin-bottom: 0.5rem;
}

.swing-trading-positionshandel-related-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  color: #1e293b;
  margin: 0;
}

@media (min-width: 768px) {
  .swing-trading-positionshandel-related-card h3 {
    font-size: 1.25rem;
  }
}

.swing-trading-positionshandel-related-card p {
  color: #64748b;
  font-size: 0.875rem;
  line-height: 1.6;
  margin: 0;
}

@media (min-width: 768px) {
  .swing-trading-positionshandel-related-card p {
    font-size: 0.95rem;
  }
}

.swing-trading-positionshandel-related-arrow {
  color: #2563eb;
  font-size: 1rem;
  transition: transform 0.3s ease;
  margin-top: auto;
}

.swing-trading-positionshandel-related-card:hover .swing-trading-positionshandel-related-arrow {
  transform: translateX(4px);
}

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

.post-scalping-hochfrequenzhandel {
  width: 100%;
  background: var(--color-bg-primary);
}

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

.scalping-hochfrequenzhandel-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.875rem;
}

.scalping-hochfrequenzhandel-breadcrumb-link {
  color: var(--color-primary);
  transition: color 0.3s ease;
}

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

.scalping-hochfrequenzhandel-breadcrumb-separator {
  color: #cbd5e1;
}

.scalping-hochfrequenzhandel-breadcrumb-current {
  color: var(--color-text-secondary);
}

.scalping-hochfrequenzhandel-hero {
  position: relative;
  overflow: hidden;
  padding: 3rem 0;
  background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
}

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

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

.scalping-hochfrequenzhandel-hero-deco-glow-1 {
  position: absolute;
  top: -100px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.scalping-hochfrequenzhandel-hero-deco-glow-2 {
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.scalping-hochfrequenzhandel-hero-deco-mesh-1 {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

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

.scalping-hochfrequenzhandel-hero-deco-shape-2 {
  position: absolute;
  bottom: 10%;
  right: 25%;
  width: 180px;
  height: 180px;
  background: rgba(14, 165, 233, 0.04);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  z-index: 1;
  pointer-events: none;
}

.scalping-hochfrequenzhandel-hero-deco-accent-1 {
  position: absolute;
  top: 30%;
  left: 5%;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
}

.scalping-hochfrequenzhandel-hero-deco-line-1 {
  position: absolute;
  bottom: 20%;
  left: 10%;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, rgba(37, 99, 235, 0.2) 0%, transparent 100%);
  z-index: 2;
  pointer-events: none;
}

.scalping-hochfrequenzhandel-hero-deco-panel-1 {
  position: absolute;
  top: 40%;
  right: 8%;
  width: 200px;
  height: 120px;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: 12px;
  backdrop-filter: blur(10px);
  z-index: 1;
  pointer-events: none;
}

.scalping-hochfrequenzhandel-hero .container {
  position: relative;
  z-index: 10;
}

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

@media (min-width: 1024px) {
  .scalping-hochfrequenzhandel-hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.scalping-hochfrequenzhandel-hero-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.scalping-hochfrequenzhandel-hero-title {
  font-size: 2rem;
  color: var(--color-text-primary);
  line-height: 1.2;
}

@media (min-width: 768px) {
  .scalping-hochfrequenzhandel-hero-title {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .scalping-hochfrequenzhandel-hero-title {
    font-size: 3.5rem;
  }
}

.scalping-hochfrequenzhandel-hero-subtitle {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
}

@media (min-width: 768px) {
  .scalping-hochfrequenzhandel-hero-subtitle {
    font-size: 1.125rem;
  }
}

.scalping-hochfrequenzhandel-hero-meta {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .scalping-hochfrequenzhandel-hero-meta {
    flex-direction: row;
    gap: 2rem;
  }
}

.scalping-hochfrequenzhandel-hero-meta-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

.scalping-hochfrequenzhandel-hero-meta-item .fas {
  font-size: 1rem;
  color: var(--color-primary);
}

.scalping-hochfrequenzhandel-hero-image {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.scalping-hochfrequenzhandel-hero-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .scalping-hochfrequenzhandel-hero-img {
    height: 400px;
  }
}

@media (min-width: 1024px) {
  .scalping-hochfrequenzhandel-hero-img {
    height: 500px;
  }
}

.scalping-hochfrequenzhandel-intro {
  padding: 3rem 0;
  background: var(--color-bg-primary);
}

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

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

.scalping-hochfrequenzhandel-intro-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .scalping-hochfrequenzhandel-intro-content {
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
  }
}

.scalping-hochfrequenzhandel-intro-text p {
  color: var(--color-text-secondary);
  line-height: 1.8;
  font-size: 1rem;
}

.scalping-hochfrequenzhandel-intro-lead {
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-text-primary);
}

@media (min-width: 768px) {
  .scalping-hochfrequenzhandel-intro-lead {
    font-size: 1.25rem;
  }
}

.scalping-hochfrequenzhandel-intro-highlight-box {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
  .scalping-hochfrequenzhandel-intro-highlight-box {
    padding: 2rem;
  }
}

.scalping-hochfrequenzhandel-highlight-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: var(--radius-md);
  font-size: 1.25rem;
}

.scalping-hochfrequenzhandel-highlight-title {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.scalping-hochfrequenzhandel-highlight-description {
  color: #1e3a8a;
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 0;
}

.scalping-hochfrequenzhandel-fundamentals {
  position: relative;
  overflow: hidden;
  padding: 3rem 0;
  background: var(--color-bg-secondary);
}

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

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

.scalping-hochfrequenzhandel-fund-deco-1 {
  position: absolute;
  top: -80px;
  right: 5%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.scalping-hochfrequenzhandel-fund-deco-2 {
  position: absolute;
  bottom: 10%;
  left: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.07) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.scalping-hochfrequenzhandel-fund-deco-3 {
  position: absolute;
  top: 30%;
  left: 15%;
  width: 150px;
  height: 150px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 50% 40% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

.scalping-hochfrequenzhandel-fund-deco-4 {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(37, 99, 235, 0.1);
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
}

.scalping-hochfrequenzhandel-fund-deco-5 {
  position: absolute;
  bottom: 30%;
  right: 20%;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.15), transparent);
  z-index: 2;
  pointer-events: none;
}

.scalping-hochfrequenzhandel-fund-deco-6 {
  position: absolute;
  top: 10%;
  right: 30%;
  width: 200px;
  height: 120px;
  background: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(37, 99, 235, 0.06);
  border-radius: 12px;
  z-index: 1;
  pointer-events: none;
}

.scalping-hochfrequenzhandel-fundamentals .container {
  position: relative;
  z-index: 10;
}

.scalping-hochfrequenzhandel-section-title {
  font-size: 1.75rem;
  color: var(--color-text-primary);
  margin-bottom: 2rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .scalping-hochfrequenzhandel-section-title {
    font-size: 2.25rem;
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .scalping-hochfrequenzhandel-section-title {
    font-size: 3rem;
    margin-bottom: 3rem;
  }
}

.scalping-hochfrequenzhandel-fundamentals-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .scalping-hochfrequenzhandel-fundamentals-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.scalping-hochfrequenzhandel-fundamentals-text p {
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.scalping-hochfrequenzhandel-subsection-title {
  font-size: 1.375rem;
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

@media (min-width: 768px) {
  .scalping-hochfrequenzhandel-subsection-title {
    font-size: 1.625rem;
  }
}

.scalping-hochfrequenzhandel-feature-list {
  list-style: none;
  padding: 0;
  margin-bottom: 0;
}

.scalping-hochfrequenzhandel-feature-list li {
  padding-left: 1.75rem;
  margin-bottom: 1rem;
  position: relative;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.scalping-hochfrequenzhandel-feature-list li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.scalping-hochfrequenzhandel-fundamentals-image {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.scalping-hochfrequenzhandel-content-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
}

@media (min-width: 768px) {
  .scalping-hochfrequenzhandel-content-img {
    height: 350px;
  }
}

@media (min-width: 1024px) {
  .scalping-hochfrequenzhandel-content-img {
    height: 400px;
  }
}

.scalping-hochfrequenzhandel-quote-section {
  margin-top: 3rem;
  padding: 2rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.05) 0%, rgba(14, 165, 233, 0.05) 100%);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
  .scalping-hochfrequenzhandel-quote-section {
    padding: 2.5rem;
    margin-top: 3.5rem;
  }
}

.scalping-hochfrequenzhandel-quote {
  margin: 0;
  padding: 0;
}

.scalping-hochfrequenzhandel-quote p {
  font-size: 1.125rem;
  font-style: italic;
  color: var(--color-text-primary);
  line-height: 1.7;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .scalping-hochfrequenzhandel-quote p {
    font-size: 1.25rem;
  }
}

.scalping-hochfrequenzhandel-quote-footer {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  font-style: normal;
}

.scalping-hochfrequenzhandel-bid-ask {
  position: relative;
  overflow: hidden;
  padding: 3rem 0;
  background: var(--color-bg-primary);
}

@media (min-width: 768px) {
  .scalping-hochfrequenzhandel-bid-ask {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .scalping-hochfrequenzhandel-bid-ask {
    padding: 6rem 0;
  }
}

.scalping-hochfrequenzhandel-bid-deco-1 {
  position: absolute;
  top: 5%;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.scalping-hochfrequenzhandel-bid-deco-2 {
  position: absolute;
  bottom: 10%;
  right: -50px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.07) 0%, transparent 70%);
  filter: blur(65px);
  z-index: 1;
  pointer-events: none;
}

.scalping-hochfrequenzhandel-bid-deco-3 {
  position: absolute;
  top: 40%;
  right: 15%;
  width: 150px;
  height: 150px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 30% 70% 70% 30%;
  z-index: 1;
  pointer-events: none;
}

.scalping-hochfrequenzhandel-bid-deco-4 {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(14, 165, 233, 0.12);
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
}

.scalping-hochfrequenzhandel-bid-deco-5 {
  position: absolute;
  bottom: 40%;
  left: 20%;
  width: 180px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.2), transparent);
  z-index: 2;
  pointer-events: none;
}

.scalping-hochfrequenzhandel-bid-ask .container {
  position: relative;
  z-index: 10;
}

.scalping-hochfrequenzhandel-bid-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .scalping-hochfrequenzhandel-bid-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.scalping-hochfrequenzhandel-bid-text p {
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.scalping-hochfrequenzhandel-spread-example {
  padding: 1.5rem;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  border-radius: var(--radius-lg);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .scalping-hochfrequenzhandel-spread-example {
    padding: 2rem;
  }
}

.scalping-hochfrequenzhandel-example-title {
  color: #92400e;
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.scalping-hochfrequenzhandel-spread-details {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.scalping-hochfrequenzhandel-spread-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #78350f;
}

.scalping-hochfrequenzhandel-spread-label {
  font-weight: 600;
}

.scalping-hochfrequenzhandel-spread-value {
  font-family: 'Courier New', monospace;
  font-weight: 700;
  font-size: 1rem;
}

.scalping-hochfrequenzhandel-hft {
  position: relative;
  overflow: hidden;
  padding: 3rem 0;
  background: var(--color-bg-secondary);
}

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

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

.scalping-hochfrequenzhandel-hft-deco-1 {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.scalping-hochfrequenzhandel-hft-deco-2 {
  position: absolute;
  bottom: 5%;
  left: -150px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.07) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.scalping-hochfrequenzhandel-hft-deco-3 {
  position: absolute;
  top: 30%;
  left: 10%;
  width: 180px;
  height: 180px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 45% 55% 60% 40%;
  z-index: 1;
  pointer-events: none;
}

.scalping-hochfrequenzhandel-hft-deco-4 {
  position: absolute;
  top: 15%;
  right: 20%;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(59, 130, 246, 0.12);
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
}

.scalping-hochfrequenzhandel-hft-deco-5 {
  position: absolute;
  bottom: 30%;
  right: 15%;
  width: 150px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.18), transparent);
  z-index: 2;
  pointer-events: none;
}

.scalping-hochfrequenzhandel-hft-deco-6 {
  position: absolute;
  top: 60%;
  left: 25%;
  width: 200px;
  height: 130px;
  background: rgba(255, 255, 255, 0.25);
  border: 1px solid rgba(59, 130, 246, 0.08);
  border-radius: 12px;
  z-index: 1;
  pointer-events: none;
}

.scalping-hochfrequenzhandel-hft .container {
  position: relative;
  z-index: 10;
}

.scalping-hochfrequenzhandel-section-intro {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .scalping-hochfrequenzhandel-section-intro {
    font-size: 1.0625rem;
  }
}

.scalping-hochfrequenzhandel-hft-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .scalping-hochfrequenzhandel-hft-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.scalping-hochfrequenzhandel-hft-text p {
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.scalping-hochfrequenzhandel-comparison-table {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin-bottom: 2rem;
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-md);
  overflow: hidden;
}

.scalping-hochfrequenzhandel-table-row {
  display: grid;
  grid-template-columns: 1fr;
  border-bottom: 1px solid #e2e8f0;
}

@media (min-width: 768px) {
  .scalping-hochfrequenzhandel-table-row {
    grid-template-columns: 1fr 1fr 1fr;
  }
}

.scalping-hochfrequenzhandel-table-row:last-child {
  border-bottom: none;
}

.scalping-hochfrequenzhandel-table-header {
  background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
}

.scalping-hochfrequenzhandel-table-header .scalping-hochfrequenzhandel-table-cell {
  font-weight: 700;
  color: var(--color-text-primary);
}

.scalping-hochfrequenzhandel-table-cell {
  padding: 1rem;
  color: var(--color-text-secondary);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .scalping-hochfrequenzhandel-table-cell {
    padding: 1.25rem;
    font-size: 0.9375rem;
  }
}

.scalping-hochfrequenzhandel-hft-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.scalping-hochfrequenzhandel-hft-list li {
  padding-left: 1.75rem;
  margin-bottom: 1rem;
  position: relative;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.scalping-hochfrequenzhandel-hft-list li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
}

.scalping-hochfrequenzhandel-practical {
  position: relative;
  overflow: hidden;
  padding: 3rem 0;
  background: var(--color-bg-primary);
}

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

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

.scalping-hochfrequenzhandel-pract-deco-1 {
  position: absolute;
  top: -80px;
  left: -150px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.08) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.scalping-hochfrequenzhandel-pract-deco-2 {
  position: absolute;
  top: 40%;
  right: -80px;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.07) 0%, transparent 70%);
  filter: blur(65px);
  z-index: 1;
  pointer-events: none;
}

.scalping-hochfrequenzhandel-pract-deco-3 {
  position: absolute;
  bottom: 15%;
  left: 15%;
  width: 140px;
  height: 140px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 55% 45% 40% 60%;
  z-index: 1;
  pointer-events: none;
}

.scalping-hochfrequenzhandel-pract-deco-4 {
  position: absolute;
  bottom: 25%;
  right: 10%;
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.16), transparent);
  z-index: 2;
  pointer-events: none;
}

.scalping-hochfrequenzhandel-practical .container {
  position: relative;
  z-index: 10;
}

.scalping-hochfrequenzhandel-practical-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .scalping-hochfrequenzhandel-practical-grid {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.scalping-hochfrequenzhandel-practical-image {
  width: 100%;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.scalping-hochfrequenzhandel-practical-text p {
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.scalping-hochfrequenzhandel-requirements-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.scalping-hochfrequenzhandel-requirement-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
}

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

.scalping-hochfrequenzhandel-requirement-title {
  font-size: 1rem;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.scalping-hochfrequenzhandel-requirement-content p {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

.scalping-hochfrequenzhandel-risk-section {
  margin-top: 2rem;
  padding: 1.5rem;
  background: linear-gradient(135deg, #fecaca 0%, #fecdd3 100%);
  border-left: 4px solid #dc2626;
  border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
  .scalping-hochfrequenzhandel-risk-section {
    padding: 2rem;
  }
}

.scalping-hochfrequenzhandel-risk-section h3 {
  color: #7f1d1d;
}

.scalping-hochfrequenzhandel-risk-section p {
  color: #9f1239;
}

.scalping-hochfrequenzhandel-risk-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.scalping-hochfrequenzhandel-risk-list li {
  padding-left: 1.75rem;
  margin-bottom: 0.875rem;
  position: relative;
  color: #9f1239;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.scalping-hochfrequenzhandel-risk-list li:before {
  content: "";
  position: absolute;
  left: 0;
  color: #dc2626;
  font-weight: bold;
}

.scalping-hochfrequenzhandel-challenges {
  position: relative;
  overflow: hidden;
  padding: 3rem 0;
  background: var(--color-bg-secondary);
}

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

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

.scalping-hochfrequenzhandel-chal-deco-1 {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.scalping-hochfrequenzhandel-chal-deco-2 {
  position: absolute;
  bottom: 5%;
  left: -150px;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.07) 0%, transparent 70%);
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.scalping-hochfrequenzhandel-chal-deco-3 {
  position: absolute;
  top: 20%;
  left: 10%;
  width: 160px;
  height: 160px;
  background: rgba(14, 165, 233, 0.05);
  border-radius: 40% 60% 50% 50%;
  z-index: 1;
  pointer-events: none;
}

.scalping-hochfrequenzhandel-chal-deco-4 {
  position: absolute;
  top: 35%;
  right: 15%;
  width: 110px;
  height: 110px;
  border: 2px solid rgba(139, 92, 246, 0.11);
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
}

.scalping-hochfrequenzhandel-chal-deco-5 {
  position: absolute;
  bottom: 40%;
  right: 25%;
  width: 160px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(59, 130, 246, 0.17), transparent);
  z-index: 2;
  pointer-events: none;
}

.scalping-hochfrequenzhandel-chal-deco-6 {
  position: absolute;
  top: 50%;
  right: 30%;
  width: 180px;
  height: 110px;
  background: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(139, 92, 246, 0.07);
  border-radius: 12px;
  z-index: 1;
  pointer-events: none;
}

.scalping-hochfrequenzhandel-challenges .container {
  position: relative;
  z-index: 10;
}

.scalping-hochfrequenzhandel-challenges-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .scalping-hochfrequenzhandel-challenges-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .scalping-hochfrequenzhandel-challenges-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.scalping-hochfrequenzhandel-challenge-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-bg-primary);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
  .scalping-hochfrequenzhandel-challenge-card {
    padding: 2rem;
    gap: 1.25rem;
  }
}

.scalping-hochfrequenzhandel-challenge-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--color-primary);
}

.scalping-hochfrequenzhandel-challenge-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
}

.scalping-hochfrequenzhandel-challenge-title {
  font-size: 1.125rem;
  color: var(--color-text-primary);
  margin-bottom: 0;
}

.scalping-hochfrequenzhandel-challenge-text {
  font-size: 0.9375rem;
  color: var(--color-text-secondary);
  line-height: 1.7;
  margin-bottom: 0;
}

.scalping-hochfrequenzhandel-conclusion {
  position: relative;
  overflow: hidden;
  padding: 3rem 0;
  background: var(--color-bg-primary);
}

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

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

.scalping-hochfrequenzhandel-concl-deco-1 {
  position: absolute;
  top: -80px;
  left: -120px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.07) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.scalping-hochfrequenzhandel-concl-deco-2 {
  position: absolute;
  bottom: 10%;
  right: -100px;
  width: 380px;
  height: 380px;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.06) 0%, transparent 70%);
  filter: blur(65px);
  z-index: 1;
  pointer-events: none;
}

.scalping-hochfrequenzhandel-concl-deco-3 {
  position: absolute;
  top: 30%;
  right: 15%;
  width: 120px;
  height: 120px;
  background: rgba(59, 130, 246, 0.04);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.scalping-hochfrequenzhandel-conclusion .container {
  position: relative;
  z-index: 10;
}

.scalping-hochfrequenzhandel-conclusion-content p {
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

@media (min-width: 768px) {
  .scalping-hochfrequenzhandel-conclusion-content p {
    font-size: 1.0625rem;
  }
}

.scalping-hochfrequenzhandel-conclusion-list {
  list-style: none;
  padding: 0;
  margin-bottom: 2rem;
}

.scalping-hochfrequenzhandel-conclusion-list li {
  padding-left: 1.75rem;
  margin-bottom: 1rem;
  position: relative;
  color: var(--color-text-secondary);
  line-height: 1.7;
}

.scalping-hochfrequenzhandel-conclusion-list li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.scalping-hochfrequenzhandel-disclaimer {
  padding: 3rem 0;
  background: var(--color-bg-secondary);
}

@media (min-width: 768px) {
  .scalping-hochfrequenzhandel-disclaimer {
    padding: 4rem 0;
  }
}

.scalping-hochfrequenzhandel-disclaimer-box {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  padding: 1.5rem;
  background: #fef2f2;
  border: 2px solid #fecaca;
  border-radius: var(--radius-lg);
  align-items: start;
}

@media (min-width: 768px) {
  .scalping-hochfrequenzhandel-disclaimer-box {
    padding: 2rem;
    gap: 1.5rem;
  }
}

.scalping-hochfrequenzhandel-disclaimer-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fee2e2;
  color: #dc2626;
  border-radius: var(--radius-md);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.scalping-hochfrequenzhandel-disclaimer-title {
  color: #7f1d1d;
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .scalping-hochfrequenzhandel-disclaimer-title {
    font-size: 1.125rem;
  }
}

.scalping-hochfrequenzhandel-disclaimer-text {
  color: #9f1239;
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .scalping-hochfrequenzhandel-disclaimer-text {
    font-size: 0.9375rem;
  }
}

.scalping-hochfrequenzhandel-related {
  position: relative;
  overflow: hidden;
  padding: 3rem 0;
  background: var(--color-bg-primary);
}

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

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

.scalping-hochfrequenzhandel-related-deco-1 {
  position: absolute;
  top: -100px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.scalping-hochfrequenzhandel-related-deco-2 {
  position: absolute;
  bottom: 10%;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.07) 0%, transparent 70%);
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.scalping-hochfrequenzhandel-related-deco-3 {
  position: absolute;
  top: 25%;
  left: 15%;
  width: 150px;
  height: 150px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 50% 40% 60% 50%;
  z-index: 1;
  pointer-events: none;
}

.scalping-hochfrequenzhandel-related-deco-4 {
  position: absolute;
  top: 50%;
  right: 10%;
  width: 100px;
  height: 100px;
  border: 2px solid rgba(59, 130, 246, 0.11);
  border-radius: 50%;
  z-index: 2;
  pointer-events: none;
}

.scalping-hochfrequenzhandel-related .container {
  position: relative;
  z-index: 10;
}

.scalping-hochfrequenzhandel-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .scalping-hochfrequenzhandel-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .scalping-hochfrequenzhandel-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.scalping-hochfrequenzhandel-related-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-bg-card);
  border: 1px solid #e2e8f0;
  border-radius: var(--radius-lg);
  text-decoration: none;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
  .scalping-hochfrequenzhandel-related-card {
    padding: 2rem;
    gap: 1.25rem;
  }
}

.scalping-hochfrequenzhandel-related-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
  border-color: var(--color-primary);
}

.scalping-hochfrequenzhandel-related-card:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 3px;
}

.scalping-hochfrequenzhandel-related-card-icon {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #dbeafe 0%, #e0e7ff 100%);
  color: var(--color-primary);
  border-radius: var(--radius-md);
  font-size: 1.5rem;
}

.scalping-hochfrequenzhandel-related-card-title {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  margin-bottom: 0;
  line-height: 1.3;
}

.scalping-hochfrequenzhandel-related-card-desc {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  line-height: 1.6;
  margin-bottom: 0;
  flex-grow: 1;
}

.scalping-hochfrequenzhandel-related-card-arrow {
  color: var(--color-primary);
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.scalping-hochfrequenzhandel-related-card:hover .scalping-hochfrequenzhandel-related-card-arrow {
  transform: translateX(4px);
}

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

.post-trading-communities-mentorschaft {
      background: var(--color-bg-primary);
      color: var(--color-text-primary);
    }

    .trading-communities-mentorschaft-breadcrumbs {
      padding: 1rem 0;
      font-size: 0.875rem;
    }

    @media (min-width: 768px) {
      .trading-communities-mentorschaft-breadcrumbs {
        padding: 1.25rem 0;
        font-size: 0.9375rem;
      }
    }

    .trading-communities-mentorschaft-breadcrumbs a {
      color: var(--color-primary);
      margin-right: 0.5rem;
    }

    .trading-communities-mentorschaft-breadcrumbs span {
      color: var(--color-text-muted);
      margin-right: 0.5rem;
    }

    .trading-communities-mentorschaft-hero {
      background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
      padding: 3rem 0;
      overflow: hidden;
      position: relative;
    }

    @media (min-width: 768px) {
      .trading-communities-mentorschaft-hero {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .trading-communities-mentorschaft-hero {
        padding: 5rem 0;
      }
    }

    .trading-communities-mentorschaft-hero-deco-1 {
      position: absolute;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
      border-radius: 50%;
      top: -100px;
      left: -150px;
      z-index: 1;
      pointer-events: none;
      filter: blur(80px);
    }

    .trading-communities-mentorschaft-hero-deco-2 {
      position: absolute;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
      border-radius: 50%;
      bottom: -80px;
      right: -120px;
      z-index: 1;
      pointer-events: none;
      filter: blur(70px);
    }

    .trading-communities-mentorschaft-hero-deco-3 {
      position: absolute;
      width: 300px;
      height: 250px;
      background: rgba(37, 99, 235, 0.05);
      border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
      top: 50%;
      right: 10%;
      z-index: 1;
      pointer-events: none;
      filter: blur(60px);
    }

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

    @media (min-width: 768px) {
      .trading-communities-mentorschaft-hero-content {
        gap: 2.5rem;
      }
    }

    .trading-communities-mentorschaft-hero h1 {
      color: var(--color-text-primary);
      margin-bottom: 1rem;
      font-size: 2rem;
      line-height: 1.2;
    }

    @media (min-width: 768px) {
      .trading-communities-mentorschaft-hero h1 {
        font-size: 2.75rem;
      }
    }

    @media (min-width: 1024px) {
      .trading-communities-mentorschaft-hero h1 {
        font-size: 3.5rem;
      }
    }

    .trading-communities-mentorschaft-hero-meta {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    @media (min-width: 768px) {
      .trading-communities-mentorschaft-hero-meta {
        flex-direction: row;
        align-items: center;
        gap: 2rem;
      }
    }

    .trading-communities-mentorschaft-badge-group {
      display: flex;
      gap: 0.75rem;
      flex-wrap: wrap;
    }

    .trading-communities-mentorschaft-read-time {
      color: var(--color-text-secondary);
      font-size: 0.875rem;
      font-weight: 500;
    }

    .trading-communities-mentorschaft-hero-image {
      width: 100%;
      max-height: 350px;
      border-radius: var(--radius-lg);
      object-fit: cover;
      box-shadow: var(--shadow-lg);
    }

    @media (min-width: 768px) {
      .trading-communities-mentorschaft-hero-image {
        max-height: 400px;
      }
    }

    @media (min-width: 1024px) {
      .trading-communities-mentorschaft-hero-image {
        max-height: 450px;
      }
    }

    .trading-communities-mentorschaft-content-section {
      padding: 3rem 0;
      border-bottom: 1px solid #e2e8f0;
    }

    @media (min-width: 768px) {
      .trading-communities-mentorschaft-content-section {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .trading-communities-mentorschaft-content-section {
        padding: 5rem 0;
      }
    }

    .trading-communities-mentorschaft-content-section:last-of-type {
      border-bottom: none;
    }

    .trading-communities-mentorschaft-section-1 {
      background: var(--color-bg-primary);
      position: relative;
      overflow: hidden;
    }

    .trading-communities-mentorschaft-section-1-deco-1 {
      position: absolute;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(37, 99, 235, 0.07) 0%, transparent 70%);
      border-radius: 50%;
      top: 50px;
      left: -100px;
      z-index: 1;
      pointer-events: none;
      filter: blur(75px);
    }

    .trading-communities-mentorschaft-section-1-deco-2 {
      position: absolute;
      width: 350px;
      height: 300px;
      background: rgba(6, 182, 212, 0.05);
      border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
      bottom: 100px;
      right: -80px;
      z-index: 1;
      pointer-events: none;
      filter: blur(65px);
    }

    .trading-communities-mentorschaft-section-1-content {
      position: relative;
      z-index: 10;
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      align-items: center;
    }

    @media (min-width: 768px) {
      .trading-communities-mentorschaft-section-1-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
      }
    }

    .trading-communities-mentorschaft-section-1 h2 {
      color: var(--color-text-primary);
      font-size: 1.75rem;
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .trading-communities-mentorschaft-section-1 h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .trading-communities-mentorschaft-section-1 h2 {
        font-size: 2.75rem;
      }
    }

    .trading-communities-mentorschaft-section-1 p {
      color: var(--color-text-secondary);
      line-height: 1.7;
      margin-bottom: 1.25rem;
    }

    .trading-communities-mentorschaft-section-1-list {
      list-style: none;
      padding: 0;
    }

    .trading-communities-mentorschaft-section-1-list li {
      display: flex;
      gap: 1rem;
      margin-bottom: 1rem;
      color: var(--color-text-secondary);
    }

    .trading-communities-mentorschaft-section-1-list li:before {
      content: '';
      color: var(--color-primary);
      font-weight: 700;
      flex-shrink: 0;
      font-size: 1.25rem;
    }

    .trading-communities-mentorschaft-section-1-image {
      width: 100%;
      height: 300px;
      border-radius: var(--radius-lg);
      object-fit: cover;
      box-shadow: var(--shadow-lg);
    }

    @media (min-width: 768px) {
      .trading-communities-mentorschaft-section-1-image {
        height: 350px;
      }
    }

    .trading-communities-mentorschaft-section-2 {
      background: var(--color-bg-secondary);
      position: relative;
      overflow: hidden;
    }

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

    .trading-communities-mentorschaft-section-2-deco-2 {
      position: absolute;
      width: 320px;
      height: 280px;
      background: rgba(37, 99, 235, 0.06);
      border-radius: 50% 30% 40% 70% / 60% 40% 60% 40%;
      bottom: -60px;
      left: 5%;
      z-index: 1;
      pointer-events: none;
      filter: blur(70px);
    }

    .trading-communities-mentorschaft-section-2-content {
      position: relative;
      z-index: 10;
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      align-items: center;
    }

    @media (min-width: 768px) {
      .trading-communities-mentorschaft-section-2-content {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
      }
    }

    .trading-communities-mentorschaft-section-2 h2 {
      color: var(--color-text-primary);
      font-size: 1.75rem;
      margin-bottom: 1rem;
      order: 2;
    }

    @media (min-width: 768px) {
      .trading-communities-mentorschaft-section-2 h2 {
        font-size: 2.25rem;
        order: 1;
      }
    }

    @media (min-width: 1024px) {
      .trading-communities-mentorschaft-section-2 h2 {
        font-size: 2.75rem;
      }
    }

    .trading-communities-mentorschaft-section-2 p {
      color: var(--color-text-secondary);
      line-height: 1.7;
      margin-bottom: 1.25rem;
    }

    .trading-communities-mentorschaft-section-2-image {
      width: 100%;
      height: 300px;
      border-radius: var(--radius-lg);
      object-fit: cover;
      box-shadow: var(--shadow-lg);
      order: 1;
    }

    @media (min-width: 768px) {
      .trading-communities-mentorschaft-section-2-image {
        height: 350px;
        order: 1;
      }
    }

    .trading-communities-mentorschaft-highlight-box {
      background: var(--color-bg-primary);
      border-left: 4px solid var(--color-primary);
      padding: 1.5rem;
      border-radius: var(--radius-md);
      margin: 1.5rem 0;
    }

    @media (min-width: 768px) {
      .trading-communities-mentorschaft-highlight-box {
        padding: 2rem;
        margin: 2rem 0;
      }
    }

    .trading-communities-mentorschaft-highlight-box h3 {
      color: var(--color-primary);
      margin-bottom: 0.75rem;
      font-size: 1.125rem;
    }

    @media (min-width: 768px) {
      .trading-communities-mentorschaft-highlight-box h3 {
        font-size: 1.375rem;
      }
    }

    .trading-communities-mentorschaft-highlight-box p {
      color: var(--color-text-secondary);
      margin-bottom: 0;
    }

    .trading-communities-mentorschaft-section-3 {
      background: var(--color-bg-primary);
      position: relative;
      overflow: hidden;
    }

    .trading-communities-mentorschaft-section-3-deco-1 {
      position: absolute;
      width: 380px;
      height: 380px;
      background: radial-gradient(circle, rgba(37, 99, 235, 0.07) 0%, transparent 70%);
      border-radius: 50%;
      bottom: -100px;
      right: 5%;
      z-index: 1;
      pointer-events: none;
      filter: blur(75px);
    }

    .trading-communities-mentorschaft-section-3-deco-2 {
      position: absolute;
      width: 320px;
      height: 280px;
      background: rgba(6, 182, 212, 0.06);
      border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
      top: 50px;
      left: -60px;
      z-index: 1;
      pointer-events: none;
      filter: blur(65px);
    }

    .trading-communities-mentorschaft-section-3-content {
      position: relative;
      z-index: 10;
    }

    .trading-communities-mentorschaft-section-3 h2 {
      color: var(--color-text-primary);
      font-size: 1.75rem;
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .trading-communities-mentorschaft-section-3 h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .trading-communities-mentorschaft-section-3 h2 {
        font-size: 2.75rem;
      }
    }

    .trading-communities-mentorschaft-grid-cards {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .trading-communities-mentorschaft-grid-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .trading-communities-mentorschaft-grid-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
      }
    }

    .trading-communities-mentorschaft-feature-card {
      background: var(--color-bg-card);
      padding: 1.5rem;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid #e2e8f0;
    }

    @media (min-width: 768px) {
      .trading-communities-mentorschaft-feature-card {
        padding: 2rem;
      }
    }

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

    .trading-communities-mentorschaft-feature-card-icon {
      width: 2.5rem;
      height: 2.5rem;
      background: #dbeafe;
      border-radius: var(--radius-md);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 1rem;
    }

    .trading-communities-mentorschaft-feature-card-icon .fas {
      color: var(--color-primary);
      font-size: 1.25rem;
    }

    .trading-communities-mentorschaft-feature-card h3 {
      color: var(--color-text-primary);
      margin-bottom: 0.75rem;
      font-size: 1.25rem;
    }

    @media (min-width: 768px) {
      .trading-communities-mentorschaft-feature-card h3 {
        font-size: 1.375rem;
      }
    }

    .trading-communities-mentorschaft-feature-card p {
      color: var(--color-text-secondary);
      margin-bottom: 0;
      font-size: 0.9375rem;
    }

    @media (min-width: 768px) {
      .trading-communities-mentorschaft-feature-card p {
        font-size: 1rem;
      }
    }

    .trading-communities-mentorschaft-section-3-image {
      width: 100%;
      height: 300px;
      border-radius: var(--radius-lg);
      object-fit: cover;
      box-shadow: var(--shadow-lg);
      margin-top: 2rem;
    }

    @media (min-width: 768px) {
      .trading-communities-mentorschaft-section-3-image {
        height: 350px;
        margin-top: 2.5rem;
      }
    }

    .trading-communities-mentorschaft-disclaimer {
      background: #fffbeb;
      border: 1px solid #fcd34d;
      border-radius: var(--radius-lg);
      padding: 1.5rem;
      margin: 3rem 0;
      position: relative;
      overflow: hidden;
    }

    @media (min-width: 768px) {
      .trading-communities-mentorschaft-disclaimer {
        padding: 2rem;
        margin: 4rem 0;
      }
    }

    .trading-communities-mentorschaft-disclaimer-deco {
      position: absolute;
      width: 300px;
      height: 300px;
      background: radial-gradient(circle, rgba(251, 146, 60, 0.08) 0%, transparent 70%);
      border-radius: 50%;
      top: -100px;
      right: -80px;
      z-index: 1;
      pointer-events: none;
      filter: blur(60px);
    }

    .trading-communities-mentorschaft-disclaimer-content {
      position: relative;
      z-index: 10;
    }

    .trading-communities-mentorschaft-disclaimer h3 {
      color: #b45309;
      font-size: 1.125rem;
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    @media (min-width: 768px) {
      .trading-communities-mentorschaft-disclaimer h3 {
        font-size: 1.375rem;
      }
    }

    .trading-communities-mentorschaft-disclaimer p {
      color: #92400e;
      margin-bottom: 0;
      font-size: 0.9375rem;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .trading-communities-mentorschaft-disclaimer p {
        font-size: 1rem;
      }
    }

    .trading-communities-mentorschaft-related {
      padding: 3rem 0;
      border-top: 1px solid #e2e8f0;
    }

    @media (min-width: 768px) {
      .trading-communities-mentorschaft-related {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .trading-communities-mentorschaft-related {
        padding: 5rem 0;
      }
    }

    .trading-communities-mentorschaft-related h2 {
      color: var(--color-text-primary);
      font-size: 1.75rem;
      margin-bottom: 2rem;
    }

    @media (min-width: 768px) {
      .trading-communities-mentorschaft-related h2 {
        font-size: 2.25rem;
      }
    }

    .trading-communities-mentorschaft-related-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .trading-communities-mentorschaft-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .trading-communities-mentorschaft-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
      }
    }

    .trading-communities-mentorschaft-related-card {
      background: var(--color-bg-card);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
      border: 1px solid #e2e8f0;
      display: flex;
      flex-direction: column;
    }

    .trading-communities-mentorschaft-related-card:hover {
      transform: translateY(-6px);
      box-shadow: var(--shadow-lg);
      border-color: var(--color-primary);
    }

    .trading-communities-mentorschaft-related-card-image {
      width: 100%;
      height: 180px;
      object-fit: cover;
    }

    .trading-communities-mentorschaft-related-card-content {
      padding: 1.5rem;
    }

    @media (min-width: 768px) {
      .trading-communities-mentorschaft-related-card-content {
        padding: 1.75rem;
      }
    }

    .trading-communities-mentorschaft-related-card h3 {
      color: var(--color-text-primary);
      font-size: 1.125rem;
      margin-bottom: 0.75rem;
    }

    @media (min-width: 768px) {
      .trading-communities-mentorschaft-related-card h3 {
        font-size: 1.25rem;
      }
    }

    .trading-communities-mentorschaft-related-card p {
      color: var(--color-text-secondary);
      font-size: 0.875rem;
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .trading-communities-mentorschaft-related-card p {
        font-size: 0.9375rem;
      }
    }

    .trading-communities-mentorschaft-related-card-link {
      color: var(--color-primary);
      font-weight: 600;
      font-size: 0.875rem;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .trading-communities-mentorschaft-related-card-link:hover {
      color: var(--color-primary-hover);
    }

.post-unternehmensanalyse-due-diligence {
      background: var(--color-bg-primary);
      color: var(--color-text-primary);
    }

    .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-breadcrumbs {
      padding: 1.5rem 0;
      border-bottom: 1px solid #e2e8f0;
      margin-bottom: 2rem;
    }

    @media (min-width: 768px) {
      .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-breadcrumbs {
        padding: 2rem 0;
        margin-bottom: 3rem;
      }
    }

    .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-breadcrumbs-list {
      display: flex;
      flex-direction: row;
      gap: 0.5rem;
      list-style: none;
      font-size: 0.875rem;
      color: var(--color-text-secondary);
    }

    @media (min-width: 768px) {
      .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-breadcrumbs-list {
        font-size: 1rem;
      }
    }

    .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-breadcrumbs-list li:not(:last-child)::after {
      content: '/';
      margin-left: 0.5rem;
      color: #cbd5e1;
    }

    .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-breadcrumbs-list a {
      color: var(--color-primary);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-breadcrumbs-list a:hover {
      color: var(--color-primary-hover);
    }

    .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-hero {
      margin-bottom: 3rem;
    }

    @media (min-width: 768px) {
      .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-hero {
        margin-bottom: 4rem;
      }
    }

    .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-hero h1 {
      color: var(--color-text-primary);
      margin-bottom: 1rem;
      font-size: 2rem;
      line-height: 1.2;
    }

    @media (min-width: 768px) {
      .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-hero h1 {
        font-size: 2.75rem;
        margin-bottom: 1.5rem;
      }
    }

    @media (min-width: 1024px) {
      .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-hero h1 {
        font-size: 3.5rem;
      }
    }

    .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-hero-meta {
      display: flex;
      flex-direction: row;
      gap: 1.5rem;
      margin-bottom: 2rem;
      font-size: 0.875rem;
      color: var(--color-text-secondary);
      flex-wrap: wrap;
    }

    @media (min-width: 768px) {
      .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-hero-meta {
        font-size: 1rem;
        margin-bottom: 2.5rem;
      }
    }

    .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-hero-meta-item {
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 0.5rem;
    }

    .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-hero-image {
      width: 100%;
      height: 280px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      margin-bottom: 2rem;
      box-shadow: var(--shadow-md);
    }

    @media (min-width: 768px) {
      .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-hero-image {
        height: 380px;
        margin-bottom: 3rem;
      }
    }

    @media (min-width: 1024px) {
      .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-hero-image {
        height: 450px;
      }
    }

    .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-lead {
      font-size: 1.125rem;
      color: var(--color-text-secondary);
      line-height: 1.8;
      margin-bottom: 2.5rem;
      max-width: 800px;
    }

    @media (min-width: 768px) {
      .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-lead {
        font-size: 1.25rem;
        margin-bottom: 3rem;
      }
    }

    .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-content-section {
      margin-bottom: 3rem;
    }

    @media (min-width: 768px) {
      .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-content-section {
        margin-bottom: 4rem;
      }
    }

    .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-content-section h2 {
      color: var(--color-text-primary);
      margin-bottom: 1.5rem;
      font-size: 1.75rem;
    }

    @media (min-width: 768px) {
      .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-content-section h2 {
        font-size: 2.25rem;
        margin-bottom: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-content-section h2 {
        font-size: 2.75rem;
      }
    }

    .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-content-section h3 {
      color: var(--color-text-primary);
      margin-bottom: 1rem;
      margin-top: 1.5rem;
      font-size: 1.375rem;
    }

    @media (min-width: 768px) {
      .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-content-section h3 {
        font-size: 1.625rem;
        margin-top: 2rem;
      }
    }

    .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-content-section p {
      color: var(--color-text-secondary);
      margin-bottom: 1.5rem;
      line-height: 1.8;
      font-size: 0.95rem;
    }

    @media (min-width: 768px) {
      .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-content-section p {
        font-size: 1rem;
        margin-bottom: 1.75rem;
      }
    }

    .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-content-section ul,
    .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-content-section ol {
      margin-bottom: 1.5rem;
      padding-left: 1.75rem;
    }

    @media (min-width: 768px) {
      .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-content-section ul,
      .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-content-section ol {
        padding-left: 2rem;
        margin-bottom: 2rem;
      }
    }

    .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-content-section li {
      color: var(--color-text-secondary);
      margin-bottom: 0.75rem;
      line-height: 1.8;
      font-size: 0.95rem;
    }

    @media (min-width: 768px) {
      .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-content-section li {
        font-size: 1rem;
        margin-bottom: 1rem;
      }
    }

    .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-content-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      border-radius: var(--radius-lg);
      overflow: hidden;
      margin: 2rem 0;
      box-shadow: var(--shadow-md);
      display: block;
    }

    @media (min-width: 768px) {
      .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-content-image {
        margin: 2.5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-content-image {
        margin: 3rem 0;
      }
    }

    .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-content-image img {
      width: 100%;
      height: auto;
      display: block;
      object-fit: cover;
    }

    .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-highlight-box {
      background: #f0f9ff;
      border-left: 4px solid var(--color-primary);
      padding: 1.5rem;
      border-radius: var(--radius-md);
      margin: 2rem 0;
    }

    @media (min-width: 768px) {
      .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-highlight-box {
        padding: 2rem;
        margin: 2.5rem 0;
      }
    }

    .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-highlight-box p {
      color: #1e40af;
      margin: 0;
      font-size: 0.95rem;
    }

    @media (min-width: 768px) {
      .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-highlight-box p {
        font-size: 1rem;
      }
    }

    .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-quote {
      border-left: 4px solid var(--color-secondary);
      padding: 1.5rem 0 1.5rem 2rem;
      margin: 2.5rem 0;
      font-size: 1.125rem;
      font-style: italic;
      color: #475569;
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-quote {
        font-size: 1.25rem;
        padding: 2rem 0 2rem 2.5rem;
        margin: 3rem 0;
      }
    }

    .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-disclaimer {
      background: #f8fafc;
      border: 1px solid #e2e8f0;
      border-radius: var(--radius-lg);
      padding: 1.5rem;
      margin: 3rem 0;
      font-size: 0.875rem;
      color: var(--color-text-secondary);
      line-height: 1.7;
    }

    @media (min-width: 768px) {
      .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-disclaimer {
        padding: 2rem;
        margin: 4rem 0;
        font-size: 0.9375rem;
      }
    }

    .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-disclaimer-title {
      font-weight: 600;
      color: var(--color-text-primary);
      margin-bottom: 0.75rem;
      display: flex;
      flex-direction: row;
      align-items: center;
      gap: 0.5rem;
    }

    .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-disclaimer-title .fas {
      font-size: 1.125rem;
      color: #f59e0b;
    }

    .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-related {
      margin-top: 4rem;
      padding-top: 3rem;
      border-top: 2px solid #e2e8f0;
    }

    @media (min-width: 768px) {
      .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-related {
        margin-top: 5rem;
        padding-top: 4rem;
      }
    }

    .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-related h2 {
      color: var(--color-text-primary);
      margin-bottom: 2rem;
      font-size: 1.75rem;
    }

    @media (min-width: 768px) {
      .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-related h2 {
        font-size: 2.25rem;
        margin-bottom: 2.5rem;
      }
    }

    .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-related-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-related-grid {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-related-card {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding: 1.5rem;
      background: var(--color-bg-card);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
      text-decoration: none;
      color: inherit;
    }

    @media (min-width: 768px) {
      .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-related-card {
        padding: 1.75rem;
        gap: 1.25rem;
      }
    }

    .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-related-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }

    .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-related-card h3 {
      color: var(--color-text-primary);
      margin: 0;
      font-size: 1.25rem;
      line-height: 1.3;
    }

    @media (min-width: 768px) {
      .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-related-card h3 {
        font-size: 1.375rem;
      }
    }

    .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-related-card p {
      color: var(--color-text-secondary);
      margin: 0;
      font-size: 0.875rem;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-related-card p {
        font-size: 0.9375rem;
      }
    }

    .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-related-card-arrow {
      color: var(--color-primary);
      font-size: 1.125rem;
      transition: transform 0.3s ease;
      align-self: flex-start;
      margin-top: auto;
    }

    .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-related-card:hover .unternehmensanalyse-due-diligence-related-card-arrow {
      transform: translateX(4px);
    }

    .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-two-column {
      display: grid;
      grid-template-columns: 1fr;
      gap: 2rem;
      align-items: start;
    }

    @media (min-width: 768px) {
      .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-two-column {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
      }
    }

    .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-two-column-image {
      width: 100%;
      height: 300px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
    }

    @media (min-width: 768px) {
      .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-two-column-image {
        height: 350px;
      }
    }

    .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-two-column-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-two-column-content p {
      color: var(--color-text-secondary);
      margin-bottom: 1.5rem;
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .post-unternehmensanalyse-due-diligence .unternehmensanalyse-due-diligence-two-column-content p {
        margin-bottom: 1.75rem;
      }
    }

.post-sektoranalyse-rotation {
      background: var(--color-bg-primary);
      color: var(--color-text-primary);
    }

    .sektoranalyse-rotation-breadcrumbs {
      padding: 1rem 0;
      font-size: 0.875rem;
    }

    .sektoranalyse-rotation-breadcrumbs a {
      color: var(--color-primary);
      margin-right: 0.5rem;
    }

    .sektoranalyse-rotation-breadcrumbs a:hover {
      text-decoration: underline;
    }

    .sektoranalyse-rotation-hero {
      background: var(--color-bg-primary);
      padding: 3rem 0;
    }

    @media (min-width: 768px) {
      .sektoranalyse-rotation-hero {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .sektoranalyse-rotation-hero {
        padding: 5rem 0;
      }
    }

    .sektoranalyse-rotation-hero-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .sektoranalyse-rotation-hero h1 {
      color: var(--color-text-primary);
      margin-bottom: 1rem;
    }

    .sektoranalyse-rotation-hero-meta {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      color: var(--color-text-secondary);
      font-size: 0.9375rem;
    }

    .sektoranalyse-rotation-hero-meta-item {
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .sektoranalyse-rotation-featured-image {
      width: 100%;
      height: 300px;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
    }

    @media (min-width: 768px) {
      .sektoranalyse-rotation-featured-image {
        height: 400px;
      }
    }

    @media (min-width: 1024px) {
      .sektoranalyse-rotation-featured-image {
        height: 500px;
      }
    }

    .sektoranalyse-rotation-featured-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .sektoranalyse-rotation-lead {
      background: var(--color-bg-secondary);
      padding: 2rem;
      border-radius: var(--radius-lg);
      margin: 2rem 0;
    }

    @media (min-width: 768px) {
      .sektoranalyse-rotation-lead {
        padding: 2.5rem;
        margin: 3rem 0;
      }
    }

    .sektoranalyse-rotation-lead p {
      color: var(--color-text-primary);
      font-size: 1.0625rem;
      line-height: 1.7;
      margin-bottom: 0;
    }

    .sektoranalyse-rotation-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
      padding: 2rem 0;
    }

    @media (min-width: 768px) {
      .sektoranalyse-rotation-content {
        gap: 3rem;
        padding: 3rem 0;
      }
    }

    @media (min-width: 1024px) {
      .sektoranalyse-rotation-content {
        gap: 4rem;
        padding: 4rem 0;
      }
    }

    .sektoranalyse-rotation-section {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .sektoranalyse-rotation-section {
        gap: 2rem;
      }
    }

    .sektoranalyse-rotation-section h2 {
      color: var(--color-text-primary);
      border-bottom: 2px solid var(--color-primary);
      padding-bottom: 1rem;
    }

    .sektoranalyse-rotation-section p {
      color: var(--color-text-secondary);
      line-height: 1.7;
    }

    .sektoranalyse-rotation-section ul {
      color: var(--color-text-secondary);
      padding-left: 1.5rem;
    }

    .sektoranalyse-rotation-section li {
      margin-bottom: 0.75rem;
      line-height: 1.6;
    }

    .sektoranalyse-rotation-highlight {
      background: #dbeafe;
      border-left: 4px solid var(--color-primary);
      padding: 1.5rem;
      border-radius: var(--radius-md);
      margin: 1.5rem 0;
    }

    @media (min-width: 768px) {
      .sektoranalyse-rotation-highlight {
        padding: 2rem;
        margin: 2rem 0;
      }
    }

    .sektoranalyse-rotation-highlight p {
      color: #1e40af;
      margin-bottom: 0;
      font-weight: 500;
    }

    .sektoranalyse-rotation-image-section {
      display: grid;
      gap: 1.5rem;
      margin: 2rem 0;
    }

    @media (min-width: 768px) {
      .sektoranalyse-rotation-image-section {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        margin: 2.5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .sektoranalyse-rotation-image-section {
        gap: 3rem;
        margin: 3rem 0;
      }
    }

    .sektoranalyse-rotation-image-item {
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: box-shadow 0.3s ease;
    }

    .sektoranalyse-rotation-image-item:hover {
      box-shadow: var(--shadow-md);
    }

    .sektoranalyse-rotation-image-item img {
      width: 100%;
      height: 250px;
      object-fit: cover;
    }

    @media (min-width: 768px) {
      .sektoranalyse-rotation-image-item img {
        height: 300px;
      }
    }

    .sektoranalyse-rotation-image-caption {
      padding: 1rem;
      background: var(--color-bg-secondary);
      color: var(--color-text-secondary);
      font-size: 0.875rem;
      font-style: italic;
    }

    .sektoranalyse-rotation-full-width-image {
      width: 100%;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      margin: 2rem 0;
    }

    @media (min-width: 768px) {
      .sektoranalyse-rotation-full-width-image {
        margin: 3rem 0;
      }
    }

    .sektoranalyse-rotation-full-width-image img {
      width: 100%;
      height: auto;
      max-height: 400px;
      object-fit: cover;
    }

    .sektoranalyse-rotation-quote {
      background: var(--color-bg-secondary);
      border-left: 4px solid var(--color-secondary);
      padding: 2rem;
      margin: 2rem 0;
      border-radius: var(--radius-md);
      font-style: italic;
    }

    @media (min-width: 768px) {
      .sektoranalyse-rotation-quote {
        padding: 2.5rem;
        margin: 2.5rem 0;
      }
    }

    .sektoranalyse-rotation-quote p {
      color: var(--color-text-primary);
      font-size: 1.125rem;
      line-height: 1.7;
      margin-bottom: 1rem;
    }

    .sektoranalyse-rotation-quote-author {
      color: var(--color-text-secondary);
      font-style: normal;
      font-size: 0.9375rem;
    }

    .sektoranalyse-rotation-disclaimer {
      background: #f0fdf4;
      border: 1px solid #bbf7d0;
      border-radius: var(--radius-lg);
      padding: 2rem;
      margin: 3rem 0 2rem 0;
    }

    @media (min-width: 768px) {
      .sektoranalyse-rotation-disclaimer {
        padding: 2.5rem;
        margin: 4rem 0 2rem 0;
      }
    }

    .sektoranalyse-rotation-disclaimer h3 {
      color: #166534;
      margin-bottom: 1rem;
      display: flex;
      align-items: center;
      gap: 0.75rem;
    }

    .sektoranalyse-rotation-disclaimer p {
      color: #15803d;
      font-size: 0.9375rem;
      line-height: 1.6;
      margin-bottom: 0;
    }

    .sektoranalyse-rotation-related {
      background: var(--color-bg-secondary);
      padding: 3rem 0;
      margin-top: 3rem;
      border-top: 1px solid #e2e8f0;
    }

    @media (min-width: 768px) {
      .sektoranalyse-rotation-related {
        padding: 4rem 0;
        margin-top: 4rem;
      }
    }

    .sektoranalyse-rotation-related h2 {
      color: var(--color-text-primary);
      margin-bottom: 2rem;
      border-bottom: none;
      padding-bottom: 0;
    }

    .sektoranalyse-rotation-related-grid {
      display: grid;
      gap: 1.5rem;
      grid-template-columns: 1fr;
    }

    @media (min-width: 768px) {
      .sektoranalyse-rotation-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .sektoranalyse-rotation-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
      }
    }

    .sektoranalyse-rotation-related-card {
      background: var(--color-bg-card);
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
      display: flex;
      flex-direction: column;
      text-decoration: none;
      color: inherit;
    }

    .sektoranalyse-rotation-related-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }

    .sektoranalyse-rotation-related-card-image {
      width: 100%;
      height: 200px;
      overflow: hidden;
      background: var(--color-bg-secondary);
    }

    .sektoranalyse-rotation-related-card-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    .sektoranalyse-rotation-related-card-content {
      padding: 1.5rem;
      display: flex;
      flex-direction: column;
      gap: 1rem;
      flex-grow: 1;
    }

    @media (min-width: 768px) {
      .sektoranalyse-rotation-related-card-content {
        padding: 2rem;
        gap: 1.25rem;
      }
    }

    .sektoranalyse-rotation-related-card h3 {
      color: var(--color-text-primary);
      margin-bottom: 0;
      font-size: 1.25rem;
    }

    @media (min-width: 768px) {
      .sektoranalyse-rotation-related-card h3 {
        font-size: 1.375rem;
      }
    }

    .sektoranalyse-rotation-related-card p {
      color: var(--color-text-secondary);
      font-size: 0.9375rem;
      margin-bottom: 0;
      flex-grow: 1;
    }

    .sektoranalyse-rotation-related-card-link {
      color: var(--color-primary);
      font-weight: 600;
      font-size: 0.9375rem;
      display: inline-flex;
      align-items: center;
      gap: 0.5rem;
    }

    .sektoranalyse-rotation-related-card-link:hover {
      color: var(--color-primary-hover);
    }

    .sektoranalyse-rotation-table {
      width: 100%;
      border-collapse: collapse;
      margin: 2rem 0;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-sm);
    }

    @media (min-width: 768px) {
      .sektoranalyse-rotation-table {
        margin: 2.5rem 0;
      }
    }

    .sektoranalyse-rotation-table th {
      background: var(--color-primary);
      color: #ffffff;
      padding: 1rem;
      text-align: left;
      font-weight: 600;
    }

    @media (min-width: 768px) {
      .sektoranalyse-rotation-table th {
        padding: 1.25rem;
      }
    }

    .sektoranalyse-rotation-table td {
      padding: 1rem;
      border-bottom: 1px solid #e2e8f0;
      color: var(--color-text-secondary);
    }

    @media (min-width: 768px) {
      .sektoranalyse-rotation-table td {
        padding: 1.25rem;
      }
    }

    .sektoranalyse-rotation-table tbody tr:hover {
      background: var(--color-bg-secondary);
    }

    .sektoranalyse-rotation-table tbody tr:last-child td {
      border-bottom: none;
    }

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

.post-internationale-maerkte-globalhandel {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
}

.post-internationale-maerkte-globalhandel-breadcrumb {
  background: var(--color-bg-secondary);
  padding: 1rem 0;
}

@media (min-width: 768px) {
  .post-internationale-maerkte-globalhandel-breadcrumb {
    padding: 1.5rem 0;
  }
}

.post-internationale-maerkte-globalhandel-breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .post-internationale-maerkte-globalhandel-breadcrumb-nav {
    font-size: 1rem;
  }
}

.post-internationale-maerkte-globalhandel-breadcrumb-nav a {
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.post-internationale-maerkte-globalhandel-breadcrumb-nav a:hover {
  color: var(--color-primary-hover);
}

.post-internationale-maerkte-globalhandel-breadcrumb-nav span {
  color: var(--color-text-secondary);
}

.post-internationale-maerkte-globalhandel-hero {
  background: var(--color-bg-primary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .post-internationale-maerkte-globalhandel-hero {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-internationale-maerkte-globalhandel-hero {
    padding: 5rem 0;
  }
}

.post-internationale-maerkte-globalhandel-hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .post-internationale-maerkte-globalhandel-hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.post-internationale-maerkte-globalhandel-hero-text h1 {
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .post-internationale-maerkte-globalhandel-hero-text h1 {
    margin-bottom: 1.75rem;
  }
}

.post-internationale-maerkte-globalhandel-lead {
  font-size: 1rem;
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .post-internationale-maerkte-globalhandel-lead {
    font-size: 1.125rem;
    margin-bottom: 2rem;
  }
}

.post-internationale-maerkte-globalhandel-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

@media (min-width: 768px) {
  .post-internationale-maerkte-globalhandel-meta {
    font-size: 1rem;
  }
}

.post-internationale-maerkte-globalhandel-meta i {
  color: var(--color-primary);
  margin-right: 0.25rem;
}

.post-internationale-maerkte-globalhandel-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) {
  .post-internationale-maerkte-globalhandel-featured-image {
    max-height: 450px;
  }
}

@media (min-width: 1024px) {
  .post-internationale-maerkte-globalhandel-featured-image {
    max-height: 500px;
  }
}

.post-internationale-maerkte-globalhandel-content-1,
.post-internationale-maerkte-globalhandel-content-2,
.post-internationale-maerkte-globalhandel-content-3,
.post-internationale-maerkte-globalhandel-content-4,
.post-internationale-maerkte-globalhandel-content-5 {
  padding: 3rem 0;
  background: var(--color-bg-primary);
}

@media (min-width: 768px) {
  .post-internationale-maerkte-globalhandel-content-1,
  .post-internationale-maerkte-globalhandel-content-2,
  .post-internationale-maerkte-globalhandel-content-3,
  .post-internationale-maerkte-globalhandel-content-4,
  .post-internationale-maerkte-globalhandel-content-5 {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-internationale-maerkte-globalhandel-content-1,
  .post-internationale-maerkte-globalhandel-content-3,
  .post-internationale-maerkte-globalhandel-content-5 {
    padding: 5rem 0;
  }

  .post-internationale-maerkte-globalhandel-content-2,
  .post-internationale-maerkte-globalhandel-content-4 {
    background: var(--color-bg-secondary);
    padding: 5rem 0;
  }
}

.post-internationale-maerkte-globalhandel-content-wrapper {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: start;
}

@media (min-width: 1024px) {
  .post-internationale-maerkte-globalhandel-content-wrapper {
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
  }
}

.post-internationale-maerkte-globalhandel-text-block,
.post-internationale-maerkte-globalhandel-text-block-full,
.post-internationale-maerkte-globalhandel-text-block-adjacent {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .post-internationale-maerkte-globalhandel-text-block,
  .post-internationale-maerkte-globalhandel-text-block-full,
  .post-internationale-maerkte-globalhandel-text-block-adjacent {
    gap: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .post-internationale-maerkte-globalhandel-text-block,
  .post-internationale-maerkte-globalhandel-text-block-full,
  .post-internationale-maerkte-globalhandel-text-block-adjacent {
    gap: 1.5rem;
  }
}

.post-internationale-maerkte-globalhandel-text-block h2,
.post-internationale-maerkte-globalhandel-text-block-full h2,
.post-internationale-maerkte-globalhandel-text-block-adjacent h2 {
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

.post-internationale-maerkte-globalhandel-text-block p,
.post-internationale-maerkte-globalhandel-text-block-full p,
.post-internationale-maerkte-globalhandel-text-block-adjacent p {
  color: var(--color-text-secondary);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.post-internationale-maerkte-globalhandel-text-block p:last-child,
.post-internationale-maerkte-globalhandel-text-block-full p:last-child,
.post-internationale-maerkte-globalhandel-text-block-adjacent p:last-child {
  margin-bottom: 0;
}

.post-internationale-maerkte-globalhandel-content-image {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.post-internationale-maerkte-globalhandel-content-image:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .post-internationale-maerkte-globalhandel-content-image {
    max-height: 400px;
  }
}

.post-internationale-maerkte-globalhandel-image-block {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.post-internationale-maerkte-globalhandel-image-block-secondary {
  display: grid;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 1024px) {
  .post-internationale-maerkte-globalhandel-image-block-secondary {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: center;
  }
}

.post-internationale-maerkte-globalhandel-image-block-tertiary {
  display: grid;
  gap: 2rem;
  margin-top: 2rem;
}

@media (min-width: 1024px) {
  .post-internationale-maerkte-globalhandel-image-block-tertiary {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
  }
}

.post-internationale-maerkte-globalhandel-image-block-quarter {
  display: none;
}

@media (min-width: 1024px) {
  .post-internationale-maerkte-globalhandel-image-block-quarter {
    display: block;
    float: left;
    width: 45%;
    margin-right: 2rem;
    margin-bottom: 1rem;
  }
}

.post-internationale-maerkte-globalhandel-highlight-box {
  background: #dbeafe;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .post-internationale-maerkte-globalhandel-highlight-box {
    padding: 2rem;
    margin-bottom: 2.5rem;
  }
}

.post-internationale-maerkte-globalhandel-highlight-box h3 {
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .post-internationale-maerkte-globalhandel-highlight-box h3 {
    margin-bottom: 1rem;
  }
}

.post-internationale-maerkte-globalhandel-highlight-box p {
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.post-internationale-maerkte-globalhandel-highlight-box p:last-child {
  margin-bottom: 0;
}

.post-internationale-maerkte-globalhandel-strategy-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .post-internationale-maerkte-globalhandel-strategy-list {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .post-internationale-maerkte-globalhandel-strategy-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.post-internationale-maerkte-globalhandel-strategy-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-md);
  border-top: 3px solid var(--color-secondary);
}

@media (min-width: 768px) {
  .post-internationale-maerkte-globalhandel-strategy-item {
    padding: 1.75rem;
    gap: 1rem;
  }
}

.post-internationale-maerkte-globalhandel-strategy-item h4 {
  color: var(--color-text-primary);
  margin-bottom: 0;
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .post-internationale-maerkte-globalhandel-strategy-item h4 {
    font-size: 1.25rem;
  }
}

.post-internationale-maerkte-globalhandel-strategy-item p {
  color: var(--color-text-secondary);
  margin-bottom: 0;
  line-height: 1.7;
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .post-internationale-maerkte-globalhandel-strategy-item p {
    font-size: 1rem;
  }
}

.post-internationale-maerkte-globalhandel-quote-section {
  margin: 3rem 0;
}

@media (min-width: 768px) {
  .post-internationale-maerkte-globalhandel-quote-section {
    margin: 3.5rem 0;
  }
}

@media (min-width: 1024px) {
  .post-internationale-maerkte-globalhandel-quote-section {
    margin: 4rem 0;
  }
}

.post-internationale-maerkte-globalhandel-quote {
  border-left: 4px solid var(--color-primary);
  padding-left: 2rem;
  padding-right: 1rem;
  font-style: italic;
}

@media (min-width: 768px) {
  .post-internationale-maerkte-globalhandel-quote {
    padding-left: 2.5rem;
    padding-right: 1.5rem;
  }
}

.post-internationale-maerkte-globalhandel-quote p {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 0;
  font-weight: 500;
}

@media (min-width: 768px) {
  .post-internationale-maerkte-globalhandel-quote p {
    font-size: 1.25rem;
  }
}

.post-internationale-maerkte-globalhandel-disclaimer {
  background: var(--color-bg-secondary);
  padding: 3rem 0;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .post-internationale-maerkte-globalhandel-disclaimer {
    padding: 4rem 0;
    margin-top: 4rem;
  }
}

@media (min-width: 1024px) {
  .post-internationale-maerkte-globalhandel-disclaimer {
    padding: 5rem 0;
    margin-top: 5rem;
  }
}

.post-internationale-maerkte-globalhandel-disclaimer-content {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: start;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-secondary);
}

@media (min-width: 768px) {
  .post-internationale-maerkte-globalhandel-disclaimer-content {
    gap: 2rem;
    padding: 2rem;
  }
}

.post-internationale-maerkte-globalhandel-disclaimer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: #e0f2fe;
  border-radius: var(--radius-md);
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .post-internationale-maerkte-globalhandel-disclaimer-icon {
    width: 3rem;
    height: 3rem;
  }
}

.post-internationale-maerkte-globalhandel-disclaimer-icon i {
  font-size: 1.25rem;
  color: var(--color-secondary);
}

@media (min-width: 768px) {
  .post-internationale-maerkte-globalhandel-disclaimer-icon i {
    font-size: 1.5rem;
  }
}

.post-internationale-maerkte-globalhandel-disclaimer-text h3 {
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
  font-size: 1.125rem;
}

@media (min-width: 768px) {
  .post-internationale-maerkte-globalhandel-disclaimer-text h3 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
  }
}

.post-internationale-maerkte-globalhandel-disclaimer-text p {
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
  line-height: 1.7;
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .post-internationale-maerkte-globalhandel-disclaimer-text p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
}

.post-internationale-maerkte-globalhandel-disclaimer-text p:last-child {
  margin-bottom: 0;
}

.post-internationale-maerkte-globalhandel-related {
  padding: 3rem 0;
  background: var(--color-bg-primary);
}

@media (min-width: 768px) {
  .post-internationale-maerkte-globalhandel-related {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .post-internationale-maerkte-globalhandel-related {
    padding: 5rem 0;
  }
}

.post-internationale-maerkte-globalhandel-related h2 {
  color: var(--color-text-primary);
  margin-bottom: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .post-internationale-maerkte-globalhandel-related h2 {
    margin-bottom: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .post-internationale-maerkte-globalhandel-related h2 {
    margin-bottom: 3rem;
  }
}

.post-internationale-maerkte-globalhandel-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .post-internationale-maerkte-globalhandel-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .post-internationale-maerkte-globalhandel-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.post-internationale-maerkte-globalhandel-related-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .post-internationale-maerkte-globalhandel-related-card {
    padding: 2rem;
    gap: 1.25rem;
  }
}

.post-internationale-maerkte-globalhandel-related-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: var(--color-primary);
}

.post-internationale-maerkte-globalhandel-related-card h3 {
  color: var(--color-text-primary);
  margin-bottom: 0;
  font-size: 1.125rem;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .post-internationale-maerkte-globalhandel-related-card h3 {
    font-size: 1.25rem;
  }
}

.post-internationale-maerkte-globalhandel-related-card p {
  color: var(--color-text-secondary);
  margin-bottom: 0;
  line-height: 1.6;
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .post-internationale-maerkte-globalhandel-related-card p {
    font-size: 1rem;
  }
}

.post-internationale-maerkte-globalhandel-related-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  transition: all 0.3s ease;
  margin-top: auto;
}

.post-internationale-maerkte-globalhandel-related-link:hover {
  color: var(--color-primary-hover);
  transform: translateX(4px);
}

.post-internationale-maerkte-globalhandel-related-link i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.post-internationale-maerkte-globalhandel-related-link:hover i {
  transform: translateX(3px);
}

@media (max-width: 1023px) {
  .post-internationale-maerkte-globalhandel-image-block-quarter {
    float: none;
    width: 100%;
    margin-right: 0;
    margin-bottom: 2rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .post-internationale-maerkte-globalhandel-content-image,
  .post-internationale-maerkte-globalhandel-related-card,
  .post-internationale-maerkte-globalhandel-related-link {
    transition: none;
  }
}

.post-schwellenlaender-entwicklungstrends {
      width: 100%;
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-breadcrumbs {
      background: var(--color-bg-secondary);
      padding: 1rem 0;
      margin-bottom: 2rem;
    }

    @media (min-width: 768px) {
      .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-breadcrumbs {
        margin-bottom: 3rem;
      }
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-breadcrumb-link {
      color: var(--color-text-secondary);
      text-decoration: none;
      font-size: 0.875rem;
      transition: color 0.3s ease;
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-breadcrumb-link:hover {
      color: var(--color-primary);
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-breadcrumb-separator {
      color: var(--color-text-muted);
      margin: 0 0.5rem;
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-hero {
      position: relative;
      overflow: hidden;
      padding: 3rem 0;
      background: var(--color-bg-primary);
      margin-bottom: 3rem;
    }

    @media (min-width: 768px) {
      .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-hero {
        padding: 5rem 0;
        margin-bottom: 4rem;
      }
    }

    @media (min-width: 1024px) {
      .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-hero {
        padding: 6rem 0;
        margin-bottom: 5rem;
      }
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-hero-deco-gradient {
      position: absolute;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
      filter: blur(80px);
      z-index: 1;
      pointer-events: none;
      top: -200px;
      left: -150px;
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-hero-deco-accent {
      position: absolute;
      width: 400px;
      height: 400px;
      background: rgba(6, 182, 212, 0.06);
      border-radius: 50%;
      filter: blur(60px);
      z-index: 1;
      pointer-events: none;
      bottom: -100px;
      right: -100px;
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-hero-deco-shape {
      position: absolute;
      width: 300px;
      height: 350px;
      background: rgba(37, 99, 235, 0.05);
      border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
      z-index: 2;
      pointer-events: none;
      top: 10%;
      right: 5%;
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-hero-content {
      position: relative;
      z-index: 10;
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-hero h1 {
      color: var(--color-text-primary);
      margin-bottom: 1rem;
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-hero-meta {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 2rem;
    }

    @media (min-width: 768px) {
      .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-hero-meta {
        flex-direction: row;
        align-items: center;
        margin-bottom: 2.5rem;
      }
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-hero-badge {
      display: inline-block;
      width: fit-content;
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-hero-read-time {
      color: var(--color-text-secondary);
      font-size: 0.875rem;
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-hero p {
      color: var(--color-text-secondary);
      font-size: 1.125rem;
      margin-bottom: 2rem;
      max-width: 600px;
    }

    @media (min-width: 768px) {
      .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-hero p {
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
      }
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-hero-image {
      width: 100%;
      max-width: 100%;
      height: auto;
      max-height: 400px;
      object-fit: cover;
      border-radius: var(--radius-lg);
      margin-top: 2rem;
    }

    @media (min-width: 768px) {
      .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-hero-image {
        margin-top: 2.5rem;
      }
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-content-section {
      position: relative;
      overflow: hidden;
      padding: 3rem 0;
      background: var(--color-bg-primary);
      margin-bottom: 0;
    }

    @media (min-width: 768px) {
      .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-content-section {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-content-section {
        padding: 5rem 0;
      }
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-content-section:nth-child(even) {
      background: var(--color-bg-secondary);
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-content-deco-1 {
      position: absolute;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(6, 182, 212, 0.07) 0%, transparent 70%);
      filter: blur(70px);
      z-index: 1;
      pointer-events: none;
      top: -150px;
      right: -100px;
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-content-deco-2 {
      position: absolute;
      width: 300px;
      height: 300px;
      background: rgba(37, 99, 235, 0.05);
      border-radius: 40% 60% 50% 50% / 60% 40% 40% 50%;
      z-index: 2;
      pointer-events: none;
      bottom: 10%;
      left: -50px;
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-content-deco-3 {
      position: absolute;
      width: 2px;
      height: 100px;
      background: linear-gradient(180deg, rgba(37, 99, 235, 0.3) 0%, transparent 100%);
      z-index: 1;
      pointer-events: none;
      top: 20%;
      left: 10%;
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-content-wrapper {
      position: relative;
      z-index: 10;
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-content-section h2 {
      color: var(--color-text-primary);
      margin-bottom: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-content-section h2 {
        margin-bottom: 2rem;
      }
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-content-section p {
      color: var(--color-text-secondary);
      margin-bottom: 1.5rem;
      line-height: 1.8;
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-content-section ul {
      color: var(--color-text-secondary);
      margin-bottom: 1.5rem;
      margin-left: 2rem;
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-content-section li {
      margin-bottom: 0.75rem;
      color: var(--color-text-secondary);
      line-height: 1.7;
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-content-image {
      width: 100%;
      max-height: 350px;
      object-fit: cover;
      border-radius: var(--radius-lg);
      margin: 2rem 0;
    }

    @media (min-width: 768px) {
      .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-content-image {
        margin: 2.5rem 0;
      }
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-content-highlight {
      background: rgba(37, 99, 235, 0.08);
      border-left: 4px solid var(--color-primary);
      padding: 1.5rem;
      border-radius: var(--radius-md);
      margin: 2rem 0;
    }

    @media (min-width: 768px) {
      .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-content-highlight {
        padding: 2rem;
        margin: 2.5rem 0;
      }
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-content-highlight h3 {
      color: var(--color-primary);
      margin-bottom: 0.75rem;
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-content-highlight p {
      color: var(--color-text-secondary);
      margin-bottom: 0;
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-quote-section {
      position: relative;
      overflow: hidden;
      padding: 3rem 0;
      background: var(--color-bg-tertiary);
      margin: 3rem 0;
    }

    @media (min-width: 768px) {
      .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-quote-section {
        padding: 4rem 0;
        margin: 4rem 0;
      }
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-quote-deco {
      position: absolute;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
      filter: blur(60px);
      z-index: 1;
      pointer-events: none;
      top: -100px;
      left: -100px;
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-quote-content {
      position: relative;
      z-index: 10;
      text-align: center;
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-quote-text {
      font-size: 1.5rem;
      font-weight: 600;
      color: var(--color-text-primary);
      margin-bottom: 1.5rem;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-quote-text {
        font-size: 2rem;
        margin-bottom: 2rem;
      }
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-quote-mark {
      font-size: 3rem;
      color: var(--color-primary);
      opacity: 0.3;
      margin-bottom: 0.5rem;
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-disclaimer-section {
      position: relative;
      overflow: hidden;
      padding: 3rem 0;
      background: var(--color-bg-secondary);
      margin: 3rem 0 0 0;
    }

    @media (min-width: 768px) {
      .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-disclaimer-section {
        padding: 4rem 0;
        margin: 4rem 0 0 0;
      }
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-disclaimer-deco-1 {
      position: absolute;
      width: 450px;
      height: 450px;
      background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
      filter: blur(70px);
      z-index: 1;
      pointer-events: none;
      top: -100px;
      right: -100px;
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-disclaimer-deco-2 {
      position: absolute;
      width: 250px;
      height: 250px;
      background: rgba(6, 182, 212, 0.05);
      border-radius: 45% 55% 50% 50% / 50% 50% 45% 55%;
      z-index: 2;
      pointer-events: none;
      bottom: -50px;
      left: -50px;
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-disclaimer-content {
      position: relative;
      z-index: 10;
      background: var(--color-bg-primary);
      padding: 2rem;
      border-radius: var(--radius-lg);
      border-left: 4px solid var(--color-primary);
    }

    @media (min-width: 768px) {
      .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-disclaimer-content {
        padding: 2.5rem;
      }
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-disclaimer-title {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1rem;
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-disclaimer-icon {
      font-size: 1.25rem;
      color: var(--color-primary);
      flex-shrink: 0;
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-disclaimer-title h3 {
      color: var(--color-text-primary);
      margin-bottom: 0;
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-disclaimer-text {
      color: var(--color-text-secondary);
      margin-bottom: 0;
      line-height: 1.7;
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-related-section {
      position: relative;
      overflow: hidden;
      padding: 3rem 0;
      background: var(--color-bg-primary);
    }

    @media (min-width: 768px) {
      .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-related-section {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-related-section {
        padding: 5rem 0;
      }
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-related-deco-1 {
      position: absolute;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(6, 182, 212, 0.07) 0%, transparent 70%);
      filter: blur(75px);
      z-index: 1;
      pointer-events: none;
      bottom: -150px;
      right: -100px;
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-related-deco-2 {
      position: absolute;
      width: 300px;
      height: 300px;
      background: rgba(37, 99, 235, 0.05);
      border-radius: 50% 40% 60% 40% / 40% 50% 40% 60%;
      z-index: 2;
      pointer-events: none;
      top: 5%;
      left: -100px;
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-related-wrapper {
      position: relative;
      z-index: 10;
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-related-title {
      color: var(--color-text-primary);
      margin-bottom: 2rem;
      text-align: center;
    }

    @media (min-width: 768px) {
      .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-related-title {
        margin-bottom: 3rem;
      }
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-related-grid {
      display: grid;
      gap: 1.5rem;
      grid-template-columns: 1fr;
    }

    @media (min-width: 768px) {
      .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-related-grid {
        gap: 2rem;
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (min-width: 1024px) {
      .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-related-grid {
        gap: 2.5rem;
        grid-template-columns: repeat(3, 1fr);
      }
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-related-card {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding: 1.5rem;
      background: var(--color-bg-card);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
      text-decoration: none;
    }

    @media (min-width: 768px) {
      .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-related-card {
        padding: 2rem;
        gap: 1.25rem;
      }
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-related-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-6px);
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-related-card h3 {
      color: var(--color-text-primary);
      margin-bottom: 0;
      transition: color 0.3s ease;
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-related-card:hover h3 {
      color: var(--color-primary);
    }

    .post-schwellenlaender-entwicklungstrends .schwellenlaender-entwicklungstrends-related-card p {
      color: var(--color-text-secondary);
      margin-bottom: 0;
      font-size: 0.95rem;
    }

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

.post-makrostrategien-szenarioplanung {
  background: var(--color-bg-primary);
}

.makrostrategien-szenarioplanung-breadcrumbs {
  background: var(--color-bg-secondary);
  padding: 1rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.makrostrategien-szenarioplanung-breadcrumbs-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

.makrostrategien-szenarioplanung-breadcrumbs a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.makrostrategien-szenarioplanung-breadcrumbs a:hover {
  color: var(--color-primary-hover);
  text-decoration: underline;
}

.makrostrategien-szenarioplanung-breadcrumbs span {
  color: var(--color-text-muted);
}

.makrostrategien-szenarioplanung-hero {
  position: relative;
  background: var(--color-bg-primary);
  padding: 3rem 0;
  overflow: hidden;
}

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

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

.makrostrategien-szenarioplanung-hero-deco-1 {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-hero-deco-2 {
  position: absolute;
  top: 5%;
  right: 10%;
  width: 250px;
  height: 250px;
  background: rgba(6, 182, 212, 0.06);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-hero-deco-3 {
  position: absolute;
  bottom: 15%;
  left: 20%;
  width: 350px;
  height: 350px;
  background: rgba(139, 92, 246, 0.07);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-hero-deco-4 {
  position: absolute;
  top: 30%;
  right: 15%;
  width: 200px;
  height: 200px;
  background: rgba(34, 197, 94, 0.06);
  border-radius: 45% 55% 50% 50% / 55% 45% 55% 45%;
  filter: blur(65px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-hero-deco-5 {
  position: absolute;
  bottom: 5%;
  right: 5%;
  width: 280px;
  height: 280px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-hero-deco-6 {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 150px;
  height: 150px;
  background: rgba(59, 130, 246, 0.04);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-hero-deco-7 {
  position: absolute;
  bottom: 20%;
  right: 30%;
  width: 200px;
  height: 200px;
  background: rgba(6, 182, 212, 0.05);
  border-radius: 40% 60% 50% 50% / 50% 50% 60% 40%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

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

@media (min-width: 1024px) {
  .makrostrategien-szenarioplanung-hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.makrostrategien-szenarioplanung-hero-text h1 {
  color: var(--color-text-primary);
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .makrostrategien-szenarioplanung-hero-text h1 {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .makrostrategien-szenarioplanung-hero-text h1 {
    font-size: 3.5rem;
  }
}

.makrostrategien-szenarioplanung-hero-lead {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .makrostrategien-szenarioplanung-hero-lead {
    font-size: 1.125rem;
  }
}

.makrostrategien-szenarioplanung-hero-meta {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  color: var(--color-text-muted);
  font-size: 0.875rem;
}

.makrostrategien-szenarioplanung-meta-sep {
  opacity: 0.5;
}

.makrostrategien-szenarioplanung-hero-image {
  width: 100%;
  height: auto;
}

.makrostrategien-szenarioplanung-featured-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  display: block;
}

.makrostrategien-szenarioplanung-introduction {
  position: relative;
  background: var(--color-bg-secondary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .makrostrategien-szenarioplanung-introduction {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .makrostrategien-szenarioplanung-introduction {
    padding: 5rem 0;
  }
}

.makrostrategien-szenarioplanung-intro-deco-1 {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 280px;
  height: 280px;
  background: rgba(37, 99, 235, 0.07);
  border-radius: 50%;
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-intro-deco-2 {
  position: absolute;
  bottom: 10%;
  left: 8%;
  width: 320px;
  height: 320px;
  background: rgba(6, 182, 212, 0.06);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-intro-deco-3 {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 200px;
  height: 200px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 50%;
  filter: blur(65px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-intro-deco-4 {
  position: absolute;
  bottom: 30%;
  right: 15%;
  width: 250px;
  height: 250px;
  background: rgba(34, 197, 94, 0.06);
  border-radius: 45% 55% 50% 50% / 55% 45% 55% 45%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-intro-deco-5 {
  position: absolute;
  top: 5%;
  left: 15%;
  width: 150px;
  height: 150px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 50%;
  filter: blur(55px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-intro-deco-6 {
  position: absolute;
  bottom: 5%;
  right: 25%;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 40% 60% 50% 50% / 50% 50% 60% 40%;
  filter: blur(65px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-intro-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .makrostrategien-szenarioplanung-intro-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.makrostrategien-szenarioplanung-intro-text {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.makrostrategien-szenarioplanung-intro-text p {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.8;
}

.makrostrategien-szenarioplanung-intro-image {
  width: 100%;
  height: auto;
}

.makrostrategien-szenarioplanung-intro-img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

.makrostrategien-szenarioplanung-fundamentals {
  position: relative;
  background: var(--color-bg-primary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .makrostrategien-szenarioplanung-fundamentals {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .makrostrategien-szenarioplanung-fundamentals {
    padding: 5rem 0;
  }
}

.makrostrategien-szenarioplanung-fund-deco-1 {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: rgba(6, 182, 212, 0.07);
  border-radius: 50%;
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-fund-deco-2 {
  position: absolute;
  bottom: 15%;
  right: 10%;
  width: 280px;
  height: 280px;
  background: rgba(37, 99, 235, 0.06);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-fund-deco-3 {
  position: absolute;
  top: 30%;
  right: 20%;
  width: 200px;
  height: 200px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-fund-deco-4 {
  position: absolute;
  bottom: 5%;
  left: 20%;
  width: 250px;
  height: 250px;
  background: rgba(34, 197, 94, 0.06);
  border-radius: 45% 55% 50% 50% / 55% 45% 55% 45%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-fund-deco-5 {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 180px;
  height: 180px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 50%;
  filter: blur(55px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-fund-content {
  position: relative;
  z-index: 10;
}

.makrostrategien-szenarioplanung-fund-content h2 {
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
}

.makrostrategien-szenarioplanung-fund-content p {
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.makrostrategien-szenarioplanung-fund-image {
  width: 100%;
  height: auto;
  margin: 2rem 0;
}

.makrostrategien-szenarioplanung-section-img {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: block;
}

.makrostrategien-szenarioplanung-scenarios-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .makrostrategien-szenarioplanung-scenarios-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .makrostrategien-szenarioplanung-scenarios-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (min-width: 768px) {
  .makrostrategien-szenarioplanung-scenario-card {
    padding: 2rem;
  }
}

.makrostrategien-szenarioplanung-scenario-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: var(--color-primary);
}

.makrostrategien-szenarioplanung-scenario-icon {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dbeafe;
  border-radius: var(--radius-md);
  font-size: 1.25rem;
  color: var(--color-primary);
}

.makrostrategien-szenarioplanung-scenario-card h3 {
  color: var(--color-text-primary);
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.makrostrategien-szenarioplanung-scenario-card p {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 0;
}

.makrostrategien-szenarioplanung-quote-section {
  position: relative;
  background: var(--color-bg-secondary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .makrostrategien-szenarioplanung-quote-section {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .makrostrategien-szenarioplanung-quote-section {
    padding: 5rem 0;
  }
}

.makrostrategien-szenarioplanung-quote-deco-1 {
  position: absolute;
  top: 5%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 50%;
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-quote-deco-2 {
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 280px;
  height: 280px;
  background: rgba(6, 182, 212, 0.07);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-quote-deco-3 {
  position: absolute;
  top: 30%;
  left: 15%;
  width: 200px;
  height: 200px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 50%;
  filter: blur(65px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-quote-deco-4 {
  position: absolute;
  bottom: 20%;
  right: 20%;
  width: 250px;
  height: 250px;
  background: rgba(34, 197, 94, 0.05);
  border-radius: 45% 55% 50% 50% / 55% 45% 55% 45%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-quote-content {
  position: relative;
  z-index: 10;
  text-align: center;
}

.makrostrategien-szenarioplanung-quote {
  color: var(--color-text-primary);
  font-size: 1.5rem;
  line-height: 1.6;
  font-weight: 600;
  margin: 0;
  padding: 0;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-family: var(--font-heading);
}

@media (min-width: 768px) {
  .makrostrategien-szenarioplanung-quote {
    font-size: 2rem;
  }
}

.makrostrategien-szenarioplanung-framework {
  position: relative;
  background: var(--color-bg-primary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .makrostrategien-szenarioplanung-framework {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .makrostrategien-szenarioplanung-framework {
    padding: 5rem 0;
  }
}

.makrostrategien-szenarioplanung-framework-deco-1 {
  position: absolute;
  top: 8%;
  left: 5%;
  width: 320px;
  height: 320px;
  background: rgba(6, 182, 212, 0.07);
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-framework-deco-2 {
  position: absolute;
  top: 25%;
  right: 8%;
  width: 280px;
  height: 280px;
  background: rgba(37, 99, 235, 0.06);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-framework-deco-3 {
  position: absolute;
  bottom: 10%;
  left: 15%;
  width: 250px;
  height: 250px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 50%;
  filter: blur(65px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-framework-deco-4 {
  position: absolute;
  bottom: 20%;
  right: 15%;
  width: 300px;
  height: 300px;
  background: rgba(34, 197, 94, 0.06);
  border-radius: 45% 55% 50% 50% / 55% 45% 55% 45%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-framework-deco-5 {
  position: absolute;
  top: 50%;
  left: 20%;
  width: 180px;
  height: 180px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 50%;
  filter: blur(55px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-framework-deco-6 {
  position: absolute;
  top: 10%;
  right: 40%;
  width: 150px;
  height: 150px;
  background: rgba(6, 182, 212, 0.04);
  border-radius: 50%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-framework-content {
  position: relative;
  z-index: 10;
}

.makrostrategien-szenarioplanung-framework-content h2 {
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.makrostrategien-szenarioplanung-framework-content > p {
  color: var(--color-text-secondary);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.makrostrategien-szenarioplanung-framework-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2.5rem 0;
}

@media (min-width: 768px) {
  .makrostrategien-szenarioplanung-framework-steps {
    gap: 2rem;
  }
}

.makrostrategien-szenarioplanung-step {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: 1.5rem;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-primary);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .makrostrategien-szenarioplanung-step {
    padding: 2rem;
    gap: 2rem;
  }
}

.makrostrategien-szenarioplanung-step:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.makrostrategien-szenarioplanung-step-number {
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-primary);
  color: #ffffff;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.125rem;
  font-family: var(--font-heading);
}

.makrostrategien-szenarioplanung-step h3 {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.makrostrategien-szenarioplanung-step p {
  color: var(--color-text-secondary);
  margin-bottom: 0;
  font-size: 0.9375rem;
}

.makrostrategien-szenarioplanung-framework-image {
  width: 100%;
  height: auto;
  margin: 2.5rem 0;
}

.makrostrategien-szenarioplanung-examples {
  position: relative;
  background: var(--color-bg-secondary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .makrostrategien-szenarioplanung-examples {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .makrostrategien-szenarioplanung-examples {
    padding: 5rem 0;
  }
}

.makrostrategien-szenarioplanung-examples-deco-1 {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: rgba(37, 99, 235, 0.07);
  border-radius: 50%;
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-examples-deco-2 {
  position: absolute;
  bottom: 15%;
  left: 8%;
  width: 280px;
  height: 280px;
  background: rgba(6, 182, 212, 0.06);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-examples-deco-3 {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 200px;
  height: 200px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-examples-deco-4 {
  position: absolute;
  bottom: 25%;
  right: 20%;
  width: 250px;
  height: 250px;
  background: rgba(34, 197, 94, 0.06);
  border-radius: 45% 55% 50% 50% / 55% 45% 55% 45%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-examples-deco-5 {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 180px;
  height: 180px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 50%;
  filter: blur(55px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-examples-content {
  position: relative;
  z-index: 10;
}

.makrostrategien-szenarioplanung-examples-content h2 {
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.makrostrategien-szenarioplanung-examples-content > p {
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.makrostrategien-szenarioplanung-examples-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .makrostrategien-szenarioplanung-examples-list {
    gap: 2rem;
  }
}

.makrostrategien-szenarioplanung-example-item {
  padding: 1.5rem;
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .makrostrategien-szenarioplanung-example-item {
    padding: 2rem;
  }
}

.makrostrategien-szenarioplanung-example-item:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--color-primary);
}

.makrostrategien-szenarioplanung-example-item h3 {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

.makrostrategien-szenarioplanung-example-item p {
  color: var(--color-text-secondary);
  margin-bottom: 0.75rem;
  line-height: 1.7;
}

.makrostrategien-szenarioplanung-example-item p:last-child {
  margin-bottom: 0;
}

.makrostrategien-szenarioplanung-examples-image {
  width: 100%;
  height: auto;
  margin: 2rem 0;
}

.makrostrategien-szenarioplanung-risks {
  position: relative;
  background: var(--color-bg-primary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .makrostrategien-szenarioplanung-risks {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .makrostrategien-szenarioplanung-risks {
    padding: 5rem 0;
  }
}

.makrostrategien-szenarioplanung-risks-deco-1 {
  position: absolute;
  top: 8%;
  left: 5%;
  width: 300px;
  height: 300px;
  background: rgba(6, 182, 212, 0.07);
  border-radius: 50%;
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-risks-deco-2 {
  position: absolute;
  bottom: 15%;
  right: 10%;
  width: 280px;
  height: 280px;
  background: rgba(37, 99, 235, 0.06);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-risks-deco-3 {
  position: absolute;
  top: 40%;
  right: 15%;
  width: 200px;
  height: 200px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-risks-deco-4 {
  position: absolute;
  bottom: 5%;
  left: 25%;
  width: 250px;
  height: 250px;
  background: rgba(34, 197, 94, 0.06);
  border-radius: 45% 55% 50% 50% / 55% 45% 55% 45%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-risks-content {
  position: relative;
  z-index: 10;
}

.makrostrategien-szenarioplanung-risks-content h2 {
  color: var(--color-text-primary);
  margin-bottom: 1rem;
}

.makrostrategien-szenarioplanung-risks-content > p {
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.makrostrategien-szenarioplanung-risks-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .makrostrategien-szenarioplanung-risks-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

.makrostrategien-szenarioplanung-risk-item {
  padding: 1.5rem;
  background: var(--color-bg-secondary);
  border-radius: var(--radius-lg);
  border-left: 3px solid #f59e0b;
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .makrostrategien-szenarioplanung-risk-item {
    padding: 2rem;
  }
}

.makrostrategien-szenarioplanung-risk-item:hover {
  box-shadow: var(--shadow-md);
}

.makrostrategien-szenarioplanung-risk-item h3 {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

.makrostrategien-szenarioplanung-risk-item p {
  color: var(--color-text-secondary);
  margin-bottom: 0;
  font-size: 0.9375rem;
}

.makrostrategien-szenarioplanung-closing {
  position: relative;
  background: var(--color-bg-secondary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .makrostrategien-szenarioplanung-closing {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .makrostrategien-szenarioplanung-closing {
    padding: 5rem 0;
  }
}

.makrostrategien-szenarioplanung-closing-deco-1 {
  position: absolute;
  top: 10%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 50%;
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-closing-deco-2 {
  position: absolute;
  bottom: 10%;
  left: 10%;
  width: 280px;
  height: 280px;
  background: rgba(6, 182, 212, 0.07);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-closing-deco-3 {
  position: absolute;
  top: 30%;
  left: 15%;
  width: 200px;
  height: 200px;
  background: rgba(139, 92, 246, 0.06);
  border-radius: 50%;
  filter: blur(65px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-closing-deco-4 {
  position: absolute;
  bottom: 20%;
  right: 15%;
  width: 250px;
  height: 250px;
  background: rgba(34, 197, 94, 0.05);
  border-radius: 45% 55% 50% 50% / 55% 45% 55% 45%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-closing-deco-5 {
  position: absolute;
  top: 50%;
  left: 20%;
  width: 180px;
  height: 180px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 50%;
  filter: blur(55px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-closing-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.makrostrategien-szenarioplanung-closing-content h2 {
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
}

.makrostrategien-szenarioplanung-closing-content p {
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
  font-size: 1rem;
}

.makrostrategien-szenarioplanung-disclaimer {
  position: relative;
  background: var(--color-bg-primary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .makrostrategien-szenarioplanung-disclaimer {
    padding: 4rem 0;
  }
}

.makrostrategien-szenarioplanung-disclaimer-deco-1 {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 250px;
  height: 250px;
  background: rgba(6, 182, 212, 0.06);
  border-radius: 50%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-disclaimer-deco-2 {
  position: absolute;
  bottom: 10%;
  right: 10%;
  width: 280px;
  height: 280px;
  background: rgba(37, 99, 235, 0.05);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  filter: blur(65px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-disclaimer-deco-3 {
  position: absolute;
  top: 30%;
  right: 20%;
  width: 150px;
  height: 150px;
  background: rgba(139, 92, 246, 0.04);
  border-radius: 50%;
  filter: blur(55px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-disclaimer-content {
  position: relative;
  z-index: 10;
}

.makrostrategien-szenarioplanung-disclaimer-box {
  display: flex;
  flex-direction: row;
  gap: 1.5rem;
  padding: 1.5rem;
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  border-radius: var(--radius-lg);
}

@media (min-width: 768px) {
  .makrostrategien-szenarioplanung-disclaimer-box {
    padding: 2rem;
    gap: 2rem;
  }
}

.makrostrategien-szenarioplanung-disclaimer-icon {
  flex-shrink: 0;
  font-size: 1.5rem;
  color: #d97706;
}

.makrostrategien-szenarioplanung-disclaimer-box h3 {
  color: #92400e;
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.makrostrategien-szenarioplanung-disclaimer-box p {
  color: #78350f;
  margin-bottom: 0;
  font-size: 0.9375rem;
  line-height: 1.7;
}

.makrostrategien-szenarioplanung-related {
  position: relative;
  background: var(--color-bg-secondary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .makrostrategien-szenarioplanung-related {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .makrostrategien-szenarioplanung-related {
    padding: 5rem 0;
  }
}

.makrostrategien-szenarioplanung-related-deco-1 {
  position: absolute;
  top: 8%;
  right: 5%;
  width: 300px;
  height: 300px;
  background: rgba(37, 99, 235, 0.07);
  border-radius: 50%;
  filter: blur(75px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-related-deco-2 {
  position: absolute;
  bottom: 15%;
  left: 8%;
  width: 280px;
  height: 280px;
  background: rgba(6, 182, 212, 0.06);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-related-deco-3 {
  position: absolute;
  top: 30%;
  left: 50%;
  width: 200px;
  height: 200px;
  background: rgba(139, 92, 246, 0.05);
  border-radius: 50%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-related-deco-4 {
  position: absolute;
  bottom: 20%;
  right: 20%;
  width: 250px;
  height: 250px;
  background: rgba(34, 197, 94, 0.06);
  border-radius: 45% 55% 50% 50% / 55% 45% 55% 45%;
  filter: blur(70px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-related-deco-5 {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 180px;
  height: 180px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 50%;
  filter: blur(55px);
  z-index: 1;
  pointer-events: none;
}

.makrostrategien-szenarioplanung-related-content {
  position: relative;
  z-index: 10;
}

.makrostrategien-szenarioplanung-related-content h2 {
  color: var(--color-text-primary);
  margin-bottom: 2rem;
}

.makrostrategien-szenarioplanung-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .makrostrategien-szenarioplanung-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .makrostrategien-szenarioplanung-related-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.makrostrategien-szenarioplanung-related-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .makrostrategien-szenarioplanung-related-card {
    gap: 1.25rem;
  }
}

.makrostrategien-szenarioplanung-related-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px);
}

.makrostrategien-szenarioplanung-related-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
}

.makrostrategien-szenarioplanung-related-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.makrostrategien-szenarioplanung-related-card:hover .makrostrategien-szenarioplanung-related-card-image img {
  transform: scale(1.05);
}

.makrostrategien-szenarioplanung-related-card-content {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1rem;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .makrostrategien-szenarioplanung-related-card-content {
    padding: 1.5rem;
    gap: 1rem;
  }
}

.makrostrategien-szenarioplanung-related-card h3 {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  margin-bottom: 0;
}

.makrostrategien-szenarioplanung-related-card p {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  margin-bottom: 0;
  flex-grow: 1;
}

.makrostrategien-szenarioplanung-related-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  text-decoration: none;
  transition: all 0.3s ease;
  margin-top: 0.5rem;
}

.makrostrategien-szenarioplanung-related-link:hover {
  color: var(--color-primary-hover);
  gap: 0.75rem;
}

.makrostrategien-szenarioplanung-related-link i {
  font-size: 0.75rem;
}

@media (max-width: 767px) {
  .makrostrategien-szenarioplanung-hero-content {
    gap: 1.5rem;
  }

  .makrostrategien-szenarioplanung-intro-content {
    gap: 1.5rem;
  }

  .makrostrategien-szenarioplanung-scenarios-grid {
    gap: 1rem;
  }

  .makrostrategien-szenarioplanung-framework-steps {
    gap: 1rem;
  }

  .makrostrategien-szenarioplanung-example-item {
    padding: 1rem;
  }

  .makrostrategien-szenarioplanung-risks-grid {
    gap: 1rem;
  }
}

.post-big-data-machine-learning-handel {
      background: var(--color-bg-primary);
      color: var(--color-text-primary);
    }

    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-breadcrumbs {
      padding: 1rem 0;
      font-size: 0.875rem;
    }

    @media (min-width: 768px) {
      .post-big-data-machine-learning-handel .big-data-machine-learning-handel-breadcrumbs {
        padding: 1.5rem 0;
        font-size: 0.9375rem;
      }
    }

    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-breadcrumbs a {
      color: var(--color-secondary);
      margin-right: 0.5rem;
    }

    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-breadcrumbs a:hover {
      color: var(--color-primary-hover);
    }

    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-hero {
      padding: 2rem 0;
      background: var(--color-bg-secondary);
    }

    @media (min-width: 768px) {
      .post-big-data-machine-learning-handel .big-data-machine-learning-handel-hero {
        padding: 3rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-big-data-machine-learning-handel .big-data-machine-learning-handel-hero {
        padding: 4rem 0;
      }
    }

    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-hero-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 1024px) {
      .post-big-data-machine-learning-handel .big-data-machine-learning-handel-hero-content {
        flex-direction: row;
        gap: 2rem;
        align-items: center;
      }
    }

    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-hero-text {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-hero h1 {
      color: var(--color-text-primary);
      font-size: 2rem;
      margin-bottom: 0;
    }

    @media (min-width: 768px) {
      .post-big-data-machine-learning-handel .big-data-machine-learning-handel-hero h1 {
        font-size: 2.75rem;
      }
    }

    @media (min-width: 1024px) {
      .post-big-data-machine-learning-handel .big-data-machine-learning-handel-hero h1 {
        font-size: 3.5rem;
      }
    }

    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-hero-lead {
      color: var(--color-text-secondary);
      font-size: 1rem;
      line-height: 1.7;
      margin-bottom: 0;
    }

    @media (min-width: 768px) {
      .post-big-data-machine-learning-handel .big-data-machine-learning-handel-hero-lead {
        font-size: 1.125rem;
      }
    }

    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      font-size: 0.875rem;
      color: var(--color-text-muted);
    }

    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-hero-image {
      flex: 1;
      min-width: 0;
    }

    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-hero-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: 1024px) {
      .post-big-data-machine-learning-handel .big-data-machine-learning-handel-hero-image img {
        max-height: 400px;
      }
    }

    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-content-section {
      padding: 3rem 0;
    }

    @media (min-width: 768px) {
      .post-big-data-machine-learning-handel .big-data-machine-learning-handel-content-section {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-big-data-machine-learning-handel .big-data-machine-learning-handel-content-section {
        padding: 5rem 0;
      }
    }

    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-section-1 {
      background: var(--color-bg-primary);
    }

    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-section-1 h2,
    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-section-1 h3 {
      color: var(--color-text-primary);
    }

    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-section-1 p,
    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-section-1 li {
      color: var(--color-text-secondary);
    }

    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-section-2 {
      background: var(--color-bg-secondary);
    }

    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-section-2 h2,
    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-section-2 h3 {
      color: var(--color-text-primary);
    }

    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-section-2 p,
    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-section-2 li {
      color: var(--color-text-secondary);
    }

    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-section-3 {
      background: var(--color-bg-primary);
    }

    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-section-3 h2,
    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-section-3 h3 {
      color: var(--color-text-primary);
    }

    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-section-3 p,
    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-section-3 li {
      color: var(--color-text-secondary);
    }

    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-content-wrapper {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .post-big-data-machine-learning-handel .big-data-machine-learning-handel-content-wrapper {
        gap: 2.5rem;
      }
    }

    @media (min-width: 1024px) {
      .post-big-data-machine-learning-handel .big-data-machine-learning-handel-content-wrapper {
        gap: 3rem;
      }
    }

    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-text-block {
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-text-block h2 {
      margin-bottom: 0;
    }

    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-text-block h3 {
      margin-bottom: 0;
    }

    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-text-block p {
      margin-bottom: 0;
    }

    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-image-block {
      width: 100%;
      margin: 1rem 0;
    }

    @media (min-width: 768px) {
      .post-big-data-machine-learning-handel .big-data-machine-learning-handel-image-block {
        margin: 1.5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-big-data-machine-learning-handel .big-data-machine-learning-handel-image-block {
        margin: 2rem 0;
      }
    }

    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-image-block img {
      width: 100%;
      height: auto;
      max-height: 380px;
      object-fit: cover;
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-md);
    }

    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-highlight {
      padding: 1.25rem;
      background: #dbeafe;
      border-left: 4px solid var(--color-primary);
      border-radius: var(--radius-md);
      margin: 1.5rem 0;
    }

    @media (min-width: 768px) {
      .post-big-data-machine-learning-handel .big-data-machine-learning-handel-highlight {
        padding: 1.75rem;
        margin: 2rem 0;
      }
    }

    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-highlight h3 {
      color: var(--color-primary);
      margin-top: 0;
      margin-bottom: 0.5rem;
    }

    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-highlight p {
      color: #1e40af;
      margin-bottom: 0;
    }

    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-quote {
      padding: 2rem 1.5rem;
      border-left: 4px solid var(--color-secondary);
      background: var(--color-bg-tertiary);
      border-radius: var(--radius-md);
      margin: 2rem 0;
      font-style: italic;
    }

    @media (min-width: 768px) {
      .post-big-data-machine-learning-handel .big-data-machine-learning-handel-quote {
        padding: 2.5rem 2rem;
        margin: 2.5rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-big-data-machine-learning-handel .big-data-machine-learning-handel-quote {
        padding: 3rem 2.5rem;
        margin: 3rem 0;
      }
    }

    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-quote p {
      color: var(--color-text-primary);
      font-size: 1.125rem;
      margin-bottom: 0;
      line-height: 1.8;
    }

    @media (min-width: 768px) {
      .post-big-data-machine-learning-handel .big-data-machine-learning-handel-quote p {
        font-size: 1.25rem;
      }
    }

    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-disclaimer {
      padding: 1.5rem;
      background: #f0fdf4;
      border: 1px solid #dcfce7;
      border-radius: var(--radius-lg);
      margin: 3rem 0;
    }

    @media (min-width: 768px) {
      .post-big-data-machine-learning-handel .big-data-machine-learning-handel-disclaimer {
        padding: 2rem;
        margin: 4rem 0;
      }
    }

    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-disclaimer h3 {
      color: #166534;
      margin-bottom: 0.75rem;
      display: flex;
      align-items: center;
      gap: 0.5rem;
    }

    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-disclaimer p {
      color: #15803d;
      margin-bottom: 0;
      font-size: 0.9375rem;
    }

    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-related {
      padding: 3rem 0;
      background: var(--color-bg-secondary);
      border-top: 1px solid #e2e8f0;
    }

    @media (min-width: 768px) {
      .post-big-data-machine-learning-handel .big-data-machine-learning-handel-related {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .post-big-data-machine-learning-handel .big-data-machine-learning-handel-related {
        padding: 5rem 0;
      }
    }

    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-related h2 {
      color: var(--color-text-primary);
      margin-bottom: 2rem;
      text-align: center;
    }

    @media (min-width: 768px) {
      .post-big-data-machine-learning-handel .big-data-machine-learning-handel-related h2 {
        margin-bottom: 2.5rem;
      }
    }

    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-related-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .post-big-data-machine-learning-handel .big-data-machine-learning-handel-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .post-big-data-machine-learning-handel .big-data-machine-learning-handel-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
      }
    }

    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-related-card {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding: 1.5rem;
      background: var(--color-bg-card);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
    }

    @media (min-width: 768px) {
      .post-big-data-machine-learning-handel .big-data-machine-learning-handel-related-card {
        padding: 2rem;
        gap: 1.25rem;
      }
    }

    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-related-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }

    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-related-card h3 {
      color: var(--color-text-primary);
      margin-bottom: 0;
    }

    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-related-card p {
      color: var(--color-text-secondary);
      margin-bottom: 0;
      font-size: 0.9375rem;
    }

    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-related-card a {
      color: var(--color-primary);
      font-weight: 600;
      margin-top: auto;
    }

    .post-big-data-machine-learning-handel .big-data-machine-learning-handel-related-card a:hover {
      color: var(--color-primary-hover);
    }

    .post-big-data-machine-learning-handel ul {
      margin-bottom: 1.5rem;
    }

    .post-big-data-machine-learning-handel li {
      margin-bottom: 0.75rem;
    }

    .post-big-data-machine-learning-handel li:last-child {
      margin-bottom: 0;
    }

    @media (prefers-reduced-motion: reduce) {
      .post-big-data-machine-learning-handel * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
      }
    }

:root {
  --qaa-bg-light: #ffffff;
  --qaa-bg-dark: #0f172a;
  --qaa-bg-accent: #f8fafc;
  --qaa-text-dark: #1e293b;
  --qaa-text-light: #ffffff;
  --qaa-text-muted: #64748b;
  --qaa-primary: #2563eb;
  --qaa-primary-hover: #1d4ed8;
  --qaa-secondary: #0891b2;
  --qaa-accent-gold: #f59e0b;
}

.post-quantitative-analyse-algorithmen {
  background: var(--qaa-bg-light);
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
  color: var(--qaa-text-dark);
}

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

.quantitative-analyse-algorithmen-breadcrumbs-section {
  background: var(--qaa-bg-light);
  padding: 1.5rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.quantitative-analyse-algorithmen-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .quantitative-analyse-algorithmen-breadcrumbs {
    font-size: 1rem;
  }
}

.quantitative-analyse-algorithmen-breadcrumbs a {
  color: var(--qaa-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.quantitative-analyse-algorithmen-breadcrumbs a:hover {
  color: var(--qaa-primary-hover);
}

.quantitative-analyse-algorithmen-breadcrumbs span {
  color: var(--qaa-text-muted);
}

.quantitative-analyse-algorithmen-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--qaa-bg-light) 0%, var(--qaa-bg-accent) 100%);
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .quantitative-analyse-algorithmen-hero {
    padding: 6rem 0;
  }
}

@media (min-width: 1024px) {
  .quantitative-analyse-algorithmen-hero {
    padding: 8rem 0;
  }
}

.quantitative-analyse-algorithmen-hero-glow-1 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.12) 0%, transparent 70%);
  filter: blur(80px);
  top: -200px;
  left: -150px;
  z-index: 1;
  pointer-events: none;
}

.quantitative-analyse-algorithmen-hero-glow-2 {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.1) 0%, transparent 70%);
  filter: blur(70px);
  bottom: -100px;
  right: -100px;
  z-index: 1;
  pointer-events: none;
}

.quantitative-analyse-algorithmen-hero-gradient-mesh {
  position: absolute;
  width: 600px;
  height: 600px;
  background: linear-gradient(45deg, rgba(37, 99, 235, 0.08), rgba(245, 158, 11, 0.06));
  filter: blur(100px);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  pointer-events: none;
}

.quantitative-analyse-algorithmen-hero-accent-shape {
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(37, 99, 235, 0.07);
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  top: 10%;
  right: 5%;
  z-index: 2;
  pointer-events: none;
}

.quantitative-analyse-algorithmen-hero-float-element {
  position: absolute;
  width: 200px;
  height: 150px;
  background: rgba(245, 158, 11, 0.08);
  border-radius: 20px;
  bottom: 15%;
  left: 8%;
  transform: rotate(-15deg);
  z-index: 2;
  pointer-events: none;
}

.quantitative-analyse-algorithmen-hero-line-accent {
  position: absolute;
  width: 250px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.25), transparent);
  top: 30%;
  right: 10%;
  z-index: 2;
  pointer-events: none;
}

.quantitative-analyse-algorithmen-hero-corner-accent {
  position: absolute;
  width: 150px;
  height: 150px;
  border: 2px solid rgba(8, 145, 178, 0.15);
  border-radius: 50%;
  bottom: 5%;
  right: 8%;
  z-index: 2;
  pointer-events: none;
}

.quantitative-analyse-algorithmen-hero-subtle-orb {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  filter: blur(60px);
  top: 20%;
  left: 10%;
  z-index: 1;
  pointer-events: none;
}

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

@media (min-width: 1024px) {
  .quantitative-analyse-algorithmen-hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.quantitative-analyse-algorithmen-hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.1;
  color: var(--qaa-text-dark);
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

@media (min-width: 768px) {
  .quantitative-analyse-algorithmen-hero-text h1 {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .quantitative-analyse-algorithmen-hero-text h1 {
    font-size: 3.5rem;
  }
}

.quantitative-analyse-algorithmen-lead {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--qaa-text-muted);
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .quantitative-analyse-algorithmen-lead {
    font-size: 1.125rem;
  }
}

.quantitative-analyse-algorithmen-hero-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--qaa-text-muted);
  margin-bottom: 0;
}

.quantitative-analyse-algorithmen-featured-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

@media (min-width: 768px) {
  .quantitative-analyse-algorithmen-featured-img {
    height: 350px;
  }
}

@media (min-width: 1024px) {
  .quantitative-analyse-algorithmen-featured-img {
    height: 400px;
  }
}

.quantitative-analyse-algorithmen-intro {
  background: var(--qaa-bg-light);
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .quantitative-analyse-algorithmen-intro {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .quantitative-analyse-algorithmen-intro {
    padding: 6rem 0;
  }
}

.quantitative-analyse-algorithmen-intro-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .quantitative-analyse-algorithmen-intro-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.quantitative-analyse-algorithmen-intro-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--qaa-text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .quantitative-analyse-algorithmen-intro-content h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .quantitative-analyse-algorithmen-intro-content h2 {
    font-size: 2.5rem;
  }
}

.quantitative-analyse-algorithmen-intro-content p {
  color: var(--qaa-text-muted);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.quantitative-analyse-algorithmen-section-img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

@media (min-width: 768px) {
  .quantitative-analyse-algorithmen-section-img {
    height: 350px;
  }
}

@media (min-width: 1024px) {
  .quantitative-analyse-algorithmen-section-img {
    height: 380px;
  }
}

.quantitative-analyse-algorithmen-foundations {
  position: relative;
  overflow: hidden;
  background: var(--qaa-bg-accent);
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .quantitative-analyse-algorithmen-foundations {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .quantitative-analyse-algorithmen-foundations {
    padding: 6rem 0;
  }
}

.quantitative-analyse-algorithmen-foundations-glow-left {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  top: 10%;
  left: -100px;
  z-index: 1;
  pointer-events: none;
}

.quantitative-analyse-algorithmen-foundations-glow-right {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  bottom: 5%;
  right: -120px;
  z-index: 1;
  pointer-events: none;
}

.quantitative-analyse-algorithmen-foundations-accent-shape {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(8, 145, 178, 0.06);
  border-radius: 35% 65% 45% 55% / 55% 35% 65% 45%;
  top: 50%;
  left: 5%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
}

.quantitative-analyse-algorithmen-foundations-float-box {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(245, 158, 11, 0.07);
  border-radius: 15px;
  top: 20%;
  right: 10%;
  transform: rotate(8deg);
  z-index: 2;
  pointer-events: none;
}

.quantitative-analyse-algorithmen-foundations-line-element {
  position: absolute;
  width: 300px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.2), transparent);
  bottom: 30%;
  left: 15%;
  z-index: 2;
  pointer-events: none;
}

.quantitative-analyse-algorithmen-foundations-corner-decoration {
  position: absolute;
  width: 120px;
  height: 120px;
  border: 2px solid rgba(37, 99, 235, 0.15);
  border-radius: 50%;
  bottom: 10%;
  left: 5%;
  z-index: 2;
  pointer-events: none;
}

.quantitative-analyse-algorithmen-foundations-content {
  position: relative;
  z-index: 10;
}

.quantitative-analyse-algorithmen-foundations-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--qaa-text-dark);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .quantitative-analyse-algorithmen-foundations-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .quantitative-analyse-algorithmen-foundations-content h2 {
    font-size: 2.75rem;
  }
}

.quantitative-analyse-algorithmen-foundations-content > p {
  color: var(--qaa-text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.quantitative-analyse-algorithmen-cards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .quantitative-analyse-algorithmen-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .quantitative-analyse-algorithmen-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.quantitative-analyse-algorithmen-foundation-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--qaa-bg-light);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
  .quantitative-analyse-algorithmen-foundation-card {
    padding: 2rem;
  }
}

.quantitative-analyse-algorithmen-foundation-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

.quantitative-analyse-algorithmen-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: #dbeafe;
  border-radius: 8px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .quantitative-analyse-algorithmen-card-icon {
    width: 3.5rem;
    height: 3.5rem;
  }
}

.quantitative-analyse-algorithmen-card-icon .fas {
  font-size: 1.5rem;
  color: var(--qaa-primary);
}

.quantitative-analyse-algorithmen-foundation-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--qaa-text-dark);
  margin: 0;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .quantitative-analyse-algorithmen-foundation-card h3 {
    font-size: 1.5rem;
  }
}

.quantitative-analyse-algorithmen-foundation-card p {
  color: var(--qaa-text-muted);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.quantitative-analyse-algorithmen-insight-box {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(8, 145, 178, 0.06) 100%);
  border-left: 4px solid var(--qaa-primary);
  padding: 1.5rem;
  border-radius: 8px;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .quantitative-analyse-algorithmen-insight-box {
    padding: 2rem;
  }
}

.quantitative-analyse-algorithmen-insight-box p {
  color: var(--qaa-text-dark);
  margin: 0;
  line-height: 1.7;
}

.quantitative-analyse-algorithmen-algorithms {
  position: relative;
  overflow: hidden;
  background: var(--qaa-bg-light);
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .quantitative-analyse-algorithmen-algorithms {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .quantitative-analyse-algorithmen-algorithms {
    padding: 6rem 0;
  }
}

.quantitative-analyse-algorithmen-algorithms-glow-top {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.11) 0%, transparent 70%);
  filter: blur(80px);
  top: -200px;
  right: -150px;
  z-index: 1;
  pointer-events: none;
}

.quantitative-analyse-algorithmen-algorithms-glow-bottom {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.09) 0%, transparent 70%);
  filter: blur(75px);
  bottom: -100px;
  left: -80px;
  z-index: 1;
  pointer-events: none;
}

.quantitative-analyse-algorithmen-algorithms-mesh-gradient {
  position: absolute;
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.07), rgba(37, 99, 235, 0.08));
  filter: blur(100px);
  top: 40%;
  right: 10%;
  z-index: 1;
  pointer-events: none;
}

.quantitative-analyse-algorithmen-algorithms-accent-blob {
  position: absolute;
  width: 320px;
  height: 320px;
  background: rgba(245, 158, 11, 0.07);
  border-radius: 40% 60% 50% 50% / 50% 40% 60% 50%;
  bottom: 15%;
  left: 8%;
  z-index: 2;
  pointer-events: none;
}

.quantitative-analyse-algorithmen-algorithms-floating-element {
  position: absolute;
  width: 180px;
  height: 180px;
  background: rgba(37, 99, 235, 0.06);
  border-radius: 50%;
  top: 20%;
  left: 5%;
  z-index: 2;
  pointer-events: none;
}

.quantitative-analyse-algorithmen-algorithms-line-divider {
  position: absolute;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(8, 145, 178, 0.25), transparent);
  top: 50%;
  right: 15%;
  z-index: 2;
  pointer-events: none;
}

.quantitative-analyse-algorithmen-algorithms-content {
  position: relative;
  z-index: 10;
}

.quantitative-analyse-algorithmen-algorithms-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--qaa-text-dark);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .quantitative-analyse-algorithmen-algorithms-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .quantitative-analyse-algorithmen-algorithms-content h2 {
    font-size: 2.75rem;
  }
}

.quantitative-analyse-algorithmen-algorithms-content > p {
  color: var(--qaa-text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.quantitative-analyse-algorithmen-algo-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
  margin-bottom: 2.5rem;
}

@media (min-width: 1024px) {
  .quantitative-analyse-algorithmen-algo-layout {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.quantitative-analyse-algorithmen-algo-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--qaa-text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

@media (min-width: 768px) {
  .quantitative-analyse-algorithmen-algo-text h3 {
    font-size: 1.875rem;
  }
}

.quantitative-analyse-algorithmen-numbered-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.quantitative-analyse-algorithmen-numbered-list li {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.5rem;
  color: var(--qaa-text-muted);
  line-height: 1.7;
}

@media (min-width: 768px) {
  .quantitative-analyse-algorithmen-numbered-list li {
    margin-bottom: 1.75rem;
  }
}

.quantitative-analyse-algorithmen-numbered-list li::before {
  content: counter(list-number);
  counter-increment: list-number;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: var(--qaa-primary);
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.quantitative-analyse-algorithmen-numbered-list {
  counter-reset: list-number;
}

.quantitative-analyse-algorithmen-numbered-list li strong {
  color: var(--qaa-text-dark);
}

.quantitative-analyse-algorithmen-quote-box {
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.07) 0%, rgba(245, 158, 11, 0.05) 100%);
  border-left: 4px solid var(--qaa-primary);
  padding: 2rem;
  border-radius: 8px;
  margin: 2.5rem 0;
  font-size: 1.125rem;
  font-style: italic;
  color: var(--qaa-text-dark);
  line-height: 1.8;
}

@media (min-width: 768px) {
  .quantitative-analyse-algorithmen-quote-box {
    padding: 2.5rem;
    font-size: 1.25rem;
  }
}

.quantitative-analyse-algorithmen-quote-box p {
  margin: 0;
}

.quantitative-analyse-algorithmen-models {
  position: relative;
  overflow: hidden;
  background: var(--qaa-bg-accent);
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .quantitative-analyse-algorithmen-models {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .quantitative-analyse-algorithmen-models {
    padding: 6rem 0;
  }
}

.quantitative-analyse-algorithmen-models-glow-1 {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  top: 5%;
  left: -120px;
  z-index: 1;
  pointer-events: none;
}

.quantitative-analyse-algorithmen-models-glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  bottom: -100px;
  right: -150px;
  z-index: 1;
  pointer-events: none;
}

.quantitative-analyse-algorithmen-models-gradient-field {
  position: absolute;
  width: 700px;
  height: 700px;
  background: linear-gradient(45deg, rgba(37, 99, 235, 0.08), rgba(8, 145, 178, 0.06));
  filter: blur(100px);
  top: 30%;
  left: 20%;
  z-index: 1;
  pointer-events: none;
}

.quantitative-analyse-algorithmen-models-shape-accent {
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(245, 158, 11, 0.06);
  border-radius: 55% 45% 50% 50% / 45% 55% 50% 50%;
  top: 15%;
  right: 10%;
  z-index: 2;
  pointer-events: none;
}

.quantitative-analyse-algorithmen-models-float-panel {
  position: absolute;
  width: 220px;
  height: 160px;
  background: rgba(37, 99, 235, 0.05);
  border-radius: 12px;
  bottom: 20%;
  left: 8%;
  transform: rotate(-12deg);
  z-index: 2;
  pointer-events: none;
}

.quantitative-analyse-algorithmen-models-line-accent {
  position: absolute;
  width: 250px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.2), transparent);
  top: 60%;
  right: 15%;
  z-index: 2;
  pointer-events: none;
}

.quantitative-analyse-algorithmen-models-corner-element {
  position: absolute;
  width: 140px;
  height: 140px;
  border: 2px solid rgba(8, 145, 178, 0.12);
  border-radius: 50%;
  top: 10%;
  right: 5%;
  z-index: 2;
  pointer-events: none;
}

.quantitative-analyse-algorithmen-models-content {
  position: relative;
  z-index: 10;
}

.quantitative-analyse-algorithmen-models-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--qaa-text-dark);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .quantitative-analyse-algorithmen-models-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .quantitative-analyse-algorithmen-models-content h2 {
    font-size: 2.75rem;
  }
}

.quantitative-analyse-algorithmen-models-content > p {
  color: var(--qaa-text-muted);
  margin-bottom: 2.5rem;
  line-height: 1.8;
}

.quantitative-analyse-algorithmen-models-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 3rem;
}

@media (min-width: 768px) {
  .quantitative-analyse-algorithmen-models-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .quantitative-analyse-algorithmen-models-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.quantitative-analyse-algorithmen-model-card {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding: 1.5rem;
  background: var(--qaa-bg-light);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  border: 1px solid #e2e8f0;
}

@media (min-width: 768px) {
  .quantitative-analyse-algorithmen-model-card {
    padding: 2rem;
  }
}

.quantitative-analyse-algorithmen-model-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
  border-color: var(--qaa-primary);
}

.quantitative-analyse-algorithmen-model-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--qaa-text-dark);
  margin: 0;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .quantitative-analyse-algorithmen-model-card h3 {
    font-size: 1.375rem;
  }
}

.quantitative-analyse-algorithmen-model-card p {
  color: var(--qaa-text-muted);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.quantitative-analyse-algorithmen-model-image-section {
  margin-top: 3rem;
}

.quantitative-analyse-algorithmen-practical {
  position: relative;
  overflow: hidden;
  background: var(--qaa-bg-light);
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .quantitative-analyse-algorithmen-practical {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .quantitative-analyse-algorithmen-practical {
    padding: 6rem 0;
  }
}

.quantitative-analyse-algorithmen-practical-glow-left {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  top: -150px;
  left: -200px;
  z-index: 1;
  pointer-events: none;
}

.quantitative-analyse-algorithmen-practical-glow-right {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.09) 0%, transparent 70%);
  filter: blur(75px);
  bottom: 5%;
  right: -100px;
  z-index: 1;
  pointer-events: none;
}

.quantitative-analyse-algorithmen-practical-mesh {
  position: absolute;
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, rgba(8, 145, 178, 0.07), rgba(245, 158, 11, 0.06));
  filter: blur(100px);
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.quantitative-analyse-algorithmen-practical-accent {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(37, 99, 235, 0.06);
  border-radius: 45% 55% 55% 45% / 55% 45% 45% 55%;
  top: 20%;
  left: 5%;
  z-index: 2;
  pointer-events: none;
}

.quantitative-analyse-algorithmen-practical-float {
  position: absolute;
  width: 180px;
  height: 140px;
  background: rgba(245, 158, 11, 0.07);
  border-radius: 20px;
  bottom: 25%;
  right: 8%;
  transform: rotate(15deg);
  z-index: 2;
  pointer-events: none;
}

.quantitative-analyse-algorithmen-practical-line {
  position: absolute;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(8, 145, 178, 0.22), transparent);
  top: 35%;
  left: 15%;
  z-index: 2;
  pointer-events: none;
}

.quantitative-analyse-algorithmen-practical-content {
  position: relative;
  z-index: 10;
}

.quantitative-analyse-algorithmen-practical-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--qaa-text-dark);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .quantitative-analyse-algorithmen-practical-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .quantitative-analyse-algorithmen-practical-content h2 {
    font-size: 2.75rem;
  }
}

.quantitative-analyse-algorithmen-practical-content > p {
  color: var(--qaa-text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.quantitative-analyse-algorithmen-practical-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin: 3rem 0;
}

@media (min-width: 768px) {
  .quantitative-analyse-algorithmen-practical-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .quantitative-analyse-algorithmen-practical-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.quantitative-analyse-algorithmen-step-item {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.quantitative-analyse-algorithmen-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  background: linear-gradient(135deg, var(--qaa-primary), var(--qaa-secondary));
  color: white;
  border-radius: 50%;
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}

.quantitative-analyse-algorithmen-step-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--qaa-text-dark);
  margin: 0;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .quantitative-analyse-algorithmen-step-item h3 {
    font-size: 1.25rem;
  }
}

.quantitative-analyse-algorithmen-step-item p {
  color: var(--qaa-text-muted);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.quantitative-analyse-algorithmen-practical-image {
  margin-top: 3rem;
}

.quantitative-analyse-algorithmen-challenges {
  position: relative;
  overflow: hidden;
  background: var(--qaa-bg-accent);
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .quantitative-analyse-algorithmen-challenges {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .quantitative-analyse-algorithmen-challenges {
    padding: 6rem 0;
  }
}

.quantitative-analyse-algorithmen-challenges-glow-1 {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  top: -100px;
  right: -150px;
  z-index: 1;
  pointer-events: none;
}

.quantitative-analyse-algorithmen-challenges-glow-2 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  bottom: -150px;
  left: -200px;
  z-index: 1;
  pointer-events: none;
}

.quantitative-analyse-algorithmen-challenges-gradient {
  position: absolute;
  width: 600px;
  height: 600px;
  background: linear-gradient(45deg, rgba(8, 145, 178, 0.07), rgba(37, 99, 235, 0.08));
  filter: blur(100px);
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  pointer-events: none;
}

.quantitative-analyse-algorithmen-challenges-blob {
  position: absolute;
  width: 320px;
  height: 320px;
  background: rgba(245, 158, 11, 0.06);
  border-radius: 50% 40% 60% 50% / 40% 50% 50% 60%;
  top: 10%;
  left: 8%;
  z-index: 2;
  pointer-events: none;
}

.quantitative-analyse-algorithmen-challenges-float {
  position: absolute;
  width: 200px;
  height: 150px;
  background: rgba(37, 99, 235, 0.05);
  border-radius: 15px;
  bottom: 15%;
  right: 10%;
  transform: rotate(-10deg);
  z-index: 2;
  pointer-events: none;
}

.quantitative-analyse-algorithmen-challenges-accent {
  position: absolute;
  width: 180px;
  height: 180px;
  border: 2px solid rgba(8, 145, 178, 0.12);
  border-radius: 50%;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
  z-index: 2;
  pointer-events: none;
}

.quantitative-analyse-algorithmen-challenges-content {
  position: relative;
  z-index: 10;
}

.quantitative-analyse-algorithmen-challenges-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--qaa-text-dark);
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .quantitative-analyse-algorithmen-challenges-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .quantitative-analyse-algorithmen-challenges-content h2 {
    font-size: 2.75rem;
  }
}

.quantitative-analyse-algorithmen-challenges-content > p {
  color: var(--qaa-text-muted);
  margin-bottom: 2rem;
  line-height: 1.8;
}

.quantitative-analyse-algorithmen-challenges-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .quantitative-analyse-algorithmen-challenges-list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .quantitative-analyse-algorithmen-challenges-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.quantitative-analyse-algorithmen-challenge-item {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.quantitative-analyse-algorithmen-challenge-item h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--qaa-text-dark);
  margin: 0;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .quantitative-analyse-algorithmen-challenge-item h3 {
    font-size: 1.25rem;
  }
}

.quantitative-analyse-algorithmen-challenge-item p {
  color: var(--qaa-text-muted);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.quantitative-analyse-algorithmen-conclusion {
  background: var(--qaa-bg-light);
  padding: 4rem 0;
}

@media (min-width: 768px) {
  .quantitative-analyse-algorithmen-conclusion {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .quantitative-analyse-algorithmen-conclusion {
    padding: 6rem 0;
  }
}

.quantitative-analyse-algorithmen-conclusion-content {
  max-width: 900px;
}

.quantitative-analyse-algorithmen-conclusion-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--qaa-text-dark);
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .quantitative-analyse-algorithmen-conclusion-content h2 {
    font-size: 2.25rem;
  }
}

.quantitative-analyse-algorithmen-conclusion-content p {
  color: var(--qaa-text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.quantitative-analyse-algorithmen-disclaimer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(8, 145, 178, 0.06) 100%);
  padding: 4rem 0;
  border-top: 1px solid #e2e8f0;
}

@media (min-width: 768px) {
  .quantitative-analyse-algorithmen-disclaimer {
    padding: 5rem 0;
  }
}

.quantitative-analyse-algorithmen-disclaimer-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  top: 50%;
  right: -100px;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.quantitative-analyse-algorithmen-disclaimer-accent {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(245, 158, 11, 0.05);
  border-radius: 50%;
  bottom: 10%;
  left: 5%;
  z-index: 1;
  pointer-events: none;
}

.quantitative-analyse-algorithmen-disclaimer-content {
  position: relative;
  z-index: 10;
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .quantitative-analyse-algorithmen-disclaimer-content {
    gap: 2rem;
  }
}

.quantitative-analyse-algorithmen-disclaimer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: var(--qaa-primary);
  color: white;
  border-radius: 50%;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .quantitative-analyse-algorithmen-disclaimer-icon {
    width: 3.5rem;
    height: 3.5rem;
  }
}

.quantitative-analyse-algorithmen-disclaimer-icon .fas {
  font-size: 1.25rem;
}

.quantitative-analyse-algorithmen-disclaimer-text h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--qaa-text-dark);
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .quantitative-analyse-algorithmen-disclaimer-text h3 {
    font-size: 1.5rem;
  }
}

.quantitative-analyse-algorithmen-disclaimer-text p {
  color: var(--qaa-text-muted);
  margin: 0;
  line-height: 1.7;
  font-size: 0.95rem;
}

.quantitative-analyse-algorithmen-related {
  position: relative;
  overflow: hidden;
  background: var(--qaa-bg-accent);
  padding: 4rem 0;
  border-top: 1px solid #e2e8f0;
}

@media (min-width: 768px) {
  .quantitative-analyse-algorithmen-related {
    padding: 5rem 0;
  }
}

@media (min-width: 1024px) {
  .quantitative-analyse-algorithmen-related {
    padding: 6rem 0;
  }
}

.quantitative-analyse-algorithmen-related-glow-1 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.1) 0%, transparent 70%);
  filter: blur(80px);
  top: -150px;
  left: -200px;
  z-index: 1;
  pointer-events: none;
}

.quantitative-analyse-algorithmen-related-glow-2 {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(245, 158, 11, 0.09) 0%, transparent 70%);
  filter: blur(75px);
  bottom: -100px;
  right: -150px;
  z-index: 1;
  pointer-events: none;
}

.quantitative-analyse-algorithmen-related-mesh {
  position: absolute;
  width: 600px;
  height: 600px;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.07), rgba(245, 158, 11, 0.06));
  filter: blur(100px);
  top: 50%;
  left: 15%;
  transform: translateY(-50%);
  z-index: 1;
  pointer-events: none;
}

.quantitative-analyse-algorithmen-related-accent {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(37, 99, 235, 0.06);
  border-radius: 40% 60% 55% 45% / 55% 40% 60% 45%;
  top: 15%;
  right: 8%;
  z-index: 2;
  pointer-events: none;
}

.quantitative-analyse-algorithmen-related-float {
  position: absolute;
  width: 180px;
  height: 140px;
  background: rgba(245, 158, 11, 0.07);
  border-radius: 20px;
  bottom: 20%;
  left: 5%;
  transform: rotate(12deg);
  z-index: 2;
  pointer-events: none;
}

.quantitative-analyse-algorithmen-related-content {
  position: relative;
  z-index: 10;
}

.quantitative-analyse-algorithmen-related-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--qaa-text-dark);
  margin-bottom: 2rem;
  text-align: center;
}

@media (min-width: 768px) {
  .quantitative-analyse-algorithmen-related-content h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .quantitative-analyse-algorithmen-related-content h2 {
    font-size: 2.5rem;
  }
}

.quantitative-analyse-algorithmen-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .quantitative-analyse-algorithmen-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .quantitative-analyse-algorithmen-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.quantitative-analyse-algorithmen-related-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding: 2rem;
  background: var(--qaa-bg-light);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  color: inherit;
  border: 1px solid #e2e8f0;
}

@media (min-width: 768px) {
  .quantitative-analyse-algorithmen-related-card {
    padding: 2.5rem;
    gap: 1.5rem;
  }
}

.quantitative-analyse-algorithmen-related-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
  border-color: var(--qaa-primary);
}

.quantitative-analyse-algorithmen-related-card-header {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.quantitative-analyse-algorithmen-related-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--qaa-text-dark);
  margin: 0;
  line-height: 1.3;
}

@media (min-width: 768px) {
  .quantitative-analyse-algorithmen-related-card h3 {
    font-size: 1.375rem;
  }
}

.quantitative-analyse-algorithmen-related-card p {
  color: var(--qaa-text-muted);
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.6;
}

.quantitative-analyse-algorithmen-related-card-arrow {
  margin-left: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: #dbeafe;
  border-radius: 50%;
  color: var(--qaa-primary);
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.quantitative-analyse-algorithmen-related-card:hover .quantitative-analyse-algorithmen-related-card-arrow {
  background: var(--qaa-primary);
  color: white;
  transform: translateX(3px);
}

.quantitative-analyse-algorithmen-related-card-arrow .fas {
  font-size: 1rem;
}

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

.post-esg-investitionen-nachhaltigkeit {
    width: 100%;
  }

  .post-esg-investitionen-nachhaltigkeit section {
    overflow: hidden;
  }

  .esg-investitionen-nachhaltigkeit-breadcrumbs-section {
    background: var(--color-bg-secondary);
    padding: 1rem 0;
  }

  @media (min-width: 768px) {
    .esg-investitionen-nachhaltigkeit-breadcrumbs-section {
      padding: 1.5rem 0;
    }
  }

  .esg-investitionen-nachhaltigkeit-breadcrumbs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
  }

  .esg-investitionen-nachhaltigkeit-breadcrumbs a {
    color: var(--color-primary);
  }

  .esg-investitionen-nachhaltigkeit-breadcrumbs a:hover {
    text-decoration: underline;
  }

  .esg-investitionen-nachhaltigkeit-breadcrumbs span {
    color: var(--color-text-muted);
  }

  .esg-investitionen-nachhaltigkeit-hero {
    background: var(--color-bg-primary);
    padding: 3rem 0;
    position: relative;
  }

  @media (min-width: 768px) {
    .esg-investitionen-nachhaltigkeit-hero {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .esg-investitionen-nachhaltigkeit-hero {
      padding: 6rem 0;
    }
  }

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

  @media (min-width: 768px) {
    .esg-investitionen-nachhaltigkeit-hero-content {
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
    }
  }

  .esg-investitionen-nachhaltigkeit-hero-text h1 {
    color: var(--color-text-primary);
    margin-bottom: 1rem;
  }

  @media (min-width: 768px) {
    .esg-investitionen-nachhaltigkeit-hero-text h1 {
      margin-bottom: 1.5rem;
    }
  }

  .esg-investitionen-nachhaltigkeit-hero-lead {
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
  }

  @media (min-width: 768px) {
    .esg-investitionen-nachhaltigkeit-hero-lead {
      font-size: 1.125rem;
      margin-bottom: 2rem;
    }
  }

  .esg-investitionen-nachhaltigkeit-hero-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--color-text-muted);
  }

  .esg-investitionen-nachhaltigkeit-hero-image {
    width: 100%;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
  }

  .esg-investitionen-nachhaltigkeit-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  .esg-investitionen-nachhaltigkeit-introduction {
    background: var(--color-bg-secondary);
    padding: 3rem 0;
  }

  @media (min-width: 768px) {
    .esg-investitionen-nachhaltigkeit-introduction {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .esg-investitionen-nachhaltigkeit-introduction {
      padding: 6rem 0;
    }
  }

  .esg-investitionen-nachhaltigkeit-introduction-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
  }

  @media (min-width: 1024px) {
    .esg-investitionen-nachhaltigkeit-introduction-content {
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
    }
  }

  .esg-investitionen-nachhaltigkeit-intro-text p {
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
  }

  .esg-investitionen-nachhaltigkeit-intro-text p:last-child {
    margin-bottom: 0;
  }

  .esg-investitionen-nachhaltigkeit-intro-image {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
  }

  .esg-investitionen-nachhaltigkeit-intro-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  .esg-investitionen-nachhaltigkeit-environmental {
    background: var(--color-bg-primary);
    padding: 3rem 0;
  }

  @media (min-width: 768px) {
    .esg-investitionen-nachhaltigkeit-environmental {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .esg-investitionen-nachhaltigkeit-environmental {
      padding: 6rem 0;
    }
  }

  .esg-investitionen-nachhaltigkeit-environmental-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
  }

  @media (min-width: 768px) {
    .esg-investitionen-nachhaltigkeit-environmental-content {
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
    }
  }

  .esg-investitionen-nachhaltigkeit-env-text h2 {
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
  }

  .esg-investitionen-nachhaltigkeit-env-text p {
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
  }

  .esg-investitionen-nachhaltigkeit-env-text p:last-child {
    margin-bottom: 0;
  }

  .esg-investitionen-nachhaltigkeit-env-image {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
  }

  .esg-investitionen-nachhaltigkeit-env-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  .esg-investitionen-nachhaltigkeit-social {
    background: var(--color-bg-tertiary);
    padding: 3rem 0;
  }

  @media (min-width: 768px) {
    .esg-investitionen-nachhaltigkeit-social {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .esg-investitionen-nachhaltigkeit-social {
      padding: 6rem 0;
    }
  }

  .esg-investitionen-nachhaltigkeit-social-content {
    max-width: 900px;
  }

  .esg-investitionen-nachhaltigkeit-social-text h2 {
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
  }

  .esg-investitionen-nachhaltigkeit-social-text p {
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
  }

  .esg-investitionen-nachhaltigkeit-governance {
    background: var(--color-bg-primary);
    padding: 3rem 0;
  }

  @media (min-width: 768px) {
    .esg-investitionen-nachhaltigkeit-governance {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .esg-investitionen-nachhaltigkeit-governance {
      padding: 6rem 0;
    }
  }

  .esg-investitionen-nachhaltigkeit-governance-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
  }

  @media (min-width: 768px) {
    .esg-investitionen-nachhaltigkeit-governance-content {
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
    }
  }

  .esg-investitionen-nachhaltigkeit-gov-text h2 {
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
  }

  .esg-investitionen-nachhaltigkeit-gov-text p {
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
  }

  .esg-investitionen-nachhaltigkeit-gov-text p:last-child {
    margin-bottom: 0;
  }

  .esg-investitionen-nachhaltigkeit-gov-image {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
  }

  .esg-investitionen-nachhaltigkeit-gov-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  .esg-investitionen-nachhaltigkeit-integration {
    background: var(--color-bg-secondary);
    padding: 3rem 0;
  }

  @media (min-width: 768px) {
    .esg-investitionen-nachhaltigkeit-integration {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .esg-investitionen-nachhaltigkeit-integration {
      padding: 6rem 0;
    }
  }

  .esg-investitionen-nachhaltigkeit-integration-content h2 {
    color: var(--color-text-primary);
    margin-bottom: 2rem;
  }

  .esg-investitionen-nachhaltigkeit-methods {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .esg-investitionen-nachhaltigkeit-methods {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .esg-investitionen-nachhaltigkeit-methods {
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
  }

  .esg-investitionen-nachhaltigkeit-method-card {
    background: var(--color-bg-card);
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  @media (min-width: 768px) {
    .esg-investitionen-nachhaltigkeit-method-card {
      padding: 2rem;
      gap: 1.25rem;
    }
  }

  .esg-investitionen-nachhaltigkeit-method-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
  }

  .esg-investitionen-nachhaltigkeit-method-title {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .esg-investitionen-nachhaltigkeit-method-title i {
    font-size: 1.5rem;
    color: var(--color-primary);
    flex-shrink: 0;
  }

  .esg-investitionen-nachhaltigkeit-method-title h3 {
    color: var(--color-text-primary);
    margin-bottom: 0;
  }

  .esg-investitionen-nachhaltigkeit-method-card p {
    color: var(--color-text-secondary);
    margin-bottom: 0;
    line-height: 1.6;
  }

  .esg-investitionen-nachhaltigkeit-considerations {
    background: var(--color-bg-primary);
    padding: 3rem 0;
  }

  @media (min-width: 768px) {
    .esg-investitionen-nachhaltigkeit-considerations {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .esg-investitionen-nachhaltigkeit-considerations {
      padding: 6rem 0;
    }
  }

  .esg-investitionen-nachhaltigkeit-considerations-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
  }

  @media (min-width: 1024px) {
    .esg-investitionen-nachhaltigkeit-considerations-content {
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
    }
  }

  .esg-investitionen-nachhaltigkeit-cons-text h2 {
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
  }

  .esg-investitionen-nachhaltigkeit-cons-text p {
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
  }

  .esg-investitionen-nachhaltigkeit-cons-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 0;
  }

  .esg-investitionen-nachhaltigkeit-cons-text li {
    color: var(--color-text-secondary);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
  }

  .esg-investitionen-nachhaltigkeit-cons-text li:before {
    content: "";
    position: absolute;
    left: 0;
    color: var(--color-primary);
    font-weight: bold;
  }

  .esg-investitionen-nachhaltigkeit-cons-text li:last-child {
    margin-bottom: 0;
  }

  .esg-investitionen-nachhaltigkeit-cons-text strong {
    color: var(--color-text-primary);
  }

  .esg-investitionen-nachhaltigkeit-cons-image {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
  }

  .esg-investitionen-nachhaltigkeit-cons-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
  }

  .esg-investitionen-nachhaltigkeit-disclaimer {
    background: #f0f4ff;
    padding: 3rem 0;
  }

  @media (min-width: 768px) {
    .esg-investitionen-nachhaltigkeit-disclaimer {
      padding: 4rem 0;
    }
  }

  @media (min-width: 1024px) {
    .esg-investitionen-nachhaltigkeit-disclaimer {
      padding: 5rem 0;
    }
  }

  .esg-investitionen-nachhaltigkeit-disclaimer-box {
    background: var(--color-bg-card);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--color-primary);
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  @media (min-width: 768px) {
    .esg-investitionen-nachhaltigkeit-disclaimer-box {
      padding: 2.5rem;
      display: flex;
      flex-direction: row;
      gap: 1.5rem;
      align-items: flex-start;
    }
  }

  .esg-investitionen-nachhaltigkeit-disclaimer-icon {
    font-size: 1.5rem;
    color: var(--color-primary);
    flex-shrink: 0;
  }

  @media (min-width: 768px) {
    .esg-investitionen-nachhaltigkeit-disclaimer-icon {
      margin-top: 0.25rem;
    }
  }

  .esg-investitionen-nachhaltigkeit-disclaimer-text h3 {
    color: var(--color-text-primary);
    margin-bottom: 0.75rem;
  }

  .esg-investitionen-nachhaltigkeit-disclaimer-text p {
    color: var(--color-text-secondary);
    margin-bottom: 0;
    line-height: 1.7;
    font-size: 0.9375rem;
  }

  .esg-investitionen-nachhaltigkeit-related {
    background: var(--color-bg-secondary);
    padding: 3rem 0;
  }

  @media (min-width: 768px) {
    .esg-investitionen-nachhaltigkeit-related {
      padding: 5rem 0;
    }
  }

  @media (min-width: 1024px) {
    .esg-investitionen-nachhaltigkeit-related {
      padding: 6rem 0;
    }
  }

  .esg-investitionen-nachhaltigkeit-related h2 {
    color: var(--color-text-primary);
    margin-bottom: 2rem;
  }

  @media (min-width: 768px) {
    .esg-investitionen-nachhaltigkeit-related h2 {
      margin-bottom: 3rem;
    }
  }

  .esg-investitionen-nachhaltigkeit-related-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .esg-investitionen-nachhaltigkeit-related-grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .esg-investitionen-nachhaltigkeit-related-grid {
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
  }

  .esg-investitionen-nachhaltigkeit-related-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .esg-investitionen-nachhaltigkeit-related-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
  }

  .esg-investitionen-nachhaltigkeit-card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--color-bg-tertiary);
  }

  .esg-investitionen-nachhaltigkeit-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
  }

  .esg-investitionen-nachhaltigkeit-related-card:hover .esg-investitionen-nachhaltigkeit-card-image img {
    transform: scale(1.05);
  }

  .esg-investitionen-nachhaltigkeit-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-grow: 1;
  }

  @media (min-width: 768px) {
    .esg-investitionen-nachhaltigkeit-card-content {
      padding: 1.75rem;
      gap: 1.25rem;
    }
  }

  .esg-investitionen-nachhaltigkeit-card-content h3 {
    color: var(--color-text-primary);
    margin-bottom: 0;
    font-size: 1.125rem;
  }

  @media (min-width: 768px) {
    .esg-investitionen-nachhaltigkeit-card-content h3 {
      font-size: 1.25rem;
    }
  }

  .esg-investitionen-nachhaltigkeit-card-content p {
    color: var(--color-text-secondary);
    margin-bottom: 0;
    flex-grow: 1;
    font-size: 0.9375rem;
  }

  .esg-investitionen-nachhaltigkeit-card-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;
    align-self: flex-start;
    font-size: 0.9375rem;
  }

  .esg-investitionen-nachhaltigkeit-card-link:hover {
    gap: 0.75rem;
  }

  .esg-investitionen-nachhaltigkeit-card-link i {
    font-size: 0.75rem;
  }

.post-regulierung-compliance-handel {
  width: 100%;
}

.regulierung-compliance-handel-breadcrumbs-section {
  background: var(--color-bg-secondary);
  padding: 1.5rem 0;
}

@media (min-width: 768px) {
  .regulierung-compliance-handel-breadcrumbs-section {
    padding: 2rem 0;
  }
}

@media (min-width: 1024px) {
  .regulierung-compliance-handel-breadcrumbs-section {
    padding: 2.5rem 0;
  }
}

.regulierung-compliance-handel-breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .regulierung-compliance-handel-breadcrumbs {
    font-size: 1rem;
  }
}

.regulierung-compliance-handel-breadcrumb-link {
  color: var(--color-primary);
  transition: color 0.3s ease;
}

.regulierung-compliance-handel-breadcrumb-link:hover {
  color: var(--color-primary-hover);
}

.regulierung-compliance-handel-breadcrumb-separator {
  color: var(--color-text-secondary);
  margin: 0 0.25rem;
}

.regulierung-compliance-handel-breadcrumb-current {
  color: var(--color-text-secondary);
  font-weight: 500;
}

.regulierung-compliance-handel-hero {
  background: var(--color-bg-primary);
  padding: 3rem 0;
  border-bottom: 1px solid #e2e8f0;
}

@media (min-width: 768px) {
  .regulierung-compliance-handel-hero {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .regulierung-compliance-handel-hero {
    padding: 5rem 0;
  }
}

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

@media (min-width: 768px) {
  .regulierung-compliance-handel-hero-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .regulierung-compliance-handel-hero-content {
    gap: 4rem;
  }
}

.regulierung-compliance-handel-hero-text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .regulierung-compliance-handel-hero-text {
    gap: 1.5rem;
  }
}

.regulierung-compliance-handel-hero-title {
  color: var(--color-text-primary);
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .regulierung-compliance-handel-hero-title {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .regulierung-compliance-handel-hero-title {
    font-size: 3.5rem;
  }
}

.regulierung-compliance-handel-hero-subtitle {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .regulierung-compliance-handel-hero-subtitle {
    font-size: 1.125rem;
  }
}

.regulierung-compliance-handel-hero-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.regulierung-compliance-handel-read-time {
  color: var(--color-text-muted);
  font-size: 0.875rem;
  font-weight: 500;
}

.regulierung-compliance-handel-hero-image {
  width: 100%;
  height: auto;
}

.regulierung-compliance-handel-featured-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.regulierung-compliance-handel-introduction {
  background: var(--color-bg-secondary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .regulierung-compliance-handel-introduction {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .regulierung-compliance-handel-introduction {
    padding: 5rem 0;
  }
}

.regulierung-compliance-handel-intro-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: center;
}

@media (min-width: 768px) {
  .regulierung-compliance-handel-intro-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

@media (min-width: 1024px) {
  .regulierung-compliance-handel-intro-content {
    gap: 4rem;
  }
}

.regulierung-compliance-handel-intro-text {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .regulierung-compliance-handel-intro-text {
    font-size: 1rem;
  }
}

.regulierung-compliance-handel-intro-image {
  width: 100%;
  height: auto;
  order: -1;
}

@media (min-width: 768px) {
  .regulierung-compliance-handel-intro-image {
    order: 0;
  }
}

.regulierung-compliance-handel-section-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
}

.regulierung-compliance-handel-content-1,
.regulierung-compliance-handel-content-2,
.regulierung-compliance-handel-content-3,
.regulierung-compliance-handel-content-4 {
  background: var(--color-bg-primary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .regulierung-compliance-handel-content-1,
  .regulierung-compliance-handel-content-2,
  .regulierung-compliance-handel-content-3,
  .regulierung-compliance-handel-content-4 {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .regulierung-compliance-handel-content-1,
  .regulierung-compliance-handel-content-2,
  .regulierung-compliance-handel-content-3,
  .regulierung-compliance-handel-content-4 {
    padding: 5rem 0;
  }
}

.regulierung-compliance-handel-content-2,
.regulierung-compliance-handel-content-4 {
  background: var(--color-bg-tertiary);
}

.regulierung-compliance-handel-section-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .regulierung-compliance-handel-section-content {
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .regulierung-compliance-handel-section-content {
    gap: 3rem;
  }
}

.regulierung-compliance-handel-section-title {
  color: var(--color-text-primary);
  font-size: 1.75rem;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .regulierung-compliance-handel-section-title {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .regulierung-compliance-handel-section-title {
    font-size: 2.75rem;
  }
}

.regulierung-compliance-handel-section-text {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .regulierung-compliance-handel-section-text {
    font-size: 1rem;
  }
}

.regulierung-compliance-handel-content-image {
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
}

.regulierung-compliance-handel-quote {
  border-left: 4px solid var(--color-primary);
  padding-left: 2rem;
  margin: 2rem 0;
  font-size: 1.1rem;
  color: var(--color-text-primary);
  font-style: italic;
  font-weight: 500;
}

@media (min-width: 768px) {
  .regulierung-compliance-handel-quote {
    padding-left: 2.5rem;
    font-size: 1.25rem;
    margin: 2.5rem 0;
  }
}

.regulierung-compliance-handel-quote p {
  margin-bottom: 0;
  color: var(--color-text-primary);
}

.regulierung-compliance-handel-highlight-box {
  background: #dbeafe;
  border-left: 4px solid var(--color-primary);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  margin: 1.5rem 0;
}

@media (min-width: 768px) {
  .regulierung-compliance-handel-highlight-box {
    padding: 2rem;
    margin: 2rem 0;
  }
}

.regulierung-compliance-handel-highlight-title {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .regulierung-compliance-handel-highlight-title {
    font-size: 1.25rem;
  }
}

.regulierung-compliance-handel-requirements-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.regulierung-compliance-handel-requirements-list li {
  color: var(--color-text-primary);
  padding-left: 1.75rem;
  margin-bottom: 0.75rem;
  position: relative;
  font-size: 0.95rem;
}

@media (min-width: 768px) {
  .regulierung-compliance-handel-requirements-list li {
    font-size: 1rem;
    margin-bottom: 1rem;
  }
}

.regulierung-compliance-handel-requirements-list li:last-child {
  margin-bottom: 0;
}

.regulierung-compliance-handel-requirements-list li::before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
  font-size: 1.25rem;
}

.regulierung-compliance-handel-best-practices {
  background: #f0fdf4;
  border-left-color: #059669;
}

.regulierung-compliance-handel-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 768px) {
  .regulierung-compliance-handel-checklist {
    gap: 1.25rem;
  }
}

.regulierung-compliance-handel-checklist li {
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  margin: 0;
}

@media (min-width: 768px) {
  .regulierung-compliance-handel-checklist li {
    font-size: 1rem;
  }
}

.regulierung-compliance-handel-check-icon {
  color: #059669;
  font-weight: bold;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.regulierung-compliance-handel-disclaimer {
  background: #f9fafb;
  padding: 3rem 0;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
}

@media (min-width: 768px) {
  .regulierung-compliance-handel-disclaimer {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .regulierung-compliance-handel-disclaimer {
    padding: 5rem 0;
  }
}

.regulierung-compliance-handel-disclaimer-content {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
}

@media (min-width: 768px) {
  .regulierung-compliance-handel-disclaimer-content {
    gap: 2rem;
  }
}

.regulierung-compliance-handel-disclaimer-icon {
  font-size: 1.5rem;
  color: #0891b2;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .regulierung-compliance-handel-disclaimer-icon {
    font-size: 1.75rem;
  }
}

.regulierung-compliance-handel-disclaimer-text {
  flex: 1;
}

.regulierung-compliance-handel-disclaimer-title {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  margin-bottom: 0.75rem;
}

@media (min-width: 768px) {
  .regulierung-compliance-handel-disclaimer-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
}

.regulierung-compliance-handel-disclaimer-text p {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .regulierung-compliance-handel-disclaimer-text p {
    font-size: 1rem;
    line-height: 1.8;
  }
}

.regulierung-compliance-handel-related {
  background: var(--color-bg-secondary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .regulierung-compliance-handel-related {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .regulierung-compliance-handel-related {
    padding: 5rem 0;
  }
}

.regulierung-compliance-handel-related-content {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

@media (min-width: 768px) {
  .regulierung-compliance-handel-related-content {
    gap: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .regulierung-compliance-handel-related-content {
    gap: 3rem;
  }
}

.regulierung-compliance-handel-related-title {
  color: var(--color-text-primary);
  font-size: 1.75rem;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .regulierung-compliance-handel-related-title {
    font-size: 2.25rem;
  }
}

.regulierung-compliance-handel-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .regulierung-compliance-handel-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .regulierung-compliance-handel-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

.regulierung-compliance-handel-related-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--color-bg-primary);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  text-decoration: none;
}

@media (min-width: 768px) {
  .regulierung-compliance-handel-related-card {
    padding: 2rem;
    gap: 1.25rem;
  }
}

.regulierung-compliance-handel-related-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.regulierung-compliance-handel-card-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.regulierung-compliance-handel-card-title {
  color: var(--color-text-primary);
  font-size: 1.125rem;
  margin-bottom: 0;
}

@media (min-width: 768px) {
  .regulierung-compliance-handel-card-title {
    font-size: 1.25rem;
  }
}

.regulierung-compliance-handel-card-description {
  color: var(--color-text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 0;
  flex-grow: 1;
}

@media (min-width: 768px) {
  .regulierung-compliance-handel-card-description {
    font-size: 0.95rem;
    line-height: 1.7;
  }
}

.regulierung-compliance-handel-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;
}

@media (min-width: 768px) {
  .regulierung-compliance-handel-card-link {
    font-size: 1rem;
  }
}

.regulierung-compliance-handel-card-link:hover {
  color: var(--color-primary-hover);
  gap: 0.75rem;
}

.regulierung-compliance-handel-card-link .fas {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}

.regulierung-compliance-handel-related-card:hover .regulierung-compliance-handel-card-link .fas {
  transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
  .regulierung-compliance-handel-featured-image,
  .regulierung-compliance-handel-section-image,
  .regulierung-compliance-handel-related-card,
  .regulierung-compliance-handel-card-link,
  .regulierung-compliance-handel-breadcrumb-link {
    transition: none !important;
    animation: none !important;
  }

  .regulierung-compliance-handel-related-card:hover {
    transform: none;
  }

  .regulierung-compliance-handel-card-link:hover .fas {
    transform: none;
  }
}

.post-papierhandel-simulation {
      background: var(--color-bg-primary);
      color: var(--color-text-primary);
    }

    .papierhandel-simulation-breadcrumbs {
      padding: 1.5rem 0;
      font-size: 0.875rem;
      color: var(--color-text-secondary);
    }

    @media (min-width: 768px) {
      .papierhandel-simulation-breadcrumbs {
        padding: 2rem 0;
        font-size: 0.9375rem;
      }
    }

    .papierhandel-simulation-breadcrumbs a {
      color: var(--color-primary);
      margin: 0 0.5rem;
    }

    .papierhandel-simulation-hero {
      position: relative;
      overflow: hidden;
      padding: 3rem 0;
      background: var(--color-bg-secondary);
    }

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

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

    .papierhandel-simulation-hero-deco-1 {
      position: absolute;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
      filter: blur(80px);
      top: -100px;
      left: -150px;
      z-index: 1;
      pointer-events: none;
    }

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

    .papierhandel-simulation-hero-deco-3 {
      position: absolute;
      width: 300px;
      height: 300px;
      background: radial-gradient(ellipse 60% 40%, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
      filter: blur(60px);
      top: 50%;
      right: 5%;
      z-index: 1;
      pointer-events: none;
    }

    .papierhandel-simulation-hero-content {
      position: relative;
      z-index: 10;
    }

    .papierhandel-simulation-hero h1 {
      color: var(--color-text-primary);
      margin-bottom: var(--space-md);
    }

    .papierhandel-simulation-hero .papierhandel-simulation-lead {
      font-size: 1.0625rem;
      color: var(--color-text-secondary);
      margin-bottom: var(--space-lg);
      line-height: 1.7;
      max-width: 600px;
    }

    @media (min-width: 768px) {
      .papierhandel-simulation-hero .papierhandel-simulation-lead {
        font-size: 1.125rem;
        margin-bottom: var(--space-xl);
      }
    }

    .papierhandel-simulation-hero-meta {
      display: flex;
      flex-direction: row;
      gap: 1.5rem;
      margin-bottom: var(--space-xl);
      font-size: 0.875rem;
      color: var(--color-text-muted);
      flex-wrap: wrap;
    }

    @media (min-width: 768px) {
      .papierhandel-simulation-hero-meta {
        gap: 2rem;
        margin-bottom: var(--space-2xl);
        font-size: 0.9375rem;
      }
    }

    .papierhandel-simulation-hero-image {
      position: relative;
      z-index: 10;
      margin-top: var(--space-xl);
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: #e2e8f0;
      aspect-ratio: 16/9;
    }

    @media (min-width: 768px) {
      .papierhandel-simulation-hero-image {
        margin-top: var(--space-2xl);
        border-radius: var(--radius-xl);
      }
    }

    .papierhandel-simulation-hero-image img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .papierhandel-simulation-content {
      position: relative;
      overflow: hidden;
      padding: 3rem 0;
      background: var(--color-bg-primary);
    }

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

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

    .papierhandel-simulation-content-deco-1 {
      position: absolute;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
      filter: blur(80px);
      top: 10%;
      right: -10%;
      z-index: 1;
      pointer-events: none;
    }

    .papierhandel-simulation-content-deco-2 {
      position: absolute;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(6, 182, 212, 0.04) 0%, transparent 70%);
      filter: blur(70px);
      bottom: 15%;
      left: -5%;
      z-index: 1;
      pointer-events: none;
    }

    .papierhandel-simulation-content-wrapper {
      position: relative;
      z-index: 10;
      display: flex;
      flex-direction: column;
      gap: var(--space-xl);
    }

    @media (min-width: 768px) {
      .papierhandel-simulation-content-wrapper {
        gap: var(--space-2xl);
      }
    }

    .papierhandel-simulation-section {
      display: flex;
      flex-direction: column;
      gap: var(--space-lg);
    }

    @media (min-width: 768px) {
      .papierhandel-simulation-section {
        gap: var(--space-xl);
      }
    }

    .papierhandel-simulation-section-alt {
      display: flex;
      flex-direction: column;
      gap: var(--space-lg);
    }

    @media (min-width: 768px) {
      .papierhandel-simulation-section-alt {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: var(--space-xl);
        align-items: center;
      }
    }

    .papierhandel-simulation-section h2 {
      color: var(--color-text-primary);
      margin-bottom: 0;
    }

    .papierhandel-simulation-section p {
      color: var(--color-text-secondary);
      margin-bottom: var(--space-md);
    }

    .papierhandel-simulation-section p:last-child {
      margin-bottom: 0;
    }

    .papierhandel-simulation-section ul {
      color: var(--color-text-secondary);
      padding-left: var(--space-lg);
      margin-bottom: var(--space-lg);
    }

    .papierhandel-simulation-section li {
      margin-bottom: var(--space-sm);
      color: var(--color-text-secondary);
    }

    .papierhandel-simulation-section li:last-child {
      margin-bottom: 0;
    }

    .papierhandel-simulation-image-block {
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: #e2e8f0;
      aspect-ratio: 16/9;
    }

    @media (min-width: 768px) {
      .papierhandel-simulation-image-block {
        border-radius: var(--radius-xl);
      }
    }

    .papierhandel-simulation-image-block img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .papierhandel-simulation-highlight-box {
      padding: 1.5rem;
      background: var(--color-bg-secondary);
      border-left: 4px solid var(--color-primary);
      border-radius: var(--radius-md);
      margin: var(--space-lg) 0;
    }

    @media (min-width: 768px) {
      .papierhandel-simulation-highlight-box {
        padding: 2rem;
        border-left-width: 5px;
        margin: var(--space-xl) 0;
      }
    }

    .papierhandel-simulation-highlight-box p {
      color: var(--color-text-primary);
      margin-bottom: 0;
      font-weight: 500;
    }

    .papierhandel-simulation-quote {
      padding: 2rem 1.5rem;
      background: var(--color-bg-secondary);
      border-radius: var(--radius-lg);
      margin: var(--space-xl) 0;
      font-size: 1.125rem;
      color: var(--color-text-primary);
      font-style: italic;
      line-height: 1.8;
      text-align: center;
    }

    @media (min-width: 768px) {
      .papierhandel-simulation-quote {
        padding: 2.5rem 2rem;
        border-radius: var(--radius-xl);
        margin: var(--space-2xl) 0;
        font-size: 1.25rem;
      }
    }

    .papierhandel-simulation-quote::before {
      content: '"';
      display: block;
      font-size: 3rem;
      color: var(--color-primary);
      opacity: 0.3;
      margin-bottom: 0.5rem;
    }

    .papierhandel-simulation-disclaimer {
      position: relative;
      overflow: hidden;
      padding: 3rem 0;
      background: var(--color-bg-secondary);
      margin-top: var(--space-3xl);
    }

    @media (min-width: 768px) {
      .papierhandel-simulation-disclaimer {
        padding: 5rem 0;
        margin-top: var(--space-3xl);
      }
    }

    .papierhandel-simulation-disclaimer-deco-1 {
      position: absolute;
      width: 500px;
      height: 500px;
      background: radial-gradient(circle, rgba(6, 182, 212, 0.06) 0%, transparent 70%);
      filter: blur(80px);
      top: -50px;
      left: -100px;
      z-index: 1;
      pointer-events: none;
    }

    .papierhandel-simulation-disclaimer-deco-2 {
      position: absolute;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(37, 99, 235, 0.04) 0%, transparent 70%);
      filter: blur(70px);
      bottom: -100px;
      right: -50px;
      z-index: 1;
      pointer-events: none;
    }

    .papierhandel-simulation-disclaimer-content {
      position: relative;
      z-index: 10;
    }

    .papierhandel-simulation-disclaimer-icon {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 2.5rem;
      height: 2.5rem;
      border-radius: var(--radius-lg);
      background: #dbeafe;
      margin-bottom: var(--space-md);
    }

    @media (min-width: 768px) {
      .papierhandel-simulation-disclaimer-icon {
        width: 3rem;
        height: 3rem;
      }
    }

    .papierhandel-simulation-disclaimer-icon .fas {
      font-size: 1.25rem;
      color: var(--color-primary);
    }

    @media (min-width: 768px) {
      .papierhandel-simulation-disclaimer-icon .fas {
        font-size: 1.5rem;
      }
    }

    .papierhandel-simulation-disclaimer h2 {
      color: var(--color-text-primary);
      margin-bottom: var(--space-md);
    }

    .papierhandel-simulation-disclaimer p {
      color: var(--color-text-secondary);
      margin-bottom: var(--space-md);
    }

    .papierhandel-simulation-disclaimer p:last-child {
      margin-bottom: 0;
    }

    .papierhandel-simulation-related {
      position: relative;
      overflow: hidden;
      padding: 3rem 0;
      background: var(--color-bg-primary);
    }

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

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

    .papierhandel-simulation-related-deco-1 {
      position: absolute;
      width: 600px;
      height: 600px;
      background: radial-gradient(circle, rgba(37, 99, 235, 0.05) 0%, transparent 70%);
      filter: blur(80px);
      top: -50px;
      right: -100px;
      z-index: 1;
      pointer-events: none;
    }

    .papierhandel-simulation-related-deco-2 {
      position: absolute;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, rgba(6, 182, 212, 0.04) 0%, transparent 70%);
      filter: blur(70px);
      bottom: 10%;
      left: -5%;
      z-index: 1;
      pointer-events: none;
    }

    .papierhandel-simulation-related-content {
      position: relative;
      z-index: 10;
    }

    .papierhandel-simulation-related h2 {
      color: var(--color-text-primary);
      margin-bottom: var(--space-xl);
      text-align: center;
    }

    @media (min-width: 768px) {
      .papierhandel-simulation-related h2 {
        margin-bottom: var(--space-2xl);
      }
    }

    .papierhandel-simulation-related-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .papierhandel-simulation-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .papierhandel-simulation-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
      }
    }

    .papierhandel-simulation-related-card {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding: 1.5rem;
      background: var(--color-bg-card);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
      text-decoration: none;
    }

    @media (min-width: 768px) {
      .papierhandel-simulation-related-card {
        padding: 2rem;
        gap: 1.25rem;
      }
    }

    .papierhandel-simulation-related-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }

    .papierhandel-simulation-related-card h3 {
      color: var(--color-text-primary);
      margin-bottom: 0;
    }

    .papierhandel-simulation-related-card p {
      color: var(--color-text-secondary);
      margin-bottom: 0;
      font-size: 0.9375rem;
    }

    .papierhandel-simulation-related-card-arrow {
      color: var(--color-primary);
      font-size: 0.875rem;
      margin-top: var(--space-sm);
    }

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

.post-handelsressourcen-lernplattformen {
      background: var(--color-bg-primary);
    }

    .handelsressourcen-lernplattformen-breadcrumbs {
      padding: 1rem 0;
      font-size: 0.875rem;
      color: var(--color-text-secondary);
    }

    @media (min-width: 768px) {
      .handelsressourcen-lernplattformen-breadcrumbs {
        padding: 1.5rem 0;
        font-size: 0.9375rem;
      }
    }

    .handelsressourcen-lernplattformen-breadcrumbs a {
      color: var(--color-primary);
      text-decoration: none;
      transition: color 0.3s ease;
    }

    .handelsressourcen-lernplattformen-breadcrumbs a:hover {
      color: var(--color-primary-hover);
      text-decoration: underline;
    }

    .handelsressourcen-lernplattformen-hero {
      padding: 3rem 0;
      background: var(--color-bg-primary);
    }

    @media (min-width: 768px) {
      .handelsressourcen-lernplattformen-hero {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .handelsressourcen-lernplattformen-hero {
        padding: 5rem 0;
      }
    }

    .handelsressourcen-lernplattformen-hero-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .handelsressourcen-lernplattformen-hero-content {
        gap: 2.5rem;
      }
    }

    .handelsressourcen-lernplattformen-hero h1 {
      color: var(--color-text-primary);
      font-size: 2rem;
      line-height: 1.2;
      margin-bottom: 0.5rem;
    }

    @media (min-width: 768px) {
      .handelsressourcen-lernplattformen-hero h1 {
        font-size: 2.75rem;
      }
    }

    @media (min-width: 1024px) {
      .handelsressourcen-lernplattformen-hero h1 {
        font-size: 3.5rem;
      }
    }

    .handelsressourcen-lernplattformen-hero-subtitle {
      color: var(--color-text-secondary);
      font-size: 1.0625rem;
      line-height: 1.6;
      max-width: 700px;
    }

    @media (min-width: 768px) {
      .handelsressourcen-lernplattformen-hero-subtitle {
        font-size: 1.125rem;
      }
    }

    .handelsressourcen-lernplattformen-hero-meta {
      display: flex;
      flex-wrap: wrap;
      gap: 1.5rem;
      padding: 1.5rem 0;
      border-top: 1px solid #e2e8f0;
      border-bottom: 1px solid #e2e8f0;
      font-size: 0.875rem;
      color: var(--color-text-secondary);
    }

    @media (min-width: 768px) {
      .handelsressourcen-lernplattformen-hero-meta {
        gap: 2rem;
        padding: 2rem 0;
        font-size: 0.9375rem;
      }
    }

    .handelsressourcen-lernplattformen-hero-image {
      width: 100%;
      height: auto;
      max-height: 400px;
      border-radius: var(--radius-lg);
      object-fit: cover;
      box-shadow: var(--shadow-md);
    }

    @media (min-width: 768px) {
      .handelsressourcen-lernplattformen-hero-image {
        max-height: 500px;
      }
    }

    @media (min-width: 1024px) {
      .handelsressourcen-lernplattformen-hero-image {
        max-height: 600px;
      }
    }

    .handelsressourcen-lernplattformen-content-section {
      padding: 3rem 0;
      background: var(--color-bg-primary);
      border-bottom: 1px solid #e2e8f0;
    }

    @media (min-width: 768px) {
      .handelsressourcen-lernplattformen-content-section {
        padding: 4rem 0;
      }
    }

    @media (min-width: 1024px) {
      .handelsressourcen-lernplattformen-content-section {
        padding: 5rem 0;
      }
    }

    .handelsressourcen-lernplattformen-content-section:last-of-type {
      border-bottom: none;
    }

    .handelsressourcen-lernplattformen-section-content {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    @media (min-width: 768px) {
      .handelsressourcen-lernplattformen-section-content {
        gap: 2.5rem;
      }
    }

    @media (min-width: 1024px) {
      .handelsressourcen-lernplattformen-section-content {
        gap: 3rem;
      }
    }

    .handelsressourcen-lernplattformen-content-section h2 {
      color: var(--color-text-primary);
      font-size: 1.75rem;
      line-height: 1.2;
      margin-bottom: 0.5rem;
    }

    @media (min-width: 768px) {
      .handelsressourcen-lernplattformen-content-section h2 {
        font-size: 2.25rem;
      }
    }

    @media (min-width: 1024px) {
      .handelsressourcen-lernplattformen-content-section h2 {
        font-size: 2.75rem;
      }
    }

    .handelsressourcen-lernplattformen-content-section h3 {
      color: var(--color-text-primary);
      font-size: 1.25rem;
      margin-top: 1.5rem;
      margin-bottom: 0.75rem;
    }

    @media (min-width: 768px) {
      .handelsressourcen-lernplattformen-content-section h3 {
        font-size: 1.5rem;
        margin-top: 2rem;
        margin-bottom: 1rem;
      }
    }

    .handelsressourcen-lernplattformen-content-section p {
      color: var(--color-text-secondary);
      font-size: 0.9375rem;
      line-height: 1.7;
      margin-bottom: 1.25rem;
    }

    @media (min-width: 768px) {
      .handelsressourcen-lernplattformen-content-section p {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 1.5rem;
      }
    }

    .handelsressourcen-lernplattformen-content-section p:last-child {
      margin-bottom: 0;
    }

    .handelsressourcen-lernplattformen-text-image-pair {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
      align-items: stretch;
    }

    @media (min-width: 768px) {
      .handelsressourcen-lernplattformen-text-image-pair {
        flex-direction: row;
        align-items: flex-start;
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .handelsressourcen-lernplattformen-text-image-pair {
        gap: 3rem;
      }
    }

    .handelsressourcen-lernplattformen-text-block {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 1rem;
    }

    .handelsressourcen-lernplattformen-image-block {
      flex: 0 0 auto;
      width: 100%;
    }

    @media (min-width: 768px) {
      .handelsressourcen-lernplattformen-image-block {
        width: 45%;
      }
    }

    .handelsressourcen-lernplattformen-section-image {
      width: 100%;
      height: auto;
      max-height: 350px;
      border-radius: var(--radius-lg);
      object-fit: cover;
      box-shadow: var(--shadow-md);
    }

    .handelsressourcen-lernplattformen-full-width-image {
      width: 100%;
      height: auto;
      max-height: 400px;
      border-radius: var(--radius-lg);
      object-fit: cover;
      box-shadow: var(--shadow-md);
      margin: 1.5rem 0;
    }

    @media (min-width: 768px) {
      .handelsressourcen-lernplattformen-full-width-image {
        margin: 2rem 0;
        max-height: 500px;
      }
    }

    .handelsressourcen-lernplattformen-highlight-box {
      padding: 1.5rem;
      background: #dbeafe;
      border-left: 4px solid var(--color-primary);
      border-radius: var(--radius-md);
      margin: 1.5rem 0;
    }

    @media (min-width: 768px) {
      .handelsressourcen-lernplattformen-highlight-box {
        padding: 2rem;
        margin: 2rem 0;
      }
    }

    .handelsressourcen-lernplattformen-highlight-box p {
      color: #1e40af;
      margin-bottom: 0;
      font-weight: 500;
    }

    .handelsressourcen-lernplattformen-highlight-box p:first-child {
      margin-bottom: 0.5rem;
    }

    .handelsressourcen-lernplattformen-list-section {
      margin: 1.5rem 0;
    }

    @media (min-width: 768px) {
      .handelsressourcen-lernplattformen-list-section {
        margin: 2rem 0;
      }
    }

    .handelsressourcen-lernplattformen-list-section ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .handelsressourcen-lernplattformen-list-section li {
      color: var(--color-text-secondary);
      padding-left: 1.75rem;
      margin-bottom: 0.75rem;
      position: relative;
      font-size: 0.9375rem;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .handelsressourcen-lernplattformen-list-section li {
        margin-bottom: 1rem;
        font-size: 1rem;
        line-height: 1.7;
      }
    }

    .handelsressourcen-lernplattformen-list-section li:before {
      content: "";
      position: absolute;
      left: 0;
      color: var(--color-primary);
      font-weight: 600;
    }

    .handelsressourcen-lernplattformen-pull-quote {
      margin: 2rem 0;
      padding: 2rem;
      background: #f8fafc;
      border-left: 5px solid var(--color-secondary);
      border-radius: var(--radius-md);
      font-size: 1.125rem;
      line-height: 1.7;
      color: var(--color-text-primary);
      font-style: italic;
    }

    @media (min-width: 768px) {
      .handelsressourcen-lernplattformen-pull-quote {
        margin: 2.5rem 0;
        padding: 2.5rem;
        font-size: 1.25rem;
      }
    }

    .handelsressourcen-lernplattformen-disclaimer {
      margin-top: 3rem;
      padding: 2rem;
      background: #fef3c7;
      border: 1px solid #fcd34d;
      border-radius: var(--radius-lg);
    }

    @media (min-width: 768px) {
      .handelsressourcen-lernplattformen-disclaimer {
        margin-top: 4rem;
        padding: 2.5rem;
      }
    }

    .handelsressourcen-lernplattformen-disclaimer h3 {
      color: #78350f;
      display: flex;
      align-items: center;
      gap: 0.75rem;
      margin-bottom: 1rem;
      font-size: 1.125rem;
    }

    @media (min-width: 768px) {
      .handelsressourcen-lernplattformen-disclaimer h3 {
        font-size: 1.25rem;
        margin-bottom: 1.25rem;
      }
    }

    .handelsressourcen-lernplattformen-disclaimer p {
      color: #78350f;
      font-size: 0.9375rem;
      line-height: 1.7;
      margin-bottom: 0.75rem;
    }

    @media (min-width: 768px) {
      .handelsressourcen-lernplattformen-disclaimer p {
        font-size: 1rem;
        line-height: 1.8;
        margin-bottom: 1rem;
      }
    }

    .handelsressourcen-lernplattformen-disclaimer p:last-child {
      margin-bottom: 0;
    }

    .handelsressourcen-lernplattformen-related-section {
      padding: 3rem 0;
      background: var(--color-bg-secondary);
      margin-top: 3rem;
    }

    @media (min-width: 768px) {
      .handelsressourcen-lernplattformen-related-section {
        padding: 4rem 0;
        margin-top: 4rem;
      }
    }

    @media (min-width: 1024px) {
      .handelsressourcen-lernplattformen-related-section {
        padding: 5rem 0;
        margin-top: 5rem;
      }
    }

    .handelsressourcen-lernplattformen-related-content {
      display: flex;
      flex-direction: column;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .handelsressourcen-lernplattformen-related-content {
        gap: 2rem;
      }
    }

    .handelsressourcen-lernplattformen-related-heading {
      color: var(--color-text-primary);
      font-size: 1.75rem;
      margin-bottom: 1rem;
    }

    @media (min-width: 768px) {
      .handelsressourcen-lernplattformen-related-heading {
        font-size: 2rem;
        margin-bottom: 1.5rem;
      }
    }

    .handelsressourcen-lernplattformen-related-grid {
      display: grid;
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }

    @media (min-width: 768px) {
      .handelsressourcen-lernplattformen-related-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
      }
    }

    @media (min-width: 1024px) {
      .handelsressourcen-lernplattformen-related-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
      }
    }

    .handelsressourcen-lernplattformen-related-card {
      display: flex;
      flex-direction: column;
      gap: 1rem;
      padding: 1.5rem;
      background: var(--color-bg-card);
      border-radius: var(--radius-lg);
      box-shadow: var(--shadow-sm);
      transition: all 0.3s ease;
      text-decoration: none;
    }

    @media (min-width: 768px) {
      .handelsressourcen-lernplattformen-related-card {
        padding: 2rem;
        gap: 1.25rem;
      }
    }

    .handelsressourcen-lernplattformen-related-card:hover {
      box-shadow: var(--shadow-lg);
      transform: translateY(-4px);
    }

    .handelsressourcen-lernplattformen-related-card h3 {
      color: var(--color-text-primary);
      font-size: 1.125rem;
      margin: 0;
    }

    @media (min-width: 768px) {
      .handelsressourcen-lernplattformen-related-card h3 {
        font-size: 1.25rem;
      }
    }

    .handelsressourcen-lernplattformen-related-card p {
      color: var(--color-text-secondary);
      font-size: 0.875rem;
      margin: 0;
      line-height: 1.6;
    }

    @media (min-width: 768px) {
      .handelsressourcen-lernplattformen-related-card p {
        font-size: 0.9375rem;
        line-height: 1.7;
      }
    }

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

.post-erfolgsgeschichten-fallstudien {
  width: 100%;
}

.erfolgsgeschichten-fallstudien-breadcrumbs {
  background: var(--color-bg-secondary);
  padding: 1rem 0;
  border-bottom: 1px solid #e2e8f0;
}

.erfolgsgeschichten-fallstudien-breadcrumbs .container {
  padding: 0 20px;
}

nav[aria-label="Breadcrumb"] {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.875rem;
}

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

.breadcrumb-link:hover {
  color: var(--color-primary-hover);
}

.breadcrumb-separator {
  color: #cbd5e1;
}

.breadcrumb-current {
  color: var(--color-text-secondary);
}

.erfolgsgeschichten-fallstudien-hero {
  position: relative;
  background: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

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

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

.erfolgsgeschichten-fallstudien-hero-deco-glow-1 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.08) 0%, transparent 70%);
  filter: blur(80px);
  top: -100px;
  left: -150px;
  z-index: 1;
  pointer-events: none;
}

.erfolgsgeschichten-fallstudien-hero-deco-glow-2 {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.07) 0%, transparent 70%);
  filter: blur(70px);
  bottom: -100px;
  right: -120px;
  z-index: 1;
  pointer-events: none;
}

.erfolgsgeschichten-fallstudien-hero-deco-shape-1 {
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(59, 130, 246, 0.05);
  border-radius: 60% 40% 70% 30% / 40% 60% 30% 70%;
  top: 10%;
  right: 5%;
  z-index: 2;
  pointer-events: none;
}

.erfolgsgeschichten-fallstudien-hero-deco-shape-2 {
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(14, 165, 233, 0.04);
  border-radius: 30% 70% 40% 60% / 70% 40% 60% 30%;
  bottom: 15%;
  left: 8%;
  z-index: 2;
  pointer-events: none;
}

.erfolgsgeschichten-fallstudien-hero-deco-accent-1 {
  position: absolute;
  width: 200px;
  height: 120px;
  background: rgba(37, 99, 235, 0.06);
  border-radius: 50%;
  top: 25%;
  left: 10%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.erfolgsgeschichten-fallstudien-hero-deco-accent-2 {
  position: absolute;
  width: 250px;
  height: 150px;
  background: rgba(14, 165, 233, 0.05);
  border-radius: 50%;
  bottom: 10%;
  right: 15%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.erfolgsgeschichten-fallstudien-hero-deco-line {
  position: absolute;
  width: 300px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.15), transparent);
  top: 45%;
  left: 5%;
  z-index: 2;
  pointer-events: none;
}

.erfolgsgeschichten-fallstudien-hero-deco-float {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(59, 130, 246, 0.04);
  border: 1px solid rgba(37, 99, 235, 0.08);
  border-radius: 12px;
  top: 35%;
  right: 25%;
  transform: rotate(-15deg);
  z-index: 1;
  pointer-events: none;
}

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

@media (min-width: 1024px) {
  .erfolgsgeschichten-fallstudien-hero-content {
    grid-template-columns: 1.1fr 0.9fr;
    gap: 3rem;
  }
}

.erfolgsgeschichten-fallstudien-hero-text h1 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.erfolgsgeschichten-fallstudien-hero-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  line-height: 1.6;
  margin-bottom: var(--space-lg);
}

@media (min-width: 768px) {
  .erfolgsgeschichten-fallstudien-hero-subtitle {
    font-size: 1.25rem;
  }
}

.erfolgsgeschichten-fallstudien-hero-meta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: var(--color-text-muted);
}

.meta-divider {
  opacity: 0.5;
}

.erfolgsgeschichten-fallstudien-hero-image {
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-featured-image {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

.erfolgsgeschichten-fallstudien-lead {
  background: var(--color-bg-secondary);
  padding: 3rem 0;
}

@media (min-width: 768px) {
  .erfolgsgeschichten-fallstudien-lead {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .erfolgsgeschichten-fallstudien-lead {
    padding: 5rem 0;
  }
}

.erfolgsgeschichten-fallstudien-lead-content {
  max-width: 800px;
  margin: 0 auto;
}

.erfolgsgeschichten-fallstudien-lead-content p {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.erfolgsgeschichten-fallstudien-lead-content p:last-child {
  margin-bottom: 0;
}

.erfolgsgeschichten-fallstudien-case-study-1 {
  position: relative;
  background: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .erfolgsgeschichten-fallstudien-case-study-1 {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .erfolgsgeschichten-fallstudien-case-study-1 {
    padding: 5rem 0;
  }
}

.erfolgsgeschichten-fallstudien-case-study-1-deco-mesh {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
  filter: blur(90px);
  top: 5%;
  right: -100px;
  z-index: 1;
  pointer-events: none;
}

.erfolgsgeschichten-fallstudien-case-study-1-deco-accent {
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(14, 165, 233, 0.05);
  border-radius: 40% 60% 50% 50% / 50% 50% 60% 40%;
  bottom: 10%;
  left: 5%;
  z-index: 2;
  pointer-events: none;
}

.erfolgsgeschichten-fallstudien-case-study-1-deco-shape {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(59, 130, 246, 0.04);
  border-radius: 50%;
  top: 30%;
  left: 20%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.erfolgsgeschichten-fallstudien-case-study-1-deco-glow {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.07) 0%, transparent 70%);
  filter: blur(70px);
  top: 50%;
  right: 10%;
  z-index: 1;
  pointer-events: none;
}

.erfolgsgeschichten-fallstudien-case-study-1-deco-line-1 {
  position: absolute;
  width: 250px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.12), transparent);
  top: 25%;
  right: 25%;
  z-index: 2;
  pointer-events: none;
}

.erfolgsgeschichten-fallstudien-case-study-1-deco-line-2 {
  position: absolute;
  width: 200px;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.1), transparent);
  bottom: 30%;
  left: 15%;
  z-index: 2;
  pointer-events: none;
}

.erfolgsgeschichten-fallstudien-case-study-1-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .erfolgsgeschichten-fallstudien-case-study-1-content {
    grid-template-columns: 1fr 0.9fr;
    gap: 3rem;
  }
}

.erfolgsgeschichten-fallstudien-case-study-1-text h2 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.erfolgsgeschichten-fallstudien-case-study-1-text p {
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.erfolgsgeschichten-fallstudien-case-study-1-highlight {
  background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  margin: 2rem 0;
  border-left: 4px solid var(--color-primary);
}

@media (min-width: 768px) {
  .erfolgsgeschichten-fallstudien-case-study-1-highlight {
    padding: 2rem;
    margin: 2.5rem 0;
  }
}

.erfolgsgeschichten-fallstudien-case-study-1-highlight h3 {
  color: var(--color-text-primary);
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.highlight-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.highlight-list li {
  color: var(--color-text-primary);
  margin-bottom: 0.75rem;
  padding-left: 1.75rem;
  position: relative;
}

.highlight-list li:before {
  content: "";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: bold;
}

.erfolgsgeschichten-fallstudien-case-study-1-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.case-study-image {
  width: 100%;
  height: auto;
  max-height: 350px;
  object-fit: cover;
  display: block;
}

.erfolgsgeschichten-fallstudien-case-study-2 {
  position: relative;
  background: var(--color-bg-secondary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .erfolgsgeschichten-fallstudien-case-study-2 {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .erfolgsgeschichten-fallstudien-case-study-2 {
    padding: 5rem 0;
  }
}

.erfolgsgeschichten-fallstudien-case-study-2-deco-field {
  position: absolute;
  width: 700px;
  height: 500px;
  background: radial-gradient(ellipse, rgba(14, 165, 233, 0.08) 0%, transparent 60%);
  filter: blur(80px);
  top: -50px;
  left: -200px;
  z-index: 1;
  pointer-events: none;
}

.erfolgsgeschichten-fallstudien-case-study-2-deco-orb {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
  filter: blur(70px);
  bottom: 10%;
  right: -50px;
  z-index: 1;
  pointer-events: none;
}

.erfolgsgeschichten-fallstudien-case-study-2-deco-blob {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(14, 165, 233, 0.05);
  border-radius: 50% 40% 60% 50% / 40% 60% 50% 50%;
  top: 40%;
  right: 20%;
  z-index: 2;
  pointer-events: none;
}

.erfolgsgeschichten-fallstudien-case-study-2-deco-glow-1 {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(59, 130, 246, 0.04);
  border-radius: 50%;
  top: 15%;
  left: 10%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.erfolgsgeschichten-fallstudien-case-study-2-deco-glow-2 {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(14, 165, 233, 0.04);
  border-radius: 50%;
  bottom: 30%;
  left: 30%;
  filter: blur(60px);
  z-index: 1;
  pointer-events: none;
}

.erfolgsgeschichten-fallstudien-case-study-2-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .erfolgsgeschichten-fallstudien-case-study-2-content {
    grid-template-columns: 0.9fr 1fr;
    gap: 3rem;
  }
}

.erfolgsgeschichten-fallstudien-case-study-2-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  order: -1;
}

@media (min-width: 1024px) {
  .erfolgsgeschichten-fallstudien-case-study-2-image {
    order: 0;
  }
}

.erfolgsgeschichten-fallstudien-case-study-2-text h2 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.erfolgsgeschichten-fallstudien-case-study-2-text p {
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.erfolgsgeschichten-fallstudien-case-study-2-quote {
  background: #ffffff;
  padding: 2rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid var(--color-secondary);
  margin: 2rem 0;
  box-shadow: var(--shadow-sm);
}

@media (min-width: 768px) {
  .erfolgsgeschichten-fallstudien-case-study-2-quote {
    padding: 2.5rem;
  }
}

.erfolgsgeschichten-fallstudien-case-study-2-quote blockquote {
  margin: 0;
  padding: 0;
}

.erfolgsgeschichten-fallstudien-case-study-2-quote p {
  color: var(--color-text-primary);
  font-style: italic;
  margin: 0 0 1rem 0;
  font-size: 1.0625rem;
  line-height: 1.7;
}

.erfolgsgeschichten-fallstudien-case-study-2-quote footer {
  color: var(--color-text-secondary);
  font-size: 0.9375rem;
  font-style: normal;
  margin: 0;
}

.erfolgsgeschichten-fallstudien-case-study-3 {
  position: relative;
  background: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .erfolgsgeschichten-fallstudien-case-study-3 {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .erfolgsgeschichten-fallstudien-case-study-3 {
    padding: 5rem 0;
  }
}

.erfolgsgeschichten-fallstudien-case-study-3-deco-gradient {
  position: absolute;
  width: 800px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(37, 99, 235, 0.07) 0%, transparent 65%);
  filter: blur(100px);
  top: -100px;
  right: -200px;
  z-index: 1;
  pointer-events: none;
}

.erfolgsgeschichten-fallstudien-case-study-3-deco-accent-1 {
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(14, 165, 233, 0.05);
  border-radius: 30% 70% 50% 50% / 50% 50% 70% 30%;
  bottom: 15%;
  right: 5%;
  z-index: 2;
  pointer-events: none;
}

.erfolgsgeschichten-fallstudien-case-study-3-deco-accent-2 {
  position: absolute;
  width: 280px;
  height: 280px;
  background: rgba(59, 130, 246, 0.04);
  border-radius: 50% 40% 50% 60% / 40% 50% 40% 50%;
  top: 20%;
  left: 10%;
  z-index: 2;
  pointer-events: none;
}

.erfolgsgeschichten-fallstudien-case-study-3-deco-glow {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.06) 0%, transparent 70%);
  filter: blur(75px);
  top: 35%;
  left: -100px;
  z-index: 1;
  pointer-events: none;
}

.erfolgsgeschichten-fallstudien-case-study-3-deco-shape {
  position: absolute;
  width: 200px;
  height: 150px;
  background: rgba(37, 99, 235, 0.05);
  border-radius: 50%;
  bottom: 30%;
  left: 25%;
  filter: blur(40px);
  z-index: 1;
  pointer-events: none;
}

.erfolgsgeschichten-fallstudien-case-study-3-deco-line {
  position: absolute;
  width: 300px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(14, 165, 233, 0.13), transparent);
  top: 35%;
  right: 15%;
  z-index: 2;
  pointer-events: none;
}

.erfolgsgeschichten-fallstudien-case-study-3-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  align-items: flex-start;
}

@media (min-width: 1024px) {
  .erfolgsgeschichten-fallstudien-case-study-3-content {
    grid-template-columns: 1fr 0.9fr;
    gap: 3rem;
  }
}

.erfolgsgeschichten-fallstudien-case-study-3-text h2 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.erfolgsgeschichten-fallstudien-case-study-3-text p {
  color: var(--color-text-secondary);
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.erfolgsgeschichten-fallstudien-case-study-3-stats {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: 2rem 0;
}

@media (min-width: 768px) {
  .erfolgsgeschichten-fallstudien-case-study-3-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

.stat-card {
  background: linear-gradient(135deg, #dbeafe 0%, #cffafe 100%);
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid rgba(37, 99, 235, 0.1);
}

.stat-number {
  display: block;
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
  font-family: var(--font-heading);
}

.stat-label {
  display: block;
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  line-height: 1.5;
}

.erfolgsgeschichten-fallstudien-case-study-3-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.erfolgsgeschichten-fallstudien-key-lessons {
  position: relative;
  background: var(--color-bg-secondary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .erfolgsgeschichten-fallstudien-key-lessons {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .erfolgsgeschichten-fallstudien-key-lessons {
    padding: 5rem 0;
  }
}

.erfolgsgeschichten-fallstudien-key-lessons-deco-mesh-1 {
  position: absolute;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.07) 0%, transparent 70%);
  filter: blur(85px);
  top: -150px;
  left: -150px;
  z-index: 1;
  pointer-events: none;
}

.erfolgsgeschichten-fallstudien-key-lessons-deco-mesh-2 {
  position: absolute;
  width: 550px;
  height: 550px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.06) 0%, transparent 70%);
  filter: blur(80px);
  bottom: -120px;
  right: -100px;
  z-index: 1;
  pointer-events: none;
}

.erfolgsgeschichten-fallstudien-key-lessons-deco-orb {
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(59, 130, 246, 0.04);
  border-radius: 50%;
  top: 50%;
  left: 20%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.erfolgsgeschichten-fallstudien-key-lessons-deco-accent {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(14, 165, 233, 0.05);
  border-radius: 40% 60% 50% 50% / 50% 50% 60% 40%;
  top: 30%;
  right: 10%;
  z-index: 2;
  pointer-events: none;
}

.erfolgsgeschichten-fallstudien-key-lessons-content {
  position: relative;
  z-index: 10;
}

.erfolgsgeschichten-fallstudien-key-lessons-content h2 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
  text-align: center;
}

.erfolgsgeschichten-fallstudien-key-lessons-content > p {
  color: var(--color-text-secondary);
  text-align: center;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .erfolgsgeschichten-fallstudien-key-lessons-content > p {
    margin-bottom: 3rem;
  }
}

.erfolgsgeschichten-fallstudien-lessons-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .erfolgsgeschichten-fallstudien-lessons-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .erfolgsgeschichten-fallstudien-lessons-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.lesson-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem;
  background: #ffffff;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
  .lesson-card {
    padding: 2rem;
    gap: 1.25rem;
  }
}

.lesson-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.lesson-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  background: linear-gradient(135deg, #dbeafe 0%, #e0f2fe 100%);
  border-radius: var(--radius-lg);
  font-size: 1.5rem;
  color: var(--color-primary);
  flex-shrink: 0;
}

.lesson-card h3 {
  color: var(--color-text-primary);
  margin: 0;
  margin-bottom: 0.5rem;
  font-size: 1.125rem;
}

.lesson-card p {
  color: var(--color-text-secondary);
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.erfolgsgeschichten-fallstudien-disclaimer {
  position: relative;
  background: #ffffff;
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .erfolgsgeschichten-fallstudien-disclaimer {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .erfolgsgeschichten-fallstudien-disclaimer {
    padding: 5rem 0;
  }
}

.erfolgsgeschichten-fallstudien-disclaimer-deco-accent-1 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
  filter: blur(70px);
  top: -100px;
  right: -80px;
  z-index: 1;
  pointer-events: none;
}

.erfolgsgeschichten-fallstudien-disclaimer-deco-accent-2 {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.05) 0%, transparent 70%);
  filter: blur(65px);
  bottom: -50px;
  left: -100px;
  z-index: 1;
  pointer-events: none;
}

.erfolgsgeschichten-fallstudien-disclaimer-deco-glow {
  position: absolute;
  width: 250px;
  height: 250px;
  background: rgba(59, 130, 246, 0.04);
  border-radius: 50%;
  top: 50%;
  left: 25%;
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.erfolgsgeschichten-fallstudien-disclaimer-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.5rem;
  align-items: flex-start;
  background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border-left: 4px solid #f59e0b;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .erfolgsgeschichten-fallstudien-disclaimer-content {
    padding: 2.5rem;
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .erfolgsgeschichten-fallstudien-disclaimer-content {
    padding: 3rem;
    gap: 2.5rem;
  }
}

.disclaimer-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  background: rgba(245, 158, 11, 0.2);
  border-radius: var(--radius-lg);
  color: #d97706;
  font-size: 1.5rem;
  flex-shrink: 0;
}

.disclaimer-text h3 {
  color: #92400e;
  margin-bottom: 1rem;
  font-size: 1.125rem;
}

.disclaimer-text p {
  color: #78350f;
  margin-bottom: 1rem;
  line-height: 1.7;
  font-size: 0.9375rem;
}

.disclaimer-text p:last-child {
  margin-bottom: 0;
}

.erfolgsgeschichten-fallstudien-related {
  position: relative;
  background: var(--color-bg-secondary);
  padding: 3rem 0;
  overflow: hidden;
}

@media (min-width: 768px) {
  .erfolgsgeschichten-fallstudien-related {
    padding: 4rem 0;
  }
}

@media (min-width: 1024px) {
  .erfolgsgeschichten-fallstudien-related {
    padding: 5rem 0;
  }
}

.erfolgsgeschichten-fallstudien-related-deco-mesh {
  position: absolute;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.07) 0%, transparent 70%);
  filter: blur(90px);
  top: -200px;
  left: -250px;
  z-index: 1;
  pointer-events: none;
}

.erfolgsgeschichten-fallstudien-related-deco-orb-1 {
  position: absolute;
  width: 450px;
  height: 450px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.06) 0%, transparent 70%);
  filter: blur(75px);
  bottom: -100px;
  right: -100px;
  z-index: 1;
  pointer-events: none;
}

.erfolgsgeschichten-fallstudien-related-deco-orb-2 {
  position: absolute;
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
  filter: blur(60px);
  top: 20%;
  right: 10%;
  z-index: 1;
  pointer-events: none;
}

.erfolgsgeschichten-fallstudien-related-deco-accent {
  position: absolute;
  width: 300px;
  height: 300px;
  background: rgba(14, 165, 233, 0.04);
  border-radius: 50% 40% 60% 50% / 40% 60% 50% 50%;
  top: 40%;
  left: 15%;
  z-index: 2;
  pointer-events: none;
}

.erfolgsgeschichten-fallstudien-related-content {
  position: relative;
  z-index: 10;
}

.erfolgsgeschichten-fallstudien-related-content h2 {
  color: var(--color-text-primary);
  margin-bottom: var(--space-md);
}

.erfolgsgeschichten-fallstudien-related-content > p {
  color: var(--color-text-secondary);
  margin-bottom: 2rem;
}

.erfolgsgeschichten-fallstudien-related-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .erfolgsgeschichten-fallstudien-related-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .erfolgsgeschichten-fallstudien-related-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}

.related-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  background: #ffffff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}

.related-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.related-card-image {
  width: 100%;
  height: 200px;
  overflow: hidden;
  background: #e2e8f0;
}

.related-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.related-card:hover .related-thumbnail {
  transform: scale(1.05);
}

.related-card-content {
  padding: 1.5rem;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media (min-width: 768px) {
  .related-card-content {
    padding: 1.75rem;
  }
}

.related-card h3 {
  color: var(--color-text-primary);
  margin: 0;
  font-size: 1.0625rem;
  line-height: 1.4;
}

.related-card p {
  color: var(--color-text-secondary);
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.5;
  flex-grow: 1;
}

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

:root {
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f8fafc;
  --color-bg-tertiary: #f1f5f9;
  --color-bg-card: #ffffff;
  --color-text-primary: #1e293b;
  --color-text-secondary: #64748b;
  --color-text-muted: #94a3b8;
  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-secondary: #0891b2;
  --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.1);
  --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;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

@media (max-width: 768px) {
  .container {
    padding: 0 var(--space-md);
  }
}

.market-academy-main {
  width: 100%;
}

.market-academy-main h1 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary);
}

.market-academy-main h2 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary);
}

.market-academy-main h3 {
  font-family: var(--font-primary);
  font-weight: 600;
  line-height: 1.3;
  color: var(--color-text-primary);
}

.market-academy-main p {
  color: var(--color-text-secondary);
  line-height: 1.8;
}

.market-academy-main a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 300ms ease-in-out;
}

.market-academy-main a:hover {
  color: var(--color-primary-hover);
}

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

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

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

.hero-glow-accent-1 {
  position: absolute;
  width: 500px;
  height: 500px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 50%;
  filter: blur(80px);
  top: -150px;
  right: -100px;
  z-index: 1;
  pointer-events: none;
}

.hero-glow-accent-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(8, 145, 178, 0.06);
  border-radius: 50%;
  filter: blur(70px);
  bottom: -100px;
  left: -50px;
  z-index: 1;
  pointer-events: none;
}

.hero-shape-element {
  position: absolute;
  width: 300px;
  height: 350px;
  background: rgba(37, 99, 235, 0.04);
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  top: 10%;
  left: 5%;
  z-index: 2;
  pointer-events: none;
}

.hero-float-card {
  position: absolute;
  width: 180px;
  height: 140px;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(37, 99, 235, 0.15);
  border-radius: 12px;
  bottom: 15%;
  right: 8%;
  z-index: 2;
  pointer-events: none;
  box-shadow: var(--shadow-md);
}

.trading-hero-content {
  position: relative;
  z-index: 10;
}

.trading-hero-content h1 {
  font-size: 2rem;
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .trading-hero-content h1 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .trading-hero-content h1 {
    font-size: 3.5rem;
  }
}

.trading-hero-content p {
  font-size: 0.875rem;
  margin-bottom: var(--space-lg);
  max-width: 600px;
}

@media (min-width: 768px) {
  .trading-hero-content p {
    font-size: 1rem;
    margin-bottom: var(--space-xl);
  }
}

.hero-intro-text {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .hero-intro-text {
    font-size: 1rem;
  }
}

.hero-visual {
  width: 100%;
  max-width: 1000px;
  height: auto;
  margin: 2rem 0;
  border-radius: var(--radius-lg);
  display: block;
}

@media (max-width: 768px) {
  .hero-visual {
    margin: 1.5rem 0;
  }
}

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

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

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

.foundation-deco-1 {
  position: absolute;
  width: 450px;
  height: 450px;
  background: rgba(8, 145, 178, 0.07);
  border-radius: 50%;
  filter: blur(75px);
  top: 20%;
  left: -100px;
  z-index: 1;
  pointer-events: none;
}

.foundation-deco-2 {
  position: absolute;
  width: 350px;
  height: 350px;
  background: rgba(37, 99, 235, 0.05);
  border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
  bottom: 10%;
  right: 5%;
  z-index: 2;
  pointer-events: none;
}

.foundation-deco-3 {
  position: absolute;
  width: 200px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(37, 99, 235, 0.15), transparent);
  top: 35%;
  right: 15%;
  z-index: 2;
  pointer-events: none;
}

.foundation-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .foundation-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.foundation-content h2 {
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .foundation-content h2 {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .foundation-content h2 {
    font-size: 2.5rem;
  }
}

.foundation-content p {
  font-size: 0.875rem;
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .foundation-content p {
    font-size: 1rem;
  }
}

.foundation-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: var(--radius-lg);
  margin-top: var(--space-md);
}

@media (min-width: 1024px) {
  .foundation-image {
    margin-top: 0;
  }
}

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

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

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

.methodology-glow-left {
  position: absolute;
  width: 480px;
  height: 480px;
  background: rgba(37, 99, 235, 0.07);
  border-radius: 50%;
  filter: blur(85px);
  top: 15%;
  right: -150px;
  z-index: 1;
  pointer-events: none;
}

.methodology-shape-1 {
  position: absolute;
  width: 280px;
  height: 320px;
  background: rgba(8, 145, 178, 0.05);
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  bottom: 20%;
  left: 3%;
  z-index: 2;
  pointer-events: none;
}

.methodology-shape-2 {
  position: absolute;
  width: 150px;
  height: 150px;
  background: rgba(37, 99, 235, 0.04);
  border-radius: 45% 55% 60% 40% / 55% 45% 55% 45%;
  top: 25%;
  left: 10%;
  z-index: 1;
  pointer-events: none;
}

.methodology-content {
  position: relative;
  z-index: 10;
}

.methodology-content h2 {
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .methodology-content h2 {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .methodology-content h2 {
    font-size: 2.5rem;
  }
}

.methodology-content p {
  font-size: 0.875rem;
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .methodology-content p {
    font-size: 1rem;
  }
}

.methodology-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-top: var(--space-lg);
}

@media (min-width: 768px) {
  .methodology-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }
}

@media (min-width: 1024px) {
  .methodology-grid {
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
  }
}

.methodology-card {
  background: var(--color-bg-card);
  padding: 1rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(37, 99, 235, 0.1);
  box-shadow: var(--shadow-sm);
  transition: all 350ms cubic-bezier(0.4, 0, 0.2, 1);
}

@media (min-width: 768px) {
  .methodology-card {
    padding: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .methodology-card {
    padding: 2rem;
  }
}

.methodology-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(37, 99, 235, 0.2);
}

.methodology-card h3 {
  font-size: 1.125rem;
  margin-bottom: var(--space-sm);
}

@media (min-width: 768px) {
  .methodology-card h3 {
    font-size: 1.25rem;
  }
}

.methodology-card p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
}

@media (min-width: 768px) {
  .methodology-card p {
    font-size: 0.9rem;
  }
}

.methodology-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin-top: var(--space-xl);
  border-radius: var(--radius-lg);
}

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

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

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

.expertise-glow-1 {
  position: absolute;
  width: 520px;
  height: 520px;
  background: rgba(8, 145, 178, 0.06);
  border-radius: 50%;
  filter: blur(90px);
  top: -100px;
  left: -150px;
  z-index: 1;
  pointer-events: none;
}

.expertise-glow-2 {
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(37, 99, 235, 0.06);
  border-radius: 50%;
  filter: blur(75px);
  bottom: -80px;
  right: -80px;
  z-index: 1;
  pointer-events: none;
}

.expertise-accent {
  position: absolute;
  width: 250px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(8, 145, 178, 0.2), transparent);
  top: 40%;
  left: 8%;
  z-index: 2;
  pointer-events: none;
}

.expertise-content {
  position: relative;
  z-index: 10;
}

.expertise-content h2 {
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .expertise-content h2 {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .expertise-content h2 {
    font-size: 2.5rem;
  }
}

.expertise-content p {
  font-size: 0.875rem;
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .expertise-content p {
    font-size: 1rem;
  }
}

.expertise-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin: var(--space-lg) 0;
}

@media (min-width: 768px) {
  .expertise-list {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}

.expertise-list li {
  display: flex;
  gap: var(--space-sm);
  color: var(--color-text-secondary);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .expertise-list li {
    font-size: 0.95rem;
  }
}

.expertise-list i {
  color: var(--color-primary);
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.expertise-image {
  width: 100%;
  max-width: 900px;
  height: auto;
  margin-top: var(--space-xl);
  border-radius: var(--radius-lg);
}

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

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

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

.commitment-deco-1 {
  position: absolute;
  width: 460px;
  height: 460px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: 50%;
  filter: blur(80px);
  top: 10%;
  left: -120px;
  z-index: 1;
  pointer-events: none;
}

.commitment-deco-2 {
  position: absolute;
  width: 320px;
  height: 380px;
  background: rgba(8, 145, 178, 0.05);
  border-radius: 50% 50% 40% 60% / 60% 40% 60% 40%;
  bottom: 5%;
  right: 5%;
  z-index: 2;
  pointer-events: none;
}

.commitment-deco-3 {
  position: absolute;
  width: 200px;
  height: 200px;
  background: rgba(37, 99, 235, 0.03);
  border-radius: 45% 55% 50% 50% / 50% 50% 50% 50%;
  top: 50%;
  right: 15%;
  z-index: 1;
  pointer-events: none;
}

.commitment-content {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 1024px) {
  .commitment-content {
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
  }
}

.commitment-content h2 {
  font-size: 1.75rem;
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .commitment-content h2 {
    font-size: 2rem;
  }
}

@media (min-width: 1024px) {
  .commitment-content h2 {
    font-size: 2.5rem;
  }
}

.commitment-content p {
  font-size: 0.875rem;
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .commitment-content p {
    font-size: 1rem;
  }
}

.commitment-highlights {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.highlight-item {
  display: flex;
  gap: var(--space-md);
  align-items: flex-start;
}

.highlight-item i {
  color: var(--color-primary);
  font-size: 1.5rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.highlight-item h3 {
  font-size: 1.1rem;
  margin-bottom: var(--space-xs);
}

@media (min-width: 768px) {
  .highlight-item h3 {
    font-size: 1.2rem;
  }
}

.highlight-item p {
  font-size: 0.85rem;
  color: var(--color-text-secondary);
}

@media (min-width: 768px) {
  .highlight-item p {
    font-size: 0.9rem;
  }
}

.commitment-image {
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: var(--radius-lg);
  margin-top: var(--space-md);
}

@media (min-width: 1024px) {
  .commitment-image {
    margin-top: 0;
  }
}

.disclaimer-section {
  position: relative;
  overflow: hidden;
  background: var(--color-bg-secondary);
  padding: 3rem 0;
  border-top: 1px solid rgba(37, 99, 235, 0.08);
}

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

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

.disclaimer-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  background: rgba(8, 145, 178, 0.04);
  border-radius: 50%;
  filter: blur(70px);
  top: 20%;
  right: -100px;
  z-index: 1;
  pointer-events: none;
}

.disclaimer-content {
  position: relative;
  z-index: 10;
  max-width: 900px;
}

.disclaimer-content h3 {
  font-size: 1.3rem;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

@media (min-width: 768px) {
  .disclaimer-content h3 {
    font-size: 1.5rem;
  }
}

.disclaimer-content h3 i {
  color: var(--color-primary);
  font-size: 1.5rem;
}

.disclaimer-content p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--color-text-secondary);
}

@media (min-width: 768px) {
  .disclaimer-content p {
    font-size: 0.95rem;
  }
}

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

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

:root {
  --color-bg-primary: #ffffff;
  --color-bg-secondary: #f8fafc;
  --color-bg-tertiary: #f1f5f9;
  --color-bg-card: #ffffff;
  --color-text-primary: #1e293b;
  --color-text-secondary: #64748b;
  --color-text-muted: #94a3b8;
  --color-primary: #2563eb;
  --color-primary-hover: #1d4ed8;
  --color-secondary: #0891b2;
  --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);
  --radius-md: 8px;
  --radius-lg: 12px;
}

.legal-docs {
  background: var(--color-bg-primary);
  color: var(--color-text-primary);
  font-family: var(--font-primary);
  line-height: 1.6;
}

.legal-docs .hero-section {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  padding: 3rem 1rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .legal-docs .hero-section {
    padding: 5rem 1rem;
  }
}

@media (min-width: 1024px) {
  .legal-docs .hero-section {
    padding: 6rem 1rem;
  }
}

.legal-docs .hero-section .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
}

.legal-docs .hero-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-docs .hero-section h1 {
  font-family: var(--font-heading);
  font-size: 2rem;
  line-height: 1.3;
  color: var(--color-text-primary);
  margin-bottom: 0.5rem;
}

@media (min-width: 768px) {
  .legal-docs .hero-section h1 {
    font-size: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .legal-docs .hero-section h1 {
    font-size: 3rem;
  }
}

.legal-docs .hero-section .last-updated {
  font-size: 0.875rem;
  color: var(--color-text-muted);
  font-style: italic;
}

.legal-docs .content-section {
  background: var(--color-bg-primary);
  padding: 3rem 1rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .legal-docs .content-section {
    padding: 4rem 1rem;
  }
}

@media (min-width: 1024px) {
  .legal-docs .content-section {
    padding: 5rem 1rem;
  }
}

.legal-docs .content-section .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
}

.legal-docs .content-wrapper {
  max-width: 900px;
  margin: 0 auto;
}

.legal-docs .content-section h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-text-primary);
  margin-top: 2rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-bg-tertiary);
}

@media (min-width: 768px) {
  .legal-docs .content-section h2 {
    font-size: 1.875rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .legal-docs .content-section h2 {
    font-size: 2rem;
  }
}

.legal-docs .content-section p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .legal-docs .content-section p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
}

.legal-docs .content-section ul,
.legal-docs .content-section ol {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--color-text-secondary);
}

@media (min-width: 768px) {
  .legal-docs .content-section ul,
  .legal-docs .content-section ol {
    margin-left: 2rem;
  }
}

.legal-docs .content-section li {
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .legal-docs .content-section li {
    font-size: 1rem;
  }
}

.legal-docs .content-section strong {
  color: var(--color-text-primary);
  font-weight: 600;
}

.legal-docs .contact-section {
  background: var(--color-bg-secondary);
  padding: 3rem 1rem;
  overflow: hidden;
}

@media (min-width: 768px) {
  .legal-docs .contact-section {
    padding: 4rem 1rem;
  }
}

@media (min-width: 1024px) {
  .legal-docs .contact-section {
    padding: 5rem 1rem;
  }
}

.legal-docs .contact-section .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 1rem;
}

.legal-docs .contact-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-docs .contact-section h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--color-text-primary);
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--color-bg-tertiary);
}

@media (min-width: 768px) {
  .legal-docs .contact-section h2 {
    font-size: 1.875rem;
    margin-bottom: 2rem;
  }
}

@media (min-width: 1024px) {
  .legal-docs .contact-section h2 {
    font-size: 2rem;
  }
}

.legal-docs .contact-section p {
  font-size: 0.875rem;
  color: var(--color-text-secondary);
  margin-bottom: 1rem;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .legal-docs .contact-section p {
    font-size: 1rem;
    margin-bottom: 1.25rem;
  }
}

.legal-docs .contact-item {
  margin-bottom: 1rem;
  padding: 1rem;
  background: var(--color-bg-primary);
  border-radius: var(--radius-md);
}

@media (min-width: 768px) {
  .legal-docs .contact-item {
    margin-bottom: 1.25rem;
    padding: 1.25rem;
  }
}

.legal-docs .contact-item strong {
  display: block;
  color: var(--color-text-primary);
  font-weight: 600;
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .legal-docs .contact-item strong {
    font-size: 1rem;
  }
}

.legal-docs .contact-item span {
  color: var(--color-text-secondary);
  font-size: 0.875rem;
}

@media (min-width: 768px) {
  .legal-docs .contact-item span {
    font-size: 1rem;
  }
}

  
  .thank-hero-section {
    background: var(--color-bg-primary);
    padding: 3rem 0;
    overflow: hidden;
  }

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

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

  .thank-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .thank-hero-content {
      gap: 2rem;
    }
  }

  .thank-icon {
    font-size: 4rem;
    color: var(--color-primary);
    animation: bounce-in 0.6s ease-out;
  }

  @media (min-width: 768px) {
    .thank-icon {
      font-size: 5rem;
    }
  }

  @media (min-width: 1024px) {
    .thank-icon {
      font-size: 6rem;
    }
  }

  .thank-hero-section h1 {
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.2;
    margin: 0;
  }

  @media (min-width: 768px) {
    .thank-hero-section h1 {
      font-size: 2.75rem;
    }
  }

  @media (min-width: 1024px) {
    .thank-hero-section h1 {
      font-size: 3.5rem;
    }
  }

  .thank-lead {
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
  }

  @media (min-width: 768px) {
    .thank-lead {
      font-size: 1.125rem;
    }
  }

  
  .thank-message-section {
    background: var(--color-bg-secondary);
    padding: 3rem 0;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .thank-message-section {
      padding: 4rem 0;
    }
  }

  @media (min-width: 1024px) {
    .thank-message-section {
      padding: 5rem 0;
    }
  }

  .thank-message-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  @media (min-width: 768px) {
    .thank-message-content {
      gap: 2.5rem;
    }
  }

  @media (min-width: 1024px) {
    .thank-message-content {
      gap: 3rem;
    }
  }

  .thank-message-card {
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    box-shadow: var(--shadow-md);
    width: 100%;
  }

  @media (min-width: 768px) {
    .thank-message-card {
      padding: 2.5rem;
      max-width: 700px;
    }
  }

  @media (min-width: 1024px) {
    .thank-message-card {
      padding: 3rem;
    }
  }

  .thank-message-card h2 {
    color: var(--color-text-primary);
    font-family: var(--font-heading);
    font-size: 1.875rem;
    font-weight: 700;
    line-height: 1.3;
    margin: 0 0 1rem 0;
  }

  @media (min-width: 768px) {
    .thank-message-card h2 {
      font-size: 2.25rem;
      margin-bottom: 1.5rem;
    }
  }

  .thank-message-card > p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 2rem 0;
  }

  @media (min-width: 768px) {
    .thank-message-card > p {
      font-size: 1rem;
      margin-bottom: 2.5rem;
    }
  }

  
  .thank-highlights {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
  }

  @media (min-width: 768px) {
    .thank-highlights {
      grid-template-columns: repeat(3, 1fr);
      gap: 1.5rem;
      margin-bottom: 2.5rem;
    }
  }

  @media (min-width: 1024px) {
    .thank-highlights {
      gap: 2rem;
      margin-bottom: 3rem;
    }
  }

  .highlight-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
  }

  @media (min-width: 768px) {
    .highlight-item {
      align-items: center;
      text-align: center;
    }
  }

  .highlight-item i {
    font-size: 2rem;
    color: var(--color-primary);
  }

  @media (min-width: 768px) {
    .highlight-item i {
      font-size: 2.5rem;
    }
  }

  .highlight-item h3 {
    color: var(--color-text-primary);
    font-size: 1rem;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
  }

  @media (min-width: 768px) {
    .highlight-item h3 {
      font-size: 1.125rem;
    }
  }

  .highlight-item p {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
  }

  @media (min-width: 768px) {
    .highlight-item p {
      font-size: 0.9rem;
    }
  }

  
  .thank-next-steps {
    background: var(--color-bg-tertiary);
    border-left: 4px solid var(--color-primary);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    margin-top: 1.5rem;
  }

  @media (min-width: 768px) {
    .thank-next-steps {
      padding: 2rem;
      margin-top: 2rem;
    }
  }

  .thank-next-steps h3 {
    color: var(--color-text-primary);
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    line-height: 1.4;
  }

  @media (min-width: 768px) {
    .thank-next-steps h3 {
      font-size: 1.25rem;
    }
  }

  .steps-list {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.8;
    margin: 0;
    padding-left: 1.5rem;
  }

  @media (min-width: 768px) {
    .steps-list {
      font-size: 1rem;
      padding-left: 2rem;
    }
  }

  .steps-list li {
    margin-bottom: 0.75rem;
  }

  .steps-list li:last-child {
    margin-bottom: 0;
  }

  
  .thank-btn {
    padding: 0.875rem 2rem;
    font-size: 0.95rem;
  }

  @media (min-width: 768px) {
    .thank-btn {
      padding: 1rem 2.5rem;
      font-size: 1rem;
    }
  }

  @media (min-width: 1024px) {
    .thank-btn {
      padding: 1.125rem 3rem;
    }
  }

  
  .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
    font-family: var(--font-primary);
  }

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

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

  .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);
    }
  }

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

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

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

  .error-page {
    background: var(--color-bg-primary);
  }

  
  .error-hero-section {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 3rem 1.5rem;
    overflow: hidden;
    position: relative;
  }

  @media (min-width: 768px) {
    .error-hero-section {
      padding: 5rem 2rem;
    }
  }

  @media (min-width: 1024px) {
    .error-hero-section {
      padding: 6rem 2rem;
    }
  }

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

  @media (min-width: 768px) {
    .error-hero-content {
      grid-template-columns: 1fr 1fr;
      gap: 3rem;
    }
  }

  @media (min-width: 1024px) {
    .error-hero-content {
      gap: 4rem;
    }
  }

  
  .error-illustration {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
  }

  @media (min-width: 768px) {
    .error-illustration {
      min-height: 350px;
    }
  }

  .chart-container {
    position: relative;
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
  }

  @media (min-width: 768px) {
    .chart-container {
      max-width: 100%;
    }
  }

  .error-chart {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(239, 68, 68, 0.1));
  }

  
  .error-floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
  }

  .float-element {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite;
  }

  .float-element i {
    color: var(--color-primary);
  }

  .float-1 {
    top: 10%;
    right: 5%;
    background: rgba(37, 99, 235, 0.1);
    animation-delay: 0s;
  }

  .float-2 {
    top: 50%;
    left: -5%;
    background: rgba(8, 145, 178, 0.1);
    animation-delay: 1s;
  }

  .float-3 {
    bottom: 10%;
    right: 10%;
    background: rgba(239, 68, 68, 0.1);
    animation-delay: 2s;
  }

  @keyframes float {
    0%, 100% {
      transform: translateY(0px);
    }
    50% {
      transform: translateY(-20px);
    }
  }

  
  .error-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  @media (min-width: 768px) {
    .error-content {
      gap: 2rem;
    }
  }

  .error-code-wrapper {
    display: flex;
    align-items: flex-start;
  }

  .error-code {
    font-size: 4rem;
    font-weight: 900;
    background: linear-gradient(135deg, #2563eb 0%, #0891b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    letter-spacing: -0.02em;
  }

  @media (min-width: 768px) {
    .error-code {
      font-size: 5.5rem;
    }
  }

  @media (min-width: 1024px) {
    .error-code {
      font-size: 6rem;
    }
  }

  .error-title {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.2;
  }

  @media (min-width: 768px) {
    .error-title {
      font-size: 2.5rem;
    }
  }

  @media (min-width: 1024px) {
    .error-title {
      font-size: 3rem;
    }
  }

  .error-description {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
  }

  @media (min-width: 768px) {
    .error-description {
      font-size: 1rem;
    }
  }

  
  .error-suggestions {
    background: var(--color-bg-card);
    border-left: 4px solid var(--color-primary);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
  }

  @media (min-width: 768px) {
    .error-suggestions {
      padding: 2rem;
    }
  }

  .suggestions-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
  }

  @media (min-width: 768px) {
    .suggestions-title {
      font-size: 1.125rem;
    }
  }

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

  @media (min-width: 768px) {
    .suggestions-list {
      gap: 1rem;
    }
  }

  .suggestions-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
  }

  @media (min-width: 768px) {
    .suggestions-list li {
      font-size: 0.95rem;
    }
  }

  .suggestions-list i {
    color: var(--color-primary);
    font-size: 1.125rem;
    margin-top: 0.125rem;
    flex-shrink: 0;
  }

  
  .btn-large {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
  }

  @media (min-width: 768px) {
    .btn-large {
      padding: 1rem 2rem;
      font-size: 1rem;
      gap: 0.875rem;
    }
  }

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

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

  .btn-primary i {
    font-size: 1.125rem;
  }

  
  .error-features-section {
    background: var(--color-bg-secondary);
    padding: 3rem 1.5rem;
    overflow: hidden;
  }

  @media (min-width: 768px) {
    .error-features-section {
      padding: 4rem 2rem;
    }
  }

  @media (min-width: 1024px) {
    .error-features-section {
      padding: 5rem 2rem;
    }
  }

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

  @media (min-width: 768px) {
    .error-features-content {
      grid-template-columns: repeat(3, 1fr);
      gap: 2rem;
    }
  }

  @media (min-width: 1024px) {
    .error-features-content {
      gap: 2.5rem;
    }
  }

  .feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 1.5rem;
    background: var(--color-bg-card);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    gap: 1rem;
  }

  @media (min-width: 768px) {
    .feature-card {
      padding: 2rem;
      gap: 1.25rem;
    }
  }

  .feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
  }

  .feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(37, 99, 235, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--color-primary);
  }

  @media (min-width: 768px) {
    .feature-icon {
      width: 70px;
      height: 70px;
      font-size: 2rem;
    }
  }

  .feature-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-primary);
  }

  @media (min-width: 768px) {
    .feature-title {
      font-size: 1.25rem;
    }
  }

  .feature-text {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    line-height: 1.5;
    margin: 0;
  }

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

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

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

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

  

.main.category-page-trading-fundamentals-guide {
  background: var(--color-bg-primary);
}

.hero-section-trading-fundamentals-guide {
  position: relative;
  padding: 8rem 0 6rem;
  background: linear-gradient(135deg, #0f2847 0%, #1a3a52 50%, #2d5a7b 100%);
  overflow: hidden;
  z-index: 1;
}

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

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

.hero-deco-gradient-field-trading {
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
}

.hero-deco-glow-primary-trading {
  position: absolute;
  top: 10%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.2) 0%, transparent 60%);
  border-radius: 50%;
  z-index: 1;
  filter: blur(60px);
  pointer-events: none;
}

.hero-deco-shape-accent-trading {
  position: absolute;
  bottom: 20%;
  right: 10%;
  width: 300px;
  height: 300px;
  background: linear-gradient(45deg, rgba(37, 99, 235, 0.1), rgba(8, 145, 178, 0.1));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 1;
  pointer-events: none;
  animation: float 8s ease-in-out infinite;
}

.hero-deco-float-element-trading {
  position: absolute;
  top: 30%;
  left: 5%;
  width: 200px;
  height: 200px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

.hero-deco-corner-glow-trading {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle at bottom left, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  z-index: 1;
  pointer-events: none;
}

.hero-deco-line-accent-trading {
  position: absolute;
  top: 40%;
  right: 15%;
  width: 2px;
  height: 150px;
  background: linear-gradient(to bottom, transparent, rgba(255, 255, 255, 0.2), transparent);
  z-index: 1;
  pointer-events: none;
  transform: rotate(25deg);
}

.hero-deco-pulse-orb-trading {
  position: absolute;
  top: 60%;
  left: 20%;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(8, 145, 178, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 1;
  pointer-events: none;
  animation: pulse 3s ease-in-out infinite;
}

.hero-deco-wave-element-trading {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100px;
  background: linear-gradient(to right, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.05) 50%, rgba(255, 255, 255, 0.03) 100%);
  z-index: 1;
  pointer-events: none;
  clip-path: polygon(0 50%, 100% 30%, 100% 100%, 0% 100%);
}

@keyframes float {
  0%, 100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

.hero-content-trading-fundamentals-guide {
  position: relative;
  z-index: 10;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-content-trading-fundamentals-guide h1 {
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--space-lg);
  line-height: 1.1;
  letter-spacing: -1px;
}

@media (min-width: 768px) {
  .hero-content-trading-fundamentals-guide h1 {
    font-size: 3.5rem;
  }
}

@media (min-width: 1024px) {
  .hero-content-trading-fundamentals-guide h1 {
    font-size: 4.5rem;
  }
}

.hero-tagline-trading {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: var(--space-xl);
  max-width: 750px;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .hero-tagline-trading {
    font-size: 1.25rem;
  }
}

.hero-stats-trading {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: var(--space-lg);
  max-width: 600px;
  margin: 0 auto;
}

.stat-card-trading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat-card-trading:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-4px);
}

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

.stat-label-trading {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.featured-post-section-trading-fundamentals-guide {
  position: relative;
  padding: 6rem 0;
  background: var(--color-bg-secondary);
  z-index: 2;
}

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

.featured-post-content-trading {
  max-width: 1200px;
  margin: 0 auto;
}

.featured-card-trading-fundamentals-guide {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
  background: var(--color-bg-card);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  transition: all 0.4s ease;
}

@media (min-width: 1024px) {
  .featured-card-trading-fundamentals-guide {
    grid-template-columns: 1fr 1fr;
    align-items: center;
  }
}

.featured-card-trading-fundamentals-guide:hover {
  transform: translateY(-8px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.featured-image-trading {
  width: 100%;
  height: 350px;
  object-fit: cover;
  display: block;
}

@media (min-width: 1024px) {
  .featured-image-trading {
    height: 500px;
  }
}

.featured-text-trading {
  padding: var(--space-xl);
  display: flex;
  flex-direction: column;
  gap: var(--space-lg);
}

@media (min-width: 1024px) {
  .featured-text-trading {
    padding: var(--space-3xl);
  }
}

.featured-text-trading h2 {
  color: var(--color-text-primary);
  font-size: 2rem;
  line-height: 1.2;
  margin-bottom: 0;
}

@media (min-width: 1024px) {
  .featured-text-trading h2 {
    font-size: 2.5rem;
  }
}

.featured-text-trading p {
  color: var(--color-text-secondary);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 0;
}

.posts-section-trading-fundamentals-guide {
  position: relative;
  padding: 6rem 0;
  background: var(--color-bg-primary);
  z-index: 2;
}

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

.posts-content-trading-fundamentals-guide {
  max-width: 1400px;
  margin: 0 auto;
}

.section-title-trading {
  text-align: center;
  color: var(--color-text-primary);
  font-size: 2.5rem;
  margin-bottom: var(--space-3xl);
}

@media (min-width: 1024px) {
  .section-title-trading {
    font-size: 3rem;
  }
}

.posts-grid-trading-fundamentals-guide {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xl);
}

@media (min-width: 768px) {
  .posts-grid-trading-fundamentals-guide {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .posts-grid-trading-fundamentals-guide {
    grid-template-columns: repeat(3, 1fr);
  }
}

.card-trading-fundamentals-guide {
  display: flex;
  flex-direction: column;
  background: var(--color-bg-card);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: all 0.3s ease;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.card-trading-fundamentals-guide img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.card-trading-fundamentals-guide:hover img {
  transform: scale(1.05);
}

.card-trading-fundamentals-guide h3 {
  color: var(--color-text-primary);
  font-size: 1.375rem;
  line-height: 1.3;
  margin: var(--space-lg) var(--space-lg) var(--space-sm);
  transition: color 0.3s ease;
}

.card-trading-fundamentals-guide:hover h3 {
  color: var(--color-primary);
}

.card-trading-fundamentals-guide p {
  color: var(--color-text-secondary);
  font-size: 1rem;
  line-height: 1.6;
  margin: 0 var(--space-lg) var(--space-lg);
  flex-grow: 1;
}

.card-trading-fundamentals-guide a {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-primary);
  font-weight: 600;
  font-size: 0.9375rem;
  margin: 0 var(--space-lg) var(--space-lg);
  transition: all 0.3s ease;
}

.card-trading-fundamentals-guide a:hover {
  color: var(--color-primary-hover);
  gap: var(--space-sm);
}

.card-trading-fundamentals-guide a::after {
  content: '';
  transition: transform 0.3s ease;
}

.card-trading-fundamentals-guide a:hover::after {
  transform: translateX(4px);
}

.insight-section-trading-fundamentals-guide {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
  overflow: hidden;
  z-index: 2;
}

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

.insight-section-trading-fundamentals-guide::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(to right, transparent, var(--color-primary), transparent);
  z-index: 1;
}

.insight-content-trading-fundamentals-guide {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.insight-quote-trading {
  position: relative;
  margin: 0 0 var(--space-xl);
  padding: var(--space-xl);
  background: rgba(255, 255, 255, 0.6);
  border-left: 4px solid var(--color-primary);
  border-radius: var(--radius-lg);
  backdrop-filter: blur(10px);
}

.insight-quote-trading::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 20px;
  font-size: 6rem;
  color: var(--color-primary);
  opacity: 0.2;
  font-family: var(--font-heading);
  line-height: 1;
}

.insight-quote-trading p {
  color: var(--color-text-primary);
  font-size: 1.25rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--space-md);
}

@media (min-width: 768px) {
  .insight-quote-trading p {
    font-size: 1.5rem;
  }
}

.quote-author-trading {
  display: block;
  color: var(--color-text-secondary);
  font-size: 1rem;
  font-weight: 600;
  font-style: normal;
  margin-top: var(--space-md);
}

.insight-text-trading {
  color: var(--color-text-secondary);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: 0;
}

.learning-section-trading-fundamentals-guide {
  position: relative;
  padding: 6rem 0;
  background: var(--color-bg-primary);
  z-index: 2;
}

@media (min-width: 1024px) {
  .learning-section-trading-fundamentals-guide {
    padding: 8rem 0;
  }
}

.learning-content-trading-fundamentals-guide {
  max-width: 900px;
  margin: 0 auto;
}

.learning-content-trading-fundamentals-guide h2 {
  color: var(--color-text-primary);
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: var(--space-xl);
}

@media (min-width: 1024px) {
  .learning-content-trading-fundamentals-guide h2 {
    font-size: 3rem;
  }
}

.learning-content-trading-fundamentals-guide p {
  color: var(--color-text-secondary);
  font-size: 1.125rem;
  line-height: 1.8;
  margin-bottom: var(--space-lg);
}

.learning-content-trading-fundamentals-guide p:last-child {
  margin-bottom: 0;
}

@media (max-width: 767px) {
  .hero-deco-gradient-field-trading,
  .hero-deco-glow-primary-trading,
  .hero-deco-shape-accent-trading {
    width: 400px;
    height: 400px;
  }
  
  .hero-deco-float-element-trading,
  .hero-deco-pulse-orb-trading {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-deco-shape-accent-trading,
  .hero-deco-float-element-trading,
  .hero-deco-pulse-orb-trading {
    animation: none;
  }
  
  .card-trading-fundamentals-guide,
  .featured-card-trading-fundamentals-guide,
  .stat-card-trading {
    transition: none;
  }
}

@media print {
  .hero-deco-gradient-field-trading,
  .hero-deco-glow-primary-trading,
  .hero-deco-shape-accent-trading,
  .hero-deco-float-element-trading,
  .hero-deco-corner-glow-trading,
  .hero-deco-line-accent-trading,
  .hero-deco-pulse-orb-trading,
  .hero-deco-wave-element-trading {
    display: none;
  }
  
  .hero-section-trading-fundamentals-guide {
    background: #ffffff;
    color: #000000;
  }
  
  .hero-content-trading-fundamentals-guide h1,
  .stat-number-trading,
  .stat-label-trading {
    color: #000000;
  }
}