.downloads_block {
  margin: 60px auto;
  position: relative;
  max-width: 750px;
  padding: 0 15px;
}

.single-post .downloads_block {
  padding: 0;
}

.download_area_headline {
  font-size: 24px;
  line-height: 30px;
}

.download_area_container {

}

.download_area_container.single_col {

}

.download_container {

}

.download_infoarea {
  display: grid;
  grid-template-columns: auto 1fr; /* Zwei Spalten: Bild und Inhalt */
  align-items: normal; /* Zentriert Bild und Text vertikal */
  gap: 10px; /* Abstand zwischen Bild und Text */
}

.download_icon {
  width: 50px; /* Bildgröße */
  height: 50px;
  background-image: url('ic_download.svg'); /* Bild-URL */
  background-size: contain; /* Skaliert proportional */
  background-repeat: no-repeat; /* Verhindert Wiederholung */
  background-position: center;
  margin-top: -5px;
}

.urllinking .download_icon {
  background-image: url('chevron-right.png');
  width: 11px;
  height: 30px;
  margin-top: -3px;
}

.download_content {
  display: flex;
  flex-direction: column; /* Titel und Info-Text untereinander */
  justify-content: center; /* Inhalt vertikal zentrieren */
  margin-bottom: 30px;
}

.download_title {
  text-decoration: none;
  color: black;
  font-family: "Montserrat-SemiBold";
  font-size: 20px;
  line-height: 24px;
}

.download_title:hover {
  color: inherit;
  text-decoration: underline;
}

.download_infotext {
  font-size: 14px;
  font-family: 'Cambria Regular';
  line-height: 16px;
  margin-top: 5px;
  color: #686868;
}

.download_infoarea:hover .download_infotext {
  text-decoration: none;
}

@media (max-width:850px) {
  .download_area_container {

  }
}

@media (max-width:500px) {
  .download_container {

  }

}
