    body {
      margin: 0;
      background-color: #c4a267;
      font-family: 'Georgia', serif;
      color: #000;
      line-height: 1.6;
      padding: 1rem;
    }
    ul {
      list-style-type: none;
      margin: 0;
      padding: 0;
    }
    a {
      text-decoration: none;
      color: black;
    }
.news-header-image {
  display: block;
  max-width: 100%;     /* passt sich dem umgebenden Layout an */
  margin: 0 auto;       /* zentriert, falls nötig */
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.news-header-image img {
  display: block;
  width: 100%;          /* Bild füllt den Container */
  height: auto;         /* behält Seitenverhältnis */
  max-width: 100%;      /* verhindert Überlauf auf Mobilgeräten */
}
    .vintage-box {
      border: 4px double #000;
      padding: 1.5rem 2rem;
      position: relative;
      text-align: center;
      background-color: #c4a267;
      box-shadow: inset 0 0 0 3px #000;
      max-width: 100%;
    }

    .vintage-box::before,
    .vintage-box::after {
      content: "";
      position: absolute;
      width: 50px;
      height: 50px;
      background: repeating-linear-gradient(
        45deg,
        #000,
        #000 2px,
        transparent 2px,
        transparent 4px
      );
      opacity: 0.2;
    }

    .vintage-box::before {
      top: 0;
      left: 0;
    }

    .vintage-box::after {
      bottom: 0;
      right: 0;
    }

    .vintage-text {
      font-size: 3rem;
      font-weight: bold;
      letter-spacing: 2px;
      text-shadow: 2px 2px #000, -1px -1px #000;
    }

    .slogan {
      margin-top: 1.5rem;
      font-size: 1.5rem;
      text-align: center;
      font-style: italic;
    }

    section {
      margin-bottom: 2rem;
    }

    h2 {
      font-size: 1.8rem;
      border-bottom: 1px dashed #000;
      padding-bottom: 0.3rem;
      margin-bottom: 0.5rem;
    }

    p {
      text-align: justify;
    }

    .news {
      background-color: #fff8e1;
      border: 1px solid #000;
      padding: 1rem;
      box-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    }

    @media (min-width: 768px) {
      .grid {
        display: grid;
        background: #2a1d0e;
        border: 2px solid #000;
      border-radius: 6px;
      color: #fff2cc;
      padding: 1rem;
      text-align: center;
      
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        position: relative;
      }
    }
    @media (max-width: 600px) {
      .vintage-text {
        font-size: 2rem;
      }

      .slogan {
        font-size: 1.1rem;
      }
    }
    footer {
      border-top: 2px solid #000;
      text-align: center;
      padding-top: 1rem;
      font-size: 0.9rem;
      font-style: italic;
    }

    .notice {
      margin-top: 2rem;
      border: 2px double #000;
      padding: 1rem;
      background-color: #f7f1dc;
      text-align: center;
      font-family: 'Georgia', serif;
      box-shadow: 4px 4px 0 rgba(0,0,0,0.4);
    }

    .notice h3 {
      margin-top: 0;
      font-size: 1.4rem;
      letter-spacing: 1px;
      text-transform: uppercase;
      text-decoration: underline;
    }

    .notice a {
      color: #000;
      text-decoration: underline;
      font-weight: bold;
    }

    /* Modal Design */
    .modal {
      position: fixed;
      top: 0; left: 0;
      width: 100%;
      height: 100%;
      display: none;
      z-index: 999;
    }

    .modal input { display: none; }

    .modal-bg {
      position: absolute;
      width: 100%;
      height: 100%;
      background: rgba(0,0,0,0.5);
      cursor: pointer;
    }

    .modal-content {
      position: relative;
      background: #fdf6e3;
      margin: 10% auto;
      padding: 2rem;
      width: 90%;
      max-width: 600px;
      border: 1px solid #000;
      box-shadow: 4px 4px 0 rgba(0,0,0,0.5);
      font-family: Georgia, serif;
      z-index: 1000;
    }

    .close {
      position: absolute;
      top: 0.5rem;
      right: 1rem;
      font-size: 1.5rem;
      cursor: pointer;
      font-weight: bold;
    }

    .modal-link {
      cursor: pointer;
      text-decoration: underline;
      color: inherit;
    }

    /* Sichtbarkeit steuern über :checked */
    #modal-impressum-toggle:checked ~ #modal-impressum-box,
    #modal-datenschutz-toggle:checked ~ #modal-datenschutz-box {
      display: block;
    }