/**
 * Brand Widget za Elementor - Stilovi
 */

.bwe-brand-widget {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background-color: #ffffff;
    border-radius: 8px;
    box-sizing: border-box;
}

.bwe-brand-image-wrapper {
    width: 60px;
    height: 60px;
    min-width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f5f5f5;
    border-radius: 6px;
    overflow: hidden;
}

.bwe-brand-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bwe-placeholder-text {
    font-size: 12px;
    color: #999999;
    text-align: center;
}

.bwe-brand-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.bwe-brand-name {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    line-height: 1.3;
}

.bwe-brand-label {
    font-size: 13px;
    font-weight: 400;
    color: #888888;
    line-height: 1.3;
}

/* Responsive skrivanje */
.bwe-brand-widget.bwe-desktop-only {
    display: flex;
}
