/* Fix author masonry item actions position - move to right side */
.author-masonry-item__actions {
    position: absolute !important;
    top: 12px !important;
    right: 12px !important;
    left: auto !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
    z-index: 10 !important;
}

.author-masonry-item__actions .action-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.author-masonry-item__actions .action-btn:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.author-masonry-item__actions .action-btn i {
    font-size: 18px;
    color: #333;
}

.author-masonry-item__actions .action-btn.likeBtn.active {
    background: #ff4757;
}

.author-masonry-item__actions .action-btn.likeBtn.active i {
    color: #fff;
}

/* Ensure video badge stays on left */
.author-masonry-item .product__card__asset-type {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 9;
}

/* Asset menu dropdown positioning */
.author-masonry-item__actions .asset-menu-wrapper {
    position: relative;
}

.author-masonry-item__actions .asset-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    margin-top: 4px;
    background: white;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    min-width: 200px;
    padding: 8px 0;
    z-index: 1000;
}

.author-masonry-item__actions .asset-dropdown-menu .dropdown-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 16px;
    color: #333;
    text-decoration: none;
    transition: background 0.2s ease;
}

.author-masonry-item__actions .asset-dropdown-menu .dropdown-item:hover {
    background: #f5f5f5;
}

.author-masonry-item__actions .asset-dropdown-menu .dropdown-item i {
    font-size: 16px;
}
