
    .sl-heading-text {
      max-width:53%;
    }
    @media (max-width: 1024px) {
      /*.sl-heading-text {
        max-width:90%;
      }*/
    }

/* Grid-Container für mehrere Kacheln */
.cdContainer {
    display: flex;
    flex-direction: column;
    align-items: center; /* Kacheln bleiben zentriert */
    gap: 20px; /* Abstand zwischen den Kacheln */
    padding: 40px 10%;
}

/* Kachel-Design */
.cdItem {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    align-items: center;
    text-align: left;
    padding: 40px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    max-width: 1200px; /* Große Kacheln */
    width: 100%;
    gap: 30px;
    margin: 20px auto; /* Abstand zwischen den Kacheln */
}

/* Bild links */
.cdBild {
    flex: 0 0 280px; /* Fixe Breite für das Bild */
}

.cdBild img {
    max-width: 100%;
    height: auto;
    border-radius: 15px;
}

/* Rechte Seite: Headline, Text & Button untereinander */
.cdContent {
    flex: 1;
    display: flex;
    flex-direction: column; /* Elemente untereinander anordnen */
    justify-content: flex-start;
}

/* Headline */
.cdHeadline {
    margin-bottom: 15px;
}

.cdHeadline h1 {
    font-size: 2.5rem;
    color: #333;
    margin: 0;
}

/* Beschreibungstext */
.cdText {
    margin-bottom: 20px;
}

.cdText p {
    font-size: 1.8rem;
    color: #555;
    line-height: 1.8;
}

/* Button */
.cdButton {
    margin-top: auto; /* Stellt sicher, dass der Button nicht zu nah am Text ist */
}

.cdLink {
    /*display: inline-block;
    background: #0078d4;
    color: #fff;
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background 0.3s ease;
    text-align: center;*/
    pointer-events: auto;
  z-index: 10;
  position: relative;
}

.cdLink:hover {
    background: #005a9e;
}

/* Mobile Optimierung
@media (max-width: 1024px) {
    .cdContainer {
        padding: 40px 5%;
        gap: 40px;
    }

    .cdItem {
        flex-direction: column;
        text-align: center;
        padding: 30px;
        max-width: 90%;
    }

    .cdBild {
        flex: none;
        width: 100%;
    }

    .cdBild img {
        width: 100%;
        max-width: 400px;
        margin: auto;
    }

    .cdContent {
        text-align: center;
        align-items: center;
    }

    .cdHeadline h1 {
        font-size: 2rem;
    }

    .cdText p {
        font-size: 1.1rem;
    }

    .cdLink {
        padding: 12px 24px;
        font-size: 1.1rem;
    }
}*/
 
/* Extra kleine Bildschirme 
@media (max-width: 480px) {
    .cdItem {
        padding: 20px;
        max-width: 100%;
    }

    .cdHeadline h1 {
        font-size: 1.8rem;
    }

    .cdText p {
        font-size: 1rem;
    }

    .cdLink {
        padding: 10px 20px;
        font-size: 1rem;
    }
}*/
