[data-sdc-component="pr_builder:single-image-block"] {
    img {
        display: block;
        max-width: 100%;
        height: auto;
    }
    
    > div > div {
        line-height: 0;
        font-size: 0;
    }
    
    .image-placeholder {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 200px;
        background: #f5f5f5;
        border: 2px dashed #ccc;
        border-radius: 8px;
        color: #666;
        font-size: 16px;
        line-height: 1.4;
        padding: 20px;
        text-align: center;
    }
    
    .single-image-link {
        display: inline-block;
        line-height: 0;
        
        &:hover img {
            opacity: 0.9;
            transition: opacity 0.2s ease;
        }
    }
}

.bordered {
    border-radius: 20px;
    border: 10px solid #f5f3f2;
    overflow: hidden;
    background: #f5f3f2;
    display: inline-block;
    width: fit-content;
    max-width: 100%;
    line-height: 0;
    
    img {
        display: block;
        max-width: 100%;
        height: auto;
    }
    
    > div {
        display: block;
        line-height: 0;
    }
}