/*
 Theme Name:   Divi Child
 Theme URI:    https://www.elegantthemes.com/gallery/divi/
 Description:  Child-Theme für Divi – Optimierungen für Performance, Sicherheit und Bildhandling
 Author:       Pfalz-Art
 Author URI:   https://www.Pfalz-Art.de
 Template:     Divi
 Version:      1.0.0
*/

/* Eigene CSS-Anpassungen hier einfügen */

/* Beispiel: Responsive Bilder */
.custom-image {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/9;
}

/* Beispiel: Buttons */
.custom-button {
  background-color: #0073e6;
  color: #fff;
  padding: 12px 24px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.custom-button:hover {
  background-color: #005bb5;
}