.elementor-2161 .elementor-element.elementor-element-2b22f55{--display:flex;--gap:15px 15px;--row-gap:15px;--column-gap:15px;}@media(min-width:768px){.elementor-2161 .elementor-element.elementor-element-2b22f55{--content-width:860px;}}/* Start custom CSS */:root {
      --petrol: #2B6A7C;
      --petrol-light: #3D8A9E;
      --petrol-dark: #1E4D5A;
      --sky-light: #D5E8F0;
      --cloud-white: #F8FCFD;
      --night-blue: #0F2B3C;
      --accent-warm: #E8B86D;
      --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); }

    /* Symptom Cards */
    .bsj-article .symptom-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 20px;
      margin: 30px 0;
    }

    .bsj-article .symptom-card {
      background: linear-gradient(145deg, var(--cloud-white), #fff);
      border-radius: 16px;
      padding: 25px;
      text-align: center;
      box-shadow: 0 5px 20px rgba(43, 106, 124, 0.08);
      transition: transform 0.3s ease;
    }

    .bsj-article .symptom-card:hover {
      transform: translateY(-5px);
    }

    .bsj-article .symptom-card .symptom-icon {
      width: 70px;
      height: 70px;
      margin: 0 auto 15px;
      background: var(--sky-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
    }

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

    .bsj-article .symptom-card h4 {
      color: var(--petrol);
      font-size: 1rem;
      margin: 0 0 8px 0;
    }

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

    /* Info Box mit Icon */
    .bsj-article .info-box {
      background: linear-gradient(145deg, var(--sky-light), var(--cloud-white));
      border-radius: 20px;
      padding: 30px;
      margin: 40px 0;
      display: flex;
      gap: 25px;
      align-items: flex-start;
    }

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

    .bsj-article .info-box .info-icon svg {
      width: 45px;
      height: 45px;
      fill: white;
    }

    .bsj-article .info-box .info-content h3 {
      margin-top: 0;
      color: var(--petrol);
    }

    .bsj-article .info-box .info-content p {
      margin-bottom: 0;
    }

    /* Tipps Section */
    .bsj-article .tipps-section {
      margin: 50px 0;
    }

    .bsj-article .tipp-card {
      background: linear-gradient(145deg, var(--cloud-white), #fff);
      border-radius: 20px;
      padding: 30px;
      margin-bottom: 25px;
      box-shadow: 0 5px 25px rgba(43, 106, 124, 0.08);
      position: relative;
      overflow: hidden;
    }

    .bsj-article .tipp-card::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 5px;
      height: 100%;
      background: var(--petrol);
    }

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

    .bsj-article .tipp-number {
      width: 50px;
      height: 50px;
      background: var(--petrol);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 1.3rem;
      font-weight: 700;
      flex-shrink: 0;
    }

    .bsj-article .tipp-header h3 {
      margin: 0;
      font-size: 1.2rem;
    }

    .bsj-article .tipp-card p {
      margin-left: 70px;
      margin-bottom: 0;
    }

    /* 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: 20px 0 20px 70px;
    }

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

    /* 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);
    }

    /* Warning Box */
    .bsj-article .warning-box {
      background: linear-gradient(145deg, #fef3f2, #fff);
      border-left: 4px solid var(--warning-red);
      padding: 25px 30px;
      border-radius: 0 16px 16px 0;
      margin: 40px 0;
    }

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

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

    /* Ursachen Liste */
    .bsj-article .ursachen-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 20px;
      margin: 30px 0;
    }

    .bsj-article .ursachen-box {
      background: var(--cloud-white);
      border-radius: 16px;
      padding: 25px;
    }

    .bsj-article .ursachen-box h4 {
      color: var(--petrol);
      font-size: 1.1rem;
      margin: 0 0 15px 0;
    }

    .bsj-article .ursachen-box ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .bsj-article .ursachen-box li {
      padding: 8px 0;
      padding-left: 25px;
      position: relative;
      font-size: 0.95rem;
      color: var(--text-medium);
      border-bottom: 1px solid var(--sky-light);
    }

    .bsj-article .ursachen-box li:last-child {
      border-bottom: none;
    }

    .bsj-article .ursachen-box li::before {
      content: '•';
      position: absolute;
      left: 0;
      color: var(--petrol);
      font-weight: bold;
      font-size: 1.2rem;
    }

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

    /* Checkliste */
    .bsj-article .checklist {
      background: var(--cloud-white);
      border-radius: 16px;
      padding: 30px;
      margin: 30px 0;
    }

    .bsj-article .checklist h4 {
      color: var(--petrol);
      font-size: 1.2rem;
      margin: 0 0 20px 0;
    }

    .bsj-article .checklist ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .bsj-article .checklist li {
      padding: 12px 0;
      padding-left: 35px;
      position: relative;
      font-size: 1rem;
      border-bottom: 1px solid var(--sky-light);
    }

    .bsj-article .checklist li:last-child { border-bottom: none; }

    .bsj-article .checklist li::before {
      content: '✓';
      position: absolute;
      left: 0;
      top: 10px;
      width: 24px;
      height: 24px;
      background: var(--petrol);
      color: white;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
    }

    /* 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 pulse-legs {
      0%, 100% { transform: translateX(0); }
      25% { transform: translateX(-2px); }
      75% { transform: translateX(2px); }
    }

    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-3px); }
    }

    .bsj-article .icon-animate-pulse { animation: pulse-legs 1.5s ease-in-out infinite; }
    .bsj-article .icon-animate-float { animation: float 3s ease-in-out infinite; }

    /* Responsive */
    @media (max-width: 768px) {
      .bsj-article .info-box { flex-direction: column; align-items: center; text-align: center; }
      .bsj-article .ursachen-grid { grid-template-columns: 1fr; }
      .bsj-article .tipp-card p { margin-left: 0; margin-top: 15px; }
      .bsj-article .produkt-box { margin-left: 0; }
      .bsj-article .internal-link-box { flex-direction: column; text-align: center; }
      .bsj-article .symptom-grid { grid-template-columns: 1fr 1fr; }
    }/* End custom CSS */