.ta-category-group {
    margin-bottom: 20px;
}

.ta-offer-title {
    cursor: pointer;
    display: block;
    font-weight: bold;
    padding: 10px;
    background: #eee;
    margin: 0;
    text-decoration: none;
    color: #333;

    a:any-link{
        color: #eeeeee;
    }
    .link-icon{
        vertical-align:middle;
    }
}

/* Basiszustand: zugeklappt */
.ta-offer-content {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    /* Fade-Out in 0.3s, Collapse in 0.4s */
    transition:
        opacity 0.3s ease-out,
        max-height 0.4s ease;
    display: flex;
    margin-bottom: 5px;
    border: 1px black solid;
    border-top: 0;
    padding-inline: 10px;
}

/* Offener Zustand: aufklappen */
.ta-offer.open .ta-offer-content {
    max-height: 800px;
    /* hoch genug, um alles anzuzeigen */
    opacity: 1;
    /* Fade-In in 1s, Expand in 1s */
    transition:
        opacity 0.7s ease-in,
        max-height 1s ease;
    
}

a:any-link{
    color: black;
}