.pbc-widget {
    --bg-gradient: #F9F9F9;
    --accent-orange: linear-gradient(135deg, #ff9800, #f57c00);
    --shadow-light: 0 4px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    background: var(--bg-gradient);
    border-radius: 16px;
    text-align: center;
    font-family: system-ui, -apple-system, sans-serif;
    box-shadow: var(--shadow-light);
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.pbc-widget:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

/* BIG (Desktop Haupt) */
@media (min-width: 1024px) {
    .pbc-big {
        max-width: 450px;
        padding: 30px 25px;
        margin: 0 auto;
    }
}

/* MIDDLE (Tablet/Desktop) */
@media (min-width: 768px) {
    .pbc-middle {
        max-width: 380px;
        padding: 25px 20px;
        margin: 0 auto;
    }
}

/* SMALL (Mobile/alle) */
.pbc-small, .pbc-widget:not(.pbc-big):not(.pbc-middle) {
    max-width: 320px;
    padding: 18px 15px;
    margin: 0 auto 20px;
}

.pbc-image {
    margin: 0 0 18px 0;
}

.pbc-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.pbc-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin: 12px 0 20px;
    padding: 8px;
}

.tag {
    background: rgba(255, 152, 0, 0.15);
    color: #d35400;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 500;
    white-space: nowrap;
}

.pbc-big .tag {
    font-size: 13px;
    padding: 8px 14px;
}

.pbc-price {
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 0 6px;
}

.pbc-price ins {
    text-decoration: none;
}

.pbc-title {
    padding: 5px 16px;
}

.pbc-excerpt {
    color: #7f8c8d;
    font-size: clamp(12px, 3.5vw, 14px);
    line-height: 1.5;
    margin: 0 0 20px;
}

.pbc-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    font-size: clamp(13px, 3vw, 15px);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--e-global-color-4fded08);
    color: white;
    box-shadow: 0 4px 15px rgba(249, 124, 0, 0.4);
}

.btn-primary:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(249, 124, 0, 0.5);
}

.btn-outline {
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
}

.btn-outline:hover {
    background: #3498db;
    color: white;
}

/* Mobile Optimierungen */
@media (max-width: 480px) {
    .pbc-actions {
        flex-direction: column;
    }

    .pbc-tags {
        gap: 8px;
    }
}
