.ti-image-block-wrapper {
    position: relative;
}

.ti-image-block-wrapper .ti-ld-primary-img {
    margin: 0;
    position: relative;
}

.ti-image-block-wrapper .ti-img {
    max-width: 100%;
    height: auto;
    display: block;
}

.ti-image-controls {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    gap: 8px;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 10;
}

.ti-image-block-wrapper:hover .ti-image-controls {
    opacity: 1;
}

.ti-image-controls .button {
    font-size: 12px;
    padding: 4px 8px;
    min-height: auto;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border: none;
    border-radius: 3px;
}

.ti-image-controls .button:hover {
    background: rgba(0, 0, 0, 0.9);
}

.ti-image-controls .button-link-delete {
    background: rgba(220, 53, 69, 0.8);
}

.ti-image-controls .button-link-delete:hover {
    background: rgba(220, 53, 69, 1);
}
