.elementor-2115 .elementor-element.elementor-element-5e1b0c7{--display:flex;}/* Start custom CSS *//* ============================================
       ARTIKEL STYLES
       ============================================ */
    :root {
      --petrol: #2B6A7C;
      --petrol-light: #3D8A9E;
      --petrol-dark: #1E4D5A;
      --sky-light: #D5E8F0;
      --cloud-white: #F8FCFD;
      --night-blue: #0F2B3C;
      --accent-warm: #E8B86D;
      --dream-purple: #6B4C9A;
      --dream-light: #E8E0F0;
      --text-dark: #333333;
      --text-medium: #555555;
      --success-green: #6BAF72;
      --warning-red: #E07A5F;
    }

    .bsj-article {
      font-family: 'Quicksand', sans-serif;
      color: var(--text-dark);
      line-height: 1.7;
      max-width: 900px;
      margin: 0 auto;
      padding: 20px;
    }

    .bsj-article .intro {
      font-size: 1.15rem;
      color: var(--text-medium);
      margin-bottom: 50px;
    }

    .bsj-article .intro p { margin-bottom: 20px; }

    .bsj-article h2 {
      color: var(--petrol);
      font-size: 1.8rem;
      font-weight: 700;
      margin: 50px 0 25px;
    }

    .bsj-article h2:first-of-type { margin-top: 0; }

    .bsj-article h3 {
      color: var(--petrol);
      font-size: 1.3rem;
      font-weight: 600;
      margin: 30px 0 15px;
    }

    .bsj-article p {
      margin-bottom: 18px;
      font-size: 1.05rem;
    }

    .bsj-article strong { color: var(--petrol-dark); }

    /* Dream Hero Box */
    .bsj-article .dream-hero {
      background: linear-gradient(145deg, var(--night-blue), #1a3a4d);
      border-radius: 24px;
      padding: 40px;
      margin: 40px 0;
      color: white;
      position: relative;
      overflow: hidden;
    }

    .bsj-article .dream-hero::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='20' cy='20' r='1' fill='white' fill-opacity='0.3'/%3E%3Ccircle cx='80' cy='30' r='1.5' fill='white' fill-opacity='0.4'/%3E%3Ccircle cx='40' cy='70' r='1' fill='white' fill-opacity='0.2'/%3E%3Ccircle cx='90' cy='80' r='2' fill='white' fill-opacity='0.3'/%3E%3Ccircle cx='10' cy='60' r='1.5' fill='white' fill-opacity='0.25'/%3E%3Ccircle cx='60' cy='10' r='1' fill='white' fill-opacity='0.35'/%3E%3Ccircle cx='50' cy='50' r='1.5' fill='white' fill-opacity='0.2'/%3E%3C/svg%3E");
      animation: twinkle 4s ease-in-out infinite;
    }

    @keyframes twinkle {
      0%, 100% { opacity: 0.5; }
      50% { opacity: 1; }
    }

    .bsj-article .dream-hero h3 {
      color: white;
      margin-top: 0;
      position: relative;
      z-index: 1;
    }

    .bsj-article .dream-hero p {
      color: rgba(255,255,255,0.9);
      position: relative;
      z-index: 1;
    }

    .bsj-article .dream-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
      margin-top: 25px;
      position: relative;
      z-index: 1;
    }

    .bsj-article .stat-box {
      background: rgba(255,255,255,0.1);
      border-radius: 12px;
      padding: 20px;
      text-align: center;
    }

    .bsj-article .stat-box .stat-number {
      font-size: 2.5rem;
      font-weight: 700;
      color: var(--accent-warm);
    }

    .bsj-article .stat-box .stat-label {
      font-size: 0.9rem;
      color: rgba(255,255,255,0.8);
      margin-top: 5px;
    }

    /* Theorie Cards */
    .bsj-article .theorie-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
      gap: 25px;
      margin: 30px 0;
    }

    .bsj-article .theorie-card {
      background: linear-gradient(145deg, var(--cloud-white), #fff);
      border-radius: 20px;
      padding: 30px;
      box-shadow: 0 8px 30px rgba(107, 76, 154, 0.1);
      border-left: 5px solid var(--dream-purple);
      transition: transform 0.3s ease;
    }

    .bsj-article .theorie-card:hover {
      transform: translateY(-3px);
    }

    .bsj-article .theorie-card .theorie-icon {
      width: 60px;
      height: 60px;
      background: linear-gradient(145deg, var(--dream-purple), #8B6CAA);
      border-radius: 15px;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 15px;
    }

    .bsj-article .theorie-card .theorie-icon svg {
      width: 32px;
      height: 32px;
    }

    .bsj-article .theorie-card h4 {
      color: var(--dream-purple);
      font-size: 1.1rem;
      margin: 0 0 10px 0;
    }

    .bsj-article .theorie-card p {
      font-size: 0.95rem;
      color: var(--text-medium);
      margin: 0;
    }

    /* Traumarten Cards */
    .bsj-article .traumart-card {
      background: linear-gradient(145deg, var(--cloud-white), #fff);
      border-radius: 24px;
      padding: 35px;
      margin-bottom: 30px;
      box-shadow: 0 8px 30px rgba(43, 106, 124, 0.1);
      position: relative;
      overflow: hidden;
    }

    .bsj-article .traumart-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 8px;
      height: 100%;
      background: var(--dream-purple);
      border-radius: 24px 0 0 24px;
    }

    .bsj-article .traumart-header {
      display: flex;
      align-items: center;
      gap: 20px;
      margin-bottom: 15px;
    }

    .bsj-article .traumart-icon {
      width: 70px;
      height: 70px;
      border-radius: 16px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    }

    .bsj-article .traumart-icon svg {
      width: 40px;
      height: 40px;
    }

    .bsj-article .traumart-card.normal .traumart-icon { background: linear-gradient(145deg, var(--sky-light), #c5d8e8); }
    .bsj-article .traumart-card.albtraum .traumart-icon { background: linear-gradient(145deg, #E07A5F, #c96a52); }
    .bsj-article .traumart-card.luzid .traumart-icon { background: linear-gradient(145deg, var(--dream-purple), #8B6CAA); }
    .bsj-article .traumart-card.wiederkehrend .traumart-icon { background: linear-gradient(145deg, var(--accent-warm), #d4a85a); }

    /* Luzid Träumen Technik Cards */
    .bsj-article .technik-card {
      background: linear-gradient(145deg, var(--dream-light), #fff);
      border-radius: 20px;
      padding: 30px;
      margin-bottom: 25px;
      border: 2px solid var(--dream-purple);
      position: relative;
    }

    .bsj-article .technik-card .technik-nummer {
      position: absolute;
      top: -15px;
      left: 25px;
      background: var(--dream-purple);
      color: white;
      width: 40px;
      height: 40px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 1.2rem;
    }

    .bsj-article .technik-card h4 {
      color: var(--dream-purple);
      font-size: 1.15rem;
      margin: 10px 0 15px 0;
    }

    .bsj-article .technik-card .technik-badge {
      display: inline-block;
      background: var(--dream-purple);
      color: white;
      padding: 3px 10px;
      border-radius: 12px;
      font-size: 0.75rem;
      font-weight: 600;
      margin-bottom: 10px;
    }

    .bsj-article .technik-steps {
      margin-top: 15px;
    }

    .bsj-article .technik-step {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      padding: 10px 0;
    }

    .bsj-article .step-num {
      width: 24px;
      height: 24px;
      background: var(--petrol);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      font-weight: 600;
      flex-shrink: 0;
    }

    .bsj-article .step-text {
      font-size: 0.95rem;
      color: var(--text-medium);
    }

    /* Tip Box */
    .bsj-article .tip-box {
      background: linear-gradient(145deg, var(--sky-light), var(--cloud-white));
      border-left: 4px solid var(--accent-warm);
      padding: 25px 30px;
      border-radius: 0 16px 16px 0;
      margin: 40px 0;
    }

    .bsj-article .tip-box h4 {
      color: var(--petrol);
      font-size: 1.1rem;
      font-weight: 700;
      margin: 0 0 10px 0;
    }

    .bsj-article .tip-box p {
      margin: 0;
      font-size: 0.95rem;
      color: var(--text-medium);
    }

    /* Traumtagebuch Box */
    .bsj-article .traumtagebuch-box {
      background: linear-gradient(145deg, var(--dream-light), #fff);
      border: 2px solid var(--dream-purple);
      border-radius: 20px;
      padding: 30px;
      margin: 30px 0;
    }

    .bsj-article .traumtagebuch-box h4 {
      color: var(--dream-purple);
      font-size: 1.1rem;
      margin: 0 0 15px 0;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .bsj-article .traumtagebuch-tipps {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 15px;
    }

    .bsj-article .traumtagebuch-tipp {
      background: white;
      padding: 15px;
      border-radius: 12px;
      font-size: 0.9rem;
      color: var(--text-medium);
      display: flex;
      align-items: flex-start;
      gap: 10px;
    }

    .bsj-article .traumtagebuch-tipp .tipp-icon {
      font-size: 1.3rem;
    }

    /* Produkt-Empfehlung Box */
    .bsj-article .produkt-box {
      background: linear-gradient(145deg, #fef9f0, #fff);
      border: 2px solid var(--accent-warm);
      border-radius: 16px;
      padding: 25px;
      margin: 30px 0;
    }

    .bsj-article .produkt-box h4 {
      color: var(--petrol);
      font-size: 1rem;
      margin: 0 0 10px 0;
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .bsj-article .produkt-box p {
      margin: 0 0 15px 0;
      font-size: 0.95rem;
      color: var(--text-medium);
    }

    .bsj-article .affiliate-btn {
      display: inline-block;
      background: linear-gradient(145deg, var(--accent-warm), #d4a85a);
      color: white;
      padding: 10px 20px;
      border-radius: 8px;
      font-size: 0.95rem;
      font-weight: 600;
      text-decoration: none;
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .bsj-article .affiliate-btn:hover {
      transform: translateY(-2px);
      box-shadow: 0 5px 15px rgba(232, 184, 109, 0.4);
    }

    /* Internal Link Box */
    .bsj-article .internal-link-box {
      background: linear-gradient(145deg, #f0f7fa, #fff);
      border: 2px solid var(--sky-light);
      border-radius: 16px;
      padding: 25px;
      margin: 30px 0;
      display: flex;
      align-items: center;
      gap: 20px;
    }

    .bsj-article .internal-link-box .link-icon {
      width: 60px;
      height: 60px;
      background: var(--petrol);
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .bsj-article .internal-link-box .link-icon svg {
      width: 30px;
      height: 30px;
      fill: white;
    }

    .bsj-article .internal-link-box .link-content h4 {
      margin: 0 0 5px 0;
      color: var(--petrol);
      font-size: 1.1rem;
    }

    .bsj-article .internal-link-box .link-content p {
      margin: 0;
      font-size: 0.9rem;
      color: var(--text-medium);
    }

    .bsj-article .internal-link-box .link-content a {
      color: var(--petrol);
      font-weight: 600;
      text-decoration: underline;
    }

    /* FAQ Section */
    .bsj-article .faq-item {
      background: var(--cloud-white);
      border-radius: 16px;
      padding: 25px;
      margin-bottom: 15px;
      border-left: 4px solid var(--dream-purple);
    }

    .bsj-article .faq-item h4 {
      color: var(--dream-purple);
      font-size: 1.05rem;
      margin: 0 0 10px 0;
    }

    .bsj-article .faq-item p {
      font-size: 0.95rem;
      color: var(--text-medium);
      margin: 0;
    }

    /* Conclusion */
    .bsj-article .conclusion {
      margin-top: 50px;
      padding-top: 30px;
      border-top: 2px solid var(--sky-light);
    }

    .bsj-article .signature {
      font-style: italic;
      color: var(--petrol);
      font-size: 1.1rem;
      margin-top: 30px;
    }

    /* Animationen */
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-5px); }
    }

    @keyframes pulse-soft {
      0%, 100% { opacity: 0.6; }
      50% { opacity: 1; }
    }

    @keyframes dream-float {
      0%, 100% { transform: translateY(0) rotate(0deg); }
      25% { transform: translateY(-3px) rotate(2deg); }
      75% { transform: translateY(3px) rotate(-2deg); }
    }

    .bsj-article .icon-animate-float { animation: float 4s ease-in-out infinite; }
    .bsj-article .icon-animate-pulse { animation: pulse-soft 3s ease-in-out infinite; }
    .bsj-article .icon-animate-dream { animation: dream-float 5s ease-in-out infinite; }

    /* Responsive */
    @media (max-width: 768px) {
      .bsj-article .dream-stats { grid-template-columns: 1fr; }
      .bsj-article .theorie-grid { grid-template-columns: 1fr; }
      .bsj-article .traumtagebuch-tipps { grid-template-columns: 1fr; }
      .bsj-article .internal-link-box { flex-direction: column; text-align: center; }
      .bsj-article .traumart-header { flex-direction: column; text-align: center; }
    }/* End custom CSS */