
/* downloads */

.pdf-box {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  
  .pdf-text {
    width: 60%;
    padding-right: 20px;
  }

  .pdf-valid {
    margin-top: 20px; /* Ändert den Abstand zwischen dem normalen Text und "Gültig vom ..." */
  }
  
  .pdf-image-container {
    width: 40%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Bild in der Mitte zentrieren */
  }
  
  .pdf-image {
    max-width: 100%;
    max-height: 362px;
    border: 1px solid #e0e0e0;
    padding: 12px;
    border-radius: 5px;
    transition: border-color 0.3s, box-shadow 0.3s;
  }
  
  .pdf-image:hover {
    border-color: var(--color-primary); /* self #007bff; */
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1);
  }
  
  .pdf-link {
    margin-top: 10px; /* Abstand unter "Gültig vom ..." erhöhen */
  }
  
  /* Media query für kleinere Bildschirme */
@media (max-width: 1020px) {
    .pdf-box {
      flex-direction: column;
      align-items: center;
    }
  
    .pdf-text {
      width: 100%;
    }
  
    .pdf-image-container {
      width: 100%;
      margin-top: 20px;
      display: flex;
      justify-content: center; /* Bild in der Mitte zentrieren */
    }
  
    .pdf-image {
      max-width: 256px;
      width: 100%; /* Bildbreite anpassen */
      max-height: 352px;
    }
  
    .pdf-link {
      text-align: center; /* Zentriert den normalen PDF-Link */
      margin-top: 10px;
    }
  }
  
  
  
  

  /* end */
  