.termin-card {
    display: block;
    text-decoration: none;
    border-radius: 1rem;
    background-color: #514B4A;
    padding: 2.5rem 1.5rem;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    border-top: 4px solid rgb(189, 62, 10);
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.termin-card:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}

.termin-card * {
    color: white;
}

.termin-card h2 {
    font-family: syne, sans-serif;
    font-weight: 700;
}

.termin-card .termin-count {
    color: rgb(240, 160, 130);
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

.termin-card .termin-arrow {
    margin-top: 1rem;
    font-size: 1.4rem;
    color: rgb(189, 62, 10);
}

.termin-back {
    display: inline-block;
    margin-bottom: 1.5rem;
}

.termin-event {
    text-align: left;
    border-radius: 0.75rem;
    background-color: white;
    border-left: 4px solid rgb(189, 62, 10);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.termin-event .termin-date {
    font-family: syne, sans-serif;
    font-weight: 600;
    color: rgb(189, 62, 10);
}

.termin-content > *:last-child {
    margin-bottom: 0;
}
