.kachel {
    padding: 64px;
    padding-top: 32px;
    box-shadow: var(--mud-elevation-4);
    margin: 16px;
}

.kachel h3 {
    margin-bottom: 32px;
}

.fab {
    position: sticky;
    bottom: 2vw;
    margin-left: 101%;
    z-index: 10;
}

#Content ul {
    margin: revert;
    padding: revert;
    list-style: revert;
}

.occurrenceKachel {
    border: 1px solid #DA2323;
    display: flex;
    flex-direction: column;
    border-radius: 10px;
    width: 100%;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.occurrenceKachel:hover {
    transform: scale(0.99);
    cursor: pointer;
    border-color: #9B9B9B;
}

.occurrenceKachel .baustein {
    background-color: #FFFFFFE3;
    border-radius: 10px 0 12px 0;
    padding: 6px 10px 4px 8px;
    font-weight: 600;
    font-size: 20px;
    width: auto;
    position: absolute;
}

.occurrenceKachel .image {
    height: 240px;
    object-fit: cover;
}

.occurrenceKachel .eventinfo {
    display: flex;
    flex-direction: column;
    padding: 10px 16px 10px 16px;
    gap: 0;
    flex-grow: 1;
}

.occurrenceKachel .eventinfo .eventtyp {
    margin: 0 0 12px 0;
    font-size: 12px;
}

.occurrenceKachel .eventinfo .eventtitel {
    font-weight: 700;
    font-size: 20px;
    margin-top: 0;
}

.occurrenceKachel .eventinfo .eventkurz {
    margin: 8px 0;
    font-size: 16px;
}

.occurrenceKachel .eventinfo p {
    margin: 0;
}

.eventanmeldungContainer .occurrenceKachel .linkoverlay {
    display: flex;
}

.eventanmeldungContainer .occurrenceKachel .image {
    max-width: 500px;
    width: 40vw;
}

@media (max-width: 1024px) {
    .eventanmeldungContainer .occurrenceKachel .image {
        max-width: 350px;
    }
}

@media (max-width: 660px) {
    .eventanmeldungContainer .occurrenceKachel .linkoverlay {
        display: unset;
    }

    .eventanmeldungContainer .occurrenceKachel .image {
        max-width: unset;
        min-width: unset;
    }
}

