/* ========== Unterstreichung in verlinkten Überschriften entfernen ========== */
h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  text-decoration: none !important;
}

/* ========== Stil für Blog-Überschriften (kleiner & hellere Farbe) ========== */
.com-content-category-blog .page-header h2 a {
  font-size: clamp(1.2rem, 2vw, 1.5rem); /* etwas kleiner */
  font-weight: 600;
  line-height: 1.3;
  color: #0d7971; /* Grundfarbe: Grün */
  transition: color 0.3s ease;
}

/* ========== Hover-Farbe (Sekundärfarbe) ========== */
.com-content-category-blog .page-header h2 a:hover {
  color: #d98400; /* warmes Orange als Hover-Farbe */
  text-decoration: none;
}
/* ========== Hintergrundfarbe für den Header anpassen ========== */
.container-header {
	background-image: none;
	background-color: #1A4645;
