.yb_simple_card {
    display: flex;
    flex-direction: column;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    background: #fff;
}

.yb_simple_card:hover {
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
}

.yb_simple_card__image {
    flex: 1 1 50%;
    background-size: cover;
    background-position: center;
    min-height: 180px;
}

/* Neue Tags-Sektion */
.yb_simple_card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 10px 15px;
    background: #f9f9f9;
    border-bottom: 1px solid #eee;
}

.yb_simple_card__tag {
    display: flex;
    align-items: center;
    background: #dce7dc;
    padding: 4px 8px;
    border-radius: 16px;
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 500;
    transition: background 0.3s ease;
}

.yb_simple_card__tag:hover {
    background: #c6d6c5;
}

.yb_simple_card__tag-icon {
    width: 16px;
    height: 16px;
    margin-right: 6px;
}

.yb_simple_card__tag-text {
    white-space: nowrap;
}

.yb_simple_card__content {
    flex: 1 1 50%;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.yb_simple_card__title {
    font-size: 1.5rem;
    margin: 0 0 0.75rem;
    font-weight: 600;
}

.yb_simple_card__description {
    font-size: 1rem;
    margin-bottom: 1rem;
    color: #666;
    flex-grow: 1;
}

.yb_simple_card__button {
    display: inline-block;
    background: var(--blue-gradient);
    color: #fff;
    padding: 0.75rem 1.25rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color color 0.3s ease;
}

.yb_simple_card__button:hover {
    background: black;
    color: white;
}
