/* Hersteller Info Widget Styles */
.hersteller-info-widget {
  background: #f8f9fa;
  border: 1px solid #e9ecef;
  border-radius: 0;
  padding: 20px;
  margin: 20px 0;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hersteller-title {
  color: #333;
  font-size: 24px;
  font-weight: bold;
  margin: 0 0 15px 0;
  padding-bottom: 10px;
  border-bottom: 2px solid #6a657e;
}

.hersteller-content {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  flex-wrap: wrap;
}

.hersteller-logo {
  flex: 0 0 auto;
  min-width: 120px;
}

.hersteller-logo-img {
  max-width: 150px;
  max-height: 150px;
  width: auto;
  height: auto;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.hersteller-description {
  flex: 1;
  min-width: 200px;
}

.hersteller-description p {
  margin: 0;
  line-height: 1.6;
  color: #555;
  font-size: 16px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hersteller-content {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hersteller-logo {
    margin-bottom: 15px;
  }

  .hersteller-description {
    text-align: left;
  }

  .hersteller-title {
    text-align: center;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .hersteller-info-widget {
    padding: 15px;
    margin: 15px 0;
  }

  .hersteller-title {
    font-size: 18px;
  }

  .hersteller-logo-img {
    max-width: 120px;
    max-height: 120px;
  }

  .hersteller-description p {
    font-size: 14px;
  }
}

/* Widget-spezifische Styles für WordPress Widget-Bereiche */
.widget .hersteller-info-widget {
  margin: 0;
  border: none;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.widget .hersteller-title {
  font-size: 20px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 8px;
}

.widget .hersteller-content {
  gap: 15px;
}

.widget .hersteller-logo-img {
  max-width: 100px;
  max-height: 100px;
}

.widget .hersteller-description p {
  font-size: 14px;
}
