/* Stile für die DFM-Seite */
.dfm-articles-section {
  padding: 60px 0;
  background-color: #f9f9f9;
  background-image: url(../images/theme/wellendesign-neutral.png);
  background-repeat: no-repeat;
  background-size: cover;
}


.dfm-articles-section .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.dfm-articles-container {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.dfm-article-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: calc(50% - 10px);
  background-color: #f6f4e6;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.dfm-article-item img {
  border-radius: 10px;
  margin-bottom: 20px;
}

.dfm-article-text {
  text-align: center;
}

.dfm-article-text h3 {
  margin-bottom: 10px;
}

.dfm-article-text p {
  line-height: 1.6;
}

@media (max-width: 768px) {
  .dfm-articles-container {
    flex-direction: column;
  }

  .dfm-article-item {
    width: 100%;
  }
}
