
.angebote-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
}

.angebote-slide {
    min-width: 300px;
    border: 1px solid #ddd;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.angebote-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.angebote-content {
    padding: 10px;
}

.angebote-content h3 {
    font-size: 16px;
    margin: 5px 0;
}

.angebote-content p {
    font-size: 13px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.angebote-button {
    display: inline-block;
    margin-top: 10px;
    padding: 6px 12px;
    background: #1874CD;
    color: #fff;
    text-decoration: none;
    border-radius: 5px;
    font-size: 13px;
}
