/* Allgemeine Kartenstile */
.custom-card {
    text-decoration: none;
    color: inherit;
    display: block;
    border: 1px solid #ccc;
    border-radius: 8px;
    background-color: #fff;
    margin: 20px auto;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.custom-card-container {
    display: flex;
    align-items: center;
    color: #333;
    flex-wrap: nowrap;
}

/* Bildstil */
.custom-card-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    flex-shrink: 0;
}

/* Inhaltstil */
.custom-card-content {
    padding: 16px;
    flex-grow: 1;
}

.custom-card-title {
    margin: 0;
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.custom-card-excerpt {
    margin: 8px 0 0;
    font-size: 14px;
    color: #666;
}

/* Mobile Ansicht */
@media (max-width: 768px) {
    .custom-card-container {
        flex-direction: column;
    }

    .custom-card-image {
        width: 100%;
        height: auto;
        border-radius: 8px 8px 0 0;
    }

    .custom-card-content {
        padding: 16px;
    }
}
