    .article-content h2 {
      font-family: 'Press Start 2P', cursive;
      font-size: 2.5em;
      text-align: center;
      margin-bottom: 30px;
      background: var(--button-bg);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
    }

    .article-content h3 {
      font-size: 1.8em;
      color: var(--primary-color);
      border-bottom: 2px solid var(--secondary-color);
      padding-bottom: 5px;
      margin-top: 30px;
margin-bottom: 30px;
    }

    .article-content h4 {
      font-size: 1.4em;
      color: var(--subtext-color);
      margin-top: 20px;
margin-bottom: 20px;
    }

    .article-content p {
      font-size: 1em;
      line-height: 1.6;
      color: var(--text-color);
margin-bottom: 15px;
    margin-top: 15px;
    }

    .article-content a {
      color: var(--secondary-color);
      text-decoration: none;
      font-weight: bold;
      transition: color 0.3s ease;
    }

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

    .article-content {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .article-content img {
      width: 100%;
      border-radius: 10px;
      border: 2px solid var(--border-color);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
      transition: transform 0.3s ease;
    }

    .article-content img:hover {
      transform: scale(1.02);
    }

    .article-content .button {
      display: inline-block;
      padding: 10px 20px;
      font-size: 1em;
      font-weight: bold;
      text-transform: uppercase;
      text-decoration: none;
      color: #000;
      background: var(--button-bg);
      border-radius: 5px;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      box-shadow: 0 3px 6px rgba(0, 0, 0, 0.5);
      margin-top: 10px;
    }

    .article-content .button:hover {
      transform: scale(1.1);
      box-shadow: 0 5px 10px rgba(0, 0, 0, 0.7);
    }

    /* Grid für Bilder mit Text */
    .article-content .grid-section {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 30px;
      margin-top: 40px;
    }

    .article-content .grid-section img {
      width: 100%;
      height: auto;
      border-radius: 10px;
    }

    /* Responsive Anpassungen */
    @media (max-width: 960px) {
      .grid-section {
        grid-template-columns: 1fr;
      }
    }